反馈已提交
网络繁忙
For a project deployed in a container, if there are residual threads in the system due to improper user operation and other reasons, when the project starts, after detecting residual threads, it will prompt the super-pipe in the form of a platform message. The content of the notification is as follows:
Standalone
It is detected that process No. XXX may have process residues. In order not to affect the normal operation of the current application, it is recommended to check and confirm in time
cluster
It is detected that the XXX process under the XXXXX (node address) node may have process residues. In order not to affect the normal operation of the current application, it is recommended to check and confirm in time
When restarting a project, you need to completely close the process related to the project before restarting.
The user wants to close the project.
This article provides methods for shutting down and restarting projects in Tomcat, WebLogic, and WebSphere in Linux systems.
Example: The project is deployed under /home/wendy/tomcat-linux.
1) Execute the following command to view the project process. As shown below:
ps -ef|grep tomcat-linux
2) Kill the engineering process, and check whether there are any remaining engineering processes.
All processes related to this project need to be killed. As shown below:
kill -9 31126
1) Enter the project bin directory and restart the project. As shown below:
cd /home/wendy/tomcat-linux/bin./startup.sh
2) View the real-time log. If the restart time is displayed in the real-time log, it means that the restart is successful. As shown below:
cd /home/wendy/tomcat-linux/logstail -f catalina.out
1) Check the process ID, as shown below:
ps -ef|grep weblogic
2) Kill all processes related to this project, and check whether there are any remaining project processes.
As shown below:
kill -9 113351kill -9 113352ps -ef|grep weblogic
Find the directory where startWebLogic.sh is located. The example directory in this article is: /web/weblogic/Oracle/Middleware/user_projects/domains, enter this directory to restart the project.
cd /web/weblogic/Oracle/Middleware/user_projects/domainsnohup ./startWebLogic.sh &ps -ef|grep weblogic
1) View the process number, as shown in the following figure:
ps -ef|grep WebSphere
Find the path where startServer.sh, the example directory of this article is: /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin , enter the directory and restart the project.
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin./startServer.sh server1ps -ef|grep websphere
Note: server1 is the application server name, which can be viewed in the console.
售前咨询电话
400-811-8890转1
在线技术支持
在线QQ:800049425
热线电话:400-811-8890转2
总裁办24H投诉
热线电话:173-1278-1526
文 档反 馈
鼠标选中内容,快速反馈问题
鼠标选中存在疑惑的内容,即可快速反馈问题,我们将会跟进处理。
不再提示
10s后关闭