Thursday 20 October 2011

Identifying LISTEN Ports for Hyperion Services


Windows OS:
On the machine where the service is running:
1. Right-click on the Windows Task bar and select “Task Manager.”
2. In Task manager, select the “Processes” tab
3. Select view -> Select Columns
4. select "PID(Process Identifier)" to display the process identifier associated with the running server.
5. selct ok
6. In the "Process" tab, locate the process associated with the service for which you wish to idenfity the port.
7. Note the "PID" associated with the process.
8. slect start -> Run and type cmd
9. netstat -na|findstr PID

UNIX OS

ps –ef | grep processName (where processName is a text string associated with the process )

Once you have identified the Process ID, on most version of Linux/UNIX, you can use
lsof | grep ProcessID
to identify the port associated with that process.

No comments:

Post a Comment