This is cool, no more emctl start dbconsole
I went snooping around for emctl and did not find one under 12c
google and found this gem: http://www.oracle.com/technetwork/database/manageability/emx-intro-1965965.html#A1 This is probably all you need, but I needed more
When I followed the steps, my browsers got security errors. Interestingly I only had a port come up with https, not http:
Secure Connection Failed
The connection to sodax6-1.oda.aus.osc:5500 was interrupted while the page was loading.
The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
Please contact the website owners to inform them of this problem.
I checked the ports that were open and found that http was not.
SQL> select dbms_xdb.getHttpPort() from dual;
GETHTTPPORT
-----------
0
SQL> select dbms_xdb_config.getHttpsPort() from dual;
GETHTTPSPORT
------------
5500
So I ran the below:
exec DBMS_XDB_CONFIG.SETHTTPPORT(5500);
Then was able to login
2 comments:
didn't you get a port conflict error ?
I did the port conflict error.
Post a Comment