Technical>>Others

How to start WebLogic after installation?


Question: How to start WebLogic after installation (you can open the page http://<serverip>:7001/console to check it is working)?

 

Answer: Follow the procedure below; run the commands as user bea.

  1. At the command prompt:

    $ cd ~/bea/wlserver_xx/server/bin 

    Then run the scripts setWLSEnv.sh and startWLS.sh

    $ sh setWLSEnv.sh 

    $ sh startWLS.sh

    Note: if the server does not start, you can try the following method:

    WLS_USER=admin WLS_PW=12345678 ./startWLS.sh

    During the installation, choose “y” to set to the default configuration.

  2. Exit from startWLS.sh, if you can not exit it using Ctrl+C, then press Ctrl+Z, then run command

    kill -9 %1

  3. Start WebLogic by running script startWebLogic.sh

    $ ./startWebLogic.sh

 

Tags