Linux - Newbie This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
11-22-2004, 02:59 PM
|
#1
|
LQ Newbie
Registered: Nov 2004
Posts: 3
Rep:
|
script to monitor process on remote machine
Hi
I need to check for a process running on multiple machines and if its not running, to send me an email.
I also want to give the list of machines as a separate text file i.e
checkprocess.pl "process name" "IPlist.txt"
Is there anything like this available. All the machines have the same user and use the same ssh keys..
thanks !!
|
|
|
11-22-2004, 05:01 PM
|
#2
|
Senior Member
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440
Rep:
|
Yes, this is very possible. In order to grab the server's process and the IP's, you need to have a for loop to iterate each value in the text file.
To run commands on the remote computer it's like this:
#!/bin/bash
ssh whatever.server.com "(/usr/local/bin/apachectl graceful)"
exit 0
So what the above does is ssh into your remote computer and it restarts apache on the remote computer. As you can see, it's a very simple script.
So, lets say you want to ssh into a list of servers (the list of servers are in servers.txt)
#!/bin/bash
SERVERS=`cat servers.txt | awk '{print $1}'`
for server in $SERVERS; do
echo "I'm logging into $server"; ssh $server "(echo "Hello, I'm inside")"; done
exit 0
-twantrd
|
|
|
11-22-2004, 05:14 PM
|
#3
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
blimey, yet another thing i thought was 100% impossible... never stop learning... show's what i know!
|
|
|
11-23-2004, 06:25 PM
|
#4
|
LQ Newbie
Registered: Nov 2004
Posts: 3
Original Poster
Rep:
|
Awesome!.. Thanks.. After ssh ing....
How do I check the process running on the boxes..
Can I do a ps-ef |grep process name on servers.txt?
I need to send an email with the details of all the servers on which this process is not running
thanks again
|
|
|
11-23-2004, 06:49 PM
|
#5
|
Moderator
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
|
You can send ANY command you please via ssh,
and it will (if it has output to stdout) report back to
you what's going ...
In the scenario above
ssh whatever.server.com "ps-ef |grep process name"
Cheers,
Tink
|
|
|
11-23-2004, 06:54 PM
|
#6
|
Senior Member
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440
Rep:
|
Afraid to tell you, but for that piece it's going to be a lot more scripting for sure. What I would do is run 'ps -ef | grep httpd | grep -v grep' on the remote computer and save the success of that command to a variable. Then implement an IF function to check if it was successful or not, if not, then execute the mail command.
-twantrd
|
|
|
01-07-2005, 12:07 PM
|
#7
|
LQ Newbie
Registered: Nov 2004
Posts: 3
Original Poster
Rep:
|
Thanks. Thats what I did
`ssh $server -l $USERNAME "ps aux| grep -v grep | grep $PROCESS_NAME; exit"
And processed the output to send the mail
thanks !!
|
|
|
All times are GMT -5. The time now is 05:03 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|