Site icon FahmidasClassroom

Run Oracle 12c Home Page from the browser

Some settings need to configure to run oracle 12c home page from the browser. After completing the installation of oracle 12c, do the followings tasks from SQL plus to run oracle home page from the browser. Before starting this tutorial you have to install oracle 12c. The installation steps of oracle 12c is shown in the following tutorial link.

How to install Oracle 12c on Windows

Steps:

1.Open command prompt and type the following command.

sqlplus /nolog

2. Connect as system user by executing the following command. Run the command with empty password.

connect system as sysdba

3. Run the following command to run http protocol with the port 8080.

exec dbms_xdb_config.sethttpport(8080);

4.  Run the following command to set the password for the username, system.

alter user system identified by "123456" account unlock;

6. Open any browser and go to the following url to run oracle Home page.

http://localhost:8080/em

The steps are shown in the following video.

Exit mobile version