Linux下WebLogic的启动、停止和后台运行的方法
进入目录:/home/weblogic/user_projects/domains/base_domain/bin
查看目录下的命令,如图:
启动WebLogic:
1 |
[root@dev bin]# ./startWebLogic.sh |
停止WebLogic:
1 |
[root@dev bin]# ./stopWebLogic.sh |
上面这两条命令运行后不会在后台运行,因此不能关闭该终端窗口。一般我们需要让WebLogic在后台运行,可以通过以下两种方法解决这个问题。
方法一、执行以下命令:
1 |
[root@dev bin]# nohup ./startWebLogic.sh & |
方法二、分别执行以下命令:
1 |
[root@dev bin]# ./startWebLogic.sh |
然后可以与用户进行交互,比如输入用户名密码
接着按下"Ctrl + z"
输入"bg"后程序将进入后台运行。
使用上面两种方法让WebLogic在后台运行,如果想停止运行,仍然可以使用./stopWebLogic.sh命令来停止。