Bash script to verify the daemon is working if not, start the daemon
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
A lot of daemons store their process ID in a file in /var/run (ex. sshd.pid for the sshd daemon). You might try looking there. Then if you find it, you can do an 'if [ -x "/proc/<PID>" ]' to see if the process directory exists. Otherwise, just a grep through a "ps -ax" for the daemon name might be enough.
Last edited by nuwen52; 09-22-2009 at 02:15 PM.
Reason: error in previous post
I need to write a bash script to verify some xyz daemon is running are not, if not start that xyz daemon
If "need to write" is not due to some class assignment then unless you're into reinventing the wheel I'd look at something like Monit instead. It'll be faster than interpreted code, more configurable than you can script in one month and it's used, supported, maintained OSS.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.