Hi,
is there a possibilty to check if JIRA is running after I restore it?
If possible, I need a command for my bash script.
Any idea?
Best,
Chris
Hi @Christian Herbert
#!/bin/sh SERVICE='jira' if ps ax | grep -v grep | grep $SERVICE > /dev/null then echo "$SERVICE service running, everything is fine" else echo "$SERVICE is not running" fi
Hi @Christian Herbert
can you provide your script for restore jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Viktor Okolot [Polontech]
Thx for your fast reply.
Do you have any idea, how I could check if the last restore (data import) was successful?
Best,
Chris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.