The WebLogic Management Server and the managed server are started, closed, and occasionally used, but not commonly used, resulting in the need to forget, and then re-check help.
Therefore, to this record, easy to access, implementation.
First, the WebLogic startup and shutdown scripts are all in the Bin folder of the domain directory, so CD to that directory first
CD $WEBLOGIC _home/user_projects/domains/$DOMAIN _name/bin
Then execute the following script as needed:
Management Server Start-up
./startweblogic.sh can
But leaving command-line mode is off, so you need nohup mode
You can also output the log to Xxx.log
Nohup./startweblogic.sh >./xxx.log &
Shutdown of the Management Server
./stopweblogic.sh
Startup of Managed Servers
./startmanagedweblogic.sh Managedserver1 http://xxx.xxx.xxx.xxx:xxxx, where "http://xxx.xxx.xxx.xxx:xxxx" is the console address
But leaving command-line mode is off, so you need nohup mode
You can also output the log to Xxx.log
Nohup./startmanagedweblogic.sh managedserver1 http://xxx.xxx.xxx.xxx:xxxx >/xxx.log &
Shutdown of the managed server
./stopmanagedweblogic.sh managedserver1 t3://xxx.xxx.xxx.xxx:xxxx username password