Linux下Websphere与Tomcat的启动与停止

websphere启动与停止
1. 首先找到安装WebSphere的目录,然后进入到webapp的bin目录
   cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin
2. 停止WebSphere 
   ./stopServer.sh server1
3. 启动WebSphere 
   ./startServer.sh server1


tomcat启动与停止
1. 切换到指定目录
  cd +目录
2-1. 查看目录下是否有进程在运行
  ps -ef |grep +目录
2-2. 若有进程在运行,kill杀死
  kill -9 pid(pid为响应进程号)
3. 停止tomcat
  ./startup.sh
4. 启动tomcat
  ./shutdown.sh

你可能感兴趣的:(Linux下Websphere与Tomcat的启动与停止)