Question : Weblogic 9.2 admin console port

How can I tell which port the admin console is at if I have shell access to weblogic server. I tried looking in admin server's config xml but can't seem to locate it.

Answer : Weblogic 9.2 admin console port

Don't mean to undermine turexy-exp.  Again, if it's not default settings, you can query the java process that weblogic is running by running

ps -ef | grep java

You can find which port Weblogic instance is running on by examining it with pfiles.

pfiles | egrep -i "sock|port"

If you are running linux, you can get pfiles at http://sourceware.org/systemtap/wiki/WSPfiles

Once you found the port, check out which interface it's binding to via

netstat -an | grep

Then, like turexy-exp said, you can access it via http://ip:port/console

Random Solutions  
 
programming4us programming4us