I want to use ssh-run to restart my Spring project in remote server. My project is built into a .jar file and is uploaded to the server.
- pipe: atlassian/ssh-run:0.2.6
variables:
SSH_USER: $USER
SERVER: $SERVER
COMMAND: 'pkill -9 -f app.jar | nohup /(dir)/app.jar &'
I tried the command above. The pipeline result says it succeded, but the process was not working.
I searched and found someone saying that when 'nohup ... &' command doesn't work, put 'sleep 1' command next to it. So I tried blow.
- pipe: atlassian/ssh-run:0.2.6
variables:
SSH_USER: $USER
SERVER: $SERVER
COMMAND: 'pkill -9 -f app.jar | nohup /(dir)/app.jar & sleep 1'
Now the service works. It successfully restarts the service every time I push the code.
But the problem is that the pipeline result says it 'failed'. Also, it sends me email every time which is very annoying. (I can't even disable it in setting)
So I want to know how people use pipeline ssh-run command to execute a file to run service in background.
Thank you.
@고현민 now when you figured out with your command, please share the logs where pipeline fails.
It will help us to discover the root cause.
If you have some sensitive info in logs, you may mask any string you'd not like to show up.
Thanks!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.