Tuesday, April 14, 2020

How to find Oracle EBS Weblogic Server Admin Port and URL:




 How to find Oracle EBS Weblogic Server Admin Port and URL:


There are two way to get this:

1.
grep -i s_wls_adminport $CONTEXT_FILE

Check for the value 'WLS Admin Server Port'.

2.
grep -i AdminServer $CONTEXT_FILE

Check for 'listen-port' value of the 'AdminServer'

Weblogic console URL
http://<server name>. <domain name> : <weblogic Admin Port>/console
Ex: http://oracle.test1.com:7001/console


Command to get Console url:

echo "http://"$(cat $CONTEXT_FILE | grep s_webhost | cut -d '>' -f2 | cut -d '<' -f1)"."$(cat $CONTEXT_FILE | grep s_wls_admin_domain | cut -d '>' -f2 | cut -d '<' -f1)":"$(cat $CONTEXT_FILE | grep s_wls_adminport | cut -d '>' -f2 | cut -d '<' -f1)"/console"

No comments:

Post a Comment

[ERROR]: The value of s_patch_service_name is not set correctly in atleast one of the context files.

[ERROR]: The value of s_patch_service_name is not set correctly in atleast one of the context files. I got the issue below wh...