How to find out AdminServer ‘s URL? How to reset password ? How to find out admin user and password?
How to find out AdminServer ‘s URL?
basiclly track the start log for url and port we can find it
How to find out admin user and password?
boot.properties
get the encrypted password and username then try crypt itHow to reset username and password ?
${DOMAIN_HOME}/security/DefaultAuthenticatorInit.ldift
${DOMAIN_HOME}/server/AdminServer/data
new username
and new password
into boot.properties
restart
weblogic server and reloginHow to find out domain home? Oracle_Home?
How to find out domain home?
check ${Oracle_Home}/domain-registry.xml
and this file will show you
<?xml version="1.0" encoding="UTF-8"?>
<domain-registry xmlns="http://xmlns.oracle.com/weblogic/domain-registry">
<domain location="/Users/bohu/Oracle/Middleware/Oracle_Home/domains/lab"/>
<domain location="/Users/bohu/Oracle/Middleware/Oracle_Home/domains/lab2"/>
</domain-registry>%
How to Find Oracle_Home?
use ps -ef | grep wlserver
check and wlserver
upper directory is what we are looking for
How to stop/start WebLogic?
# Start WebLogic
cd ${DOMAIN_HOME} &&
nohup ./startWebLogic.sh 2>&1 &
./startWebLogic.sh 2>&1 | tee start.log &
# How you start basiclly depend on what do you want
# Stop WebLogic
# Make Sure All Applications Are Down , Be Careful With This
cd. ${DOMAIN_HOME}/bin && ./stopWebLogic.sh
How to create a new managed server?
LogicName
and defined listen port
./startManagedWebLogic.sh <Managed Server Logicname> <AdminServer URL>
Basic use of WLST(How to invoke wlst? How to run some basic commands?)
Some Useful links In Our Support
原文:https://www.cnblogs.com/petersonx/p/13964499.html