Hi
I have installed java version "1.8.0_151"
I have installed Oracle 12c release 2 in Windows 10 PRO.
Then I installed WebLogic from fmw_12.2.1.0.0_infrastructure_Disk1_1of1 which was successfully installed.
Then I create repository using rcu.bat (which was also successful - Image attached)

Then I launche config.cmd but here I am not able to connect to database using given connection string. I am getting below error.
- Error in connecting to the Database: 'Oracle database at host localhost port 1521 service name orclpdb'. Error: 'ORA-01033: ORACLE initialization or shutdown in progress ' - Unable to connect to the Database with the given connect string and credentials.
- Make sure the database is up and running and connect string, user name and password are correct.

Few Things that I tried:
1. Added below code to tnsnames.ora
ORCLPDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
(CONNECT\_DATA =
(SERVER = DEDICATED)
(SERVICE\_NAME = orclpdb)
)
)
2. Added below code to sqlnet.ora
SQLNET.ALLOWED_LOGON_VERSION_CLIENT = 8
SQLNET.ALLOWED_LOGON_VERSION_SERVER = 8
3. Execute below using sys
ALTER PLUGGABLE DATABASE OPEN ALL;
In SQL Developer I am using orcl service to login, there i am able to connect.

Anyone knows how can I resolve this issue, and get OBIEE 12c installed for work.