Ports used in OBIEE
Just a couple of weeks ago I ran into a situation at a customer-site. They have Hyperion Financial Management (HFM) already installed, but wanted to use both the softwares separately, but on the same server. Therefore I had to change some of the ports OBIEE normally uses.
For this I spent a little time with collecting all the ports OBIEE uses. Most of the ports I found out by doing the simple command netstat -a -b -v (you can simply pipe them into a file with netstat -a -b -v > usedports.txt in a dos-box) and by checking pretty much all of the configuration files. With the options -b -v netstat determines which is PID is the originator of the port usage.
I thought it could be of interest for you, so here they are:
| Port | used for | found |
| 5555 | Oracle IIOP-server port (Internet Inter-ORB Protocol) | internal-settings.xml |
| 5556 | Oracle IIOP-server SSL port | internal-settings.xml |
| 5557 | Oracle IIOP-server Client-Server SSL port | internal-settings.xml |
| 7000 | Discovery port for coordinator of Java cache | javacache.xm |
| 9127 | JMS Server port | jms.xml |
| 9700 | Monitor Controller port for Intra Cluster Communication with Cluster Controllers | NQClusterConfig.INI |
| 9701 | Monitor Server port for Intra Cluster Communication with clustered Analytics Server | NQClusterConfig.INI |
| 9703 | - Remote procedure call port of Oracle BI Server - Outfacing port used for ODBC connections | NQSConfig.ini
NQClusterConfig.ini |
| 9704 | standard port for OC4J | instanceconfig.xml |
| 9704 | - used for Web Browser access, in Catalog manager etc. | default-web-site.xml |
| 9705 | standard port for BI Server scheduler | instanceconfig.xml |
| 9706 | Client controller part Clustering | NQClusterConfig.ini |
| 9710 | port for presentation services and ISAPI | isapiconfig.xml |
| 9810 | Java Host port | instanceconfig.xml |
| 23791 | Remote Method Invoker (RMI) port | rmi.xml |
| 23943 | Remote Method Invoker (RMI) SSL port | rmi.xml |
Hope, this helps some of you when wondering why that port is used and you cannot remember of which software. If I forgot something just let me know and I will add it.
So long,
Andreas