how to connect to server with ssh to check process size


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to connect to server with ssh to check process size
# 1  
Old 08-25-2008
how to connect to server with ssh to check process size

Hello

i have to connect to 11 servers to check the process size on every server.
how to that with shell scripting using ssh

regards
# 2  
Old 08-25-2008
What do you mean by process size ? However, you can do that easily with "expect" scripting language, have a look at the global net or local forum resources.
# 3  
Old 08-25-2008
what OS, what process?

for instance on linux (>2.6.9 kernel) you cat look in /proc/<pid>/status for the VmSize line i.e.

$ grep VmSize /proc/1508/status
VmSize: 4404 kB

and via ssh it would be

ssh -l <username> <host> grep VmSize /proc/1508/status
# 4  
Old 08-25-2008
I guess one can just issue
Code:
top

command on SSH to check all info.
# 5  
Old 08-25-2008
hello

here is the command i am using to get the process size
top | grep SS |awk '{print $6}'| cut -c 1-4

i need to run this command on 11 different servers to grep the process size from these servers

and show it to me
regards
# 6  
Old 08-25-2008
Quote:
Originally Posted by mogabr
hello

here is the command i am using to get the process size
top | grep SS |awk '{print $6}'| cut -c 1-4
Let's exclude grep and cut:
Code:
top | awk '/SS/{print int($6)}'

# 7  
Old 08-25-2008
for a start, the top command will fail unless you tell it you want to run it in batch mode, as sshd will not provide a valid $TERM variable.

apart form that something along the lines of :

Code:
for serv in host1 host2 host3
do
echo 
echo $serv
ssh $serv top -n 1 -b |grep SS |awk '{print $6}'| cut -c 1-4
done

should suffice, once you've ensured that the user running the script has passwordless keys setup.

the parameters to top are
-n 1 run 1 iteration and quit
-b run in batch mode, don't look for a terminal
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help Required - facing error when trying to connect to a mysql by ssh to another server

Hi i am new to unix shell scripting i have the below requirement connect to server B and then connect to mysql in the server B and query for a particular record and capture that value but when i perform this i am facing an error can u guys help me on this:confused::confused: ... (2 Replies)
Discussion started by: Hamdul
2 Replies

2. Shell Programming and Scripting

Connect (SSH) to Windows server via Linux server through a script and passing command.. but failing

I am trying to connect to Windows server via Linux server through a script and run two commands " cd and ls " But its giving me error saying " could not start the program" followed by the command name i specify e g : "cd" i am trying in this manner " ssh username@servername "cd... (5 Replies)
Discussion started by: sunil seelam
5 Replies

3. Red Hat

Xming Vs ssh connect to RHEL server from Windows machine

I am able to connect a RHEL server from my Windows machine using Putty (via ssh). My question is what is the advantage of using Xming instead of Putty? Is it that Xming would enable a graphical connect from the Windows machine to RHEL server? I hope my question is clear that what is the... (9 Replies)
Discussion started by: RHCE
9 Replies

4. Red Hat

unable to connect remote server using ssh

hi all i am unable to connect remote server using ssh but i am able to ping the server ssh service is running. (5 Replies)
Discussion started by: nikhil kasar
5 Replies

5. Shell Programming and Scripting

Check the size of the file on different server

Hello, I have two servers A and B, My script is written on Server A. I am picking up the file say "abc.txt" from Server B using sftp command and putting it in a directory at Server A. Now the catch is, If the file size of "abc.txt" is greater thn the available size on Server A, thn an email... (5 Replies)
Discussion started by: Prashant Jain
5 Replies

6. UNIX for Advanced & Expert Users

Check the size of the file on different server

Hello, I have two servers A and B, My script is written on Server A. I am picking up the file say "abc.txt" from Server B using sftp command and putting it in a directory at Server A. Now the catch is, If the file size of "abc.txt" is greater thn the available size on Server A, thn an email... (1 Reply)
Discussion started by: Prashant Jain
1 Replies

7. Shell Programming and Scripting

[SSH] Need to connect to remote server as different user and without password

I have a task requiring that USER_A run a script, which connects to HOST_B as USER_B and does not ask for a password. If I am logged in on HOST_A as USER_B, I can connect to HOST_B without a password, no problem. However, if I try running ssh with the command line "ssh USER_B@HOST_B" while... (3 Replies)
Discussion started by: Totengraber
3 Replies

8. Shell Programming and Scripting

shell script for how to connect to a remote server by using ssh

i want to connect to a remote server through ssh. i have to also provide password within that script. after connecting to the remote server i want to do some operations like grep,cd etc can u pls help me to wite a script. Thanks (1 Reply)
Discussion started by: millan
1 Replies

9. UNIX for Dummies Questions & Answers

connect to server using ssh

hi, i have script that connects to a unix server. however, i want to add condition that if it cannot connects in 10 attemps, it will send email to me. while -a ${COUNT} -lt 10] ./connect to server. if status <> 0 then email to me. fi Thanks a lot. (0 Replies)
Discussion started by: tungaw2004
0 Replies

10. Shell Programming and Scripting

Not able to remotely connect to server using ssh

Hi, I am trying to run the below command in perl but when the perl script is executed it prompts a error message saying " ssh: <username>: Name or service not known ". Not able to understand this as this command runs perfectly on the server prompt. ` ssh <username>@pus4026dev df -k >>... (2 Replies)
Discussion started by: be2sp1
2 Replies
Login or Register to Ask a Question