This Blog give the answer of following question which i faced after installing Oracle 12c , Oracle 19c
Question 1. How to open enterprise manger like oracle 11g
Question 2. Why emctl not found in $ORACLE_HOME/bin directory
Question 3. How to setup web console / enterprise manager express in Oracle 12c
Question 4. How to install enterprise manager separately in Oracle 12c
Step by Step i give the answer of these above questions. After installing oracle 12c i faced these issue.
I hope most of you have either already noticed or going to be notice that enterprise manager controller emctl command has been removed from Oracle 12c / Oracle 19c. This is because from Oracle 12c (cloud) Enterprise Manager come in separate bundle.
So After completing setup of Oracle 12c / Oracle 19c , when i tried to run emctl command it show the following error
[oracle@lap ~]$ emctl bash: emctl: command not found... [oracle@lap ~]$ find /u01 -type f -name emctl [oracle@lap ~]$So after little bit research i found the reason that emctl is not shipped with Database package. But we can run express edition of enterprise manager. which have limited functionality basically you can view the report.
SQL> select dbms_xdb_config.gethttpport from dual; GETHTTPPORT ----------- 0
SQL> select dbms_xdb_config.gethttpsport from dual; GETHTTPSPORT ------------ 0
SQL> exec dbms_xdb_config.setHTTPsPort (5500); PL/SQL procedure successfully completed. SQL> exec dbms_xdb_config.setHTTPPort(5511); PL/SQL procedure successfully completed.Run the first 2 queries again and check for the required output.
SQL> select dbms_xdb_config.gethttpport from dual; GETHTTPPORT ----------- 5511 SQL> select dbms_xdb_config.gethttpsport from dual; GETHTTPSPORT ------------ 5500This show my enterprise manager express has been configured at my system. To open web console we need to use
No comments:
Post a Comment