WEBLOGIC SERVER ADMIN PORT AND URL
- Check for the value 'WLS Admin Server Port'.
grep -i s_wls_adminport $CONTEXTFILE
- Check for 'listen-port' value of the 'AdminServer'
grep -i AdminServer $CONTEXTFILE
- Command for 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