I've started Websphere on my local box and I can't remember what port the admin app should be on. Any ideas?
Asked
Active
Viewed 1.7k times
3 Answers
7
There are several files (two of them look like reliable sources) in your WAS-profile that you can check (I used the paths from my installation, which uses mostly the standard settings):
- {WAS-Profile-Path}\logs\AboutThisProfile.txt
- {WAS-Profile-Path}\config\cells{cellname}\nodes{cellManagername}\serverindex.xml And look for WC_adminhost_secure or WC_adminhost.
The first one is easier since it is the smaller file. However, the second one is the actual configuration file. If you can't find the files. Search for a file that contains WC_adminhost or WC_adminhost_secure.
Shashi
- 3
- 2
Peter Schuetze
- 1,231
- 10
- 17
-
searching `serverindex.xml` for `WC_adminhost` showed the port I needed. – bobbyrne01 Jul 22 '14 at 15:36
4
Its usually 9060 for http and 9043 for https.
Stian Lund
- 180
- 5
-
2Be careful if you use RAD or RSA. Both install more than one server, so the ports may differ. – Peter Schuetze Jan 18 '10 at 15:42
1
Use netstat
to get a list of the open ports; netstat -ltnp
will give you listening ports with the process that has them open; it should be obvious where it is from there.
womble
- 95,029
- 29
- 173
- 228