LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 11-22-2004, 02:59 PM   #1
kencha
LQ Newbie
 
Registered: Nov 2004
Posts: 3

Rep: Reputation: 0
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 !!
 
Old 11-22-2004, 05:01 PM   #2
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
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
 
Old 11-22-2004, 05:14 PM   #3
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
blimey, yet another thing i thought was 100% impossible... never stop learning... show's what i know!
 
Old 11-23-2004, 06:25 PM   #4
kencha
LQ Newbie
 
Registered: Nov 2004
Posts: 3

Original Poster
Rep: Reputation: 0
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
 
Old 11-23-2004, 06:49 PM   #5
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
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
 
Old 11-23-2004, 06:54 PM   #6
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
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
 
Old 01-07-2005, 12:07 PM   #7
kencha
LQ Newbie
 
Registered: Nov 2004
Posts: 3

Original Poster
Rep: Reputation: 0
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 !!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Process monitor script? sub_moa Programming 2 11-03-2005 04:08 AM
perl/bash script to monitor all processes running in my machine pudhiyavan Linux - Security 4 07-19-2005 02:09 PM
telneting remote machine from a shell script sanjith11 Programming 11 05-26-2004 06:50 AM
ssh to initiate process on remote machine jdarren Linux - Networking 3 03-23-2004 05:55 PM
Running a script in background on a remote machine TheCoffeeMug Linux - Networking 3 11-06-2003 10:08 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:58 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration