Deployment of the Action Run Shell Commands Times Out
Symptoms
When the shell command java -jar jenkins.war --httpPort=8088 is deployed, the progress is stuck in deploying state until timeout occurs.
Cause Analysis
The host waits for the deployment result after a shell command is deployed. If the command is executed continuously, the deployment will time out. In this case, a message is displayed indicating that the deployment fails due to timeout.
Solution
Run the shell command that is continuously executed in the background.
nohup java -jar jenkins.war --httpPort=8088 &
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.