Oracle 12c unable to access port 5500 solve problem

In this tutorial, How to solve the problem “Oracle 12c unable to access port 5500”. Oracle the essential for DevOps Roles.

Access the Oracles database with permission privileges

$ sqlplus / as sysdba

Checking port 5500 from user sysdba oracle

SQL> select dbms_xdb_config.gethttpsport from dual;

The terminal output as below

GETHTTPSPORT
------------
5500

SQL>

Execute command “DBMS_XDB_CONFIG.SETHTTPSPORT(5500)

SQL> exec DBMS_XDB_CONFIG.SETHTTPSPORT(5500);

The terminal output as below

PL/SQL procedure successfully completed.

SQL>

Try to start the listener service using lsnrctl from the command line

[oracle@DBOracle ~]$ lsnrctl start LISTENER

To check port 5500 listening in Linux

$ netstat -nplt | grep 5500

Now, access the Oracle database web-based. Open your web browser https://192.168.1.114:5500/em/

Conclusion

Thought the article, Oracle 12c unable to access port 5500 solve the problem as above. I hope will this your helpful. Thank you for reading the DevopsRoles page!

About HuuPV

My name is Huu. I love technology and especially Devops Skill such as Docker, vagrant, git so forth. I likes open-sources. so I created DevopsRoles.com site to share the knowledge that I have learned. My Job: IT system administrator. Hobbies: summoners war game, gossip.
View all posts by HuuPV →

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.