Pass root password through script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Pass root password through script
# 8  
Old 11-12-2010
Bug

Thanks for the reply..but the number of clients is not fixed. Server will ping the client's host name one by one and will install the package on the clients till it reaches the last client. Host name of clients is C1, C2, .......C200 for which a function has already been written which is as follows :
=====================================================
Code:
function findClients() {
    local ClientnotReachable=
    echo -n "Finding online Client...: "
    do
    echo "Client No: $Client"
    ping -c 1 -W 1 p$Client >/dev/null 2>&1
    local ret=$?
    if [ $ret = 0 ]; then
      Clients="${Clients}P${Client} "
      echo -n "$Client "
    elif [ $ret = 1 ]; then
      ClientnotReachable="${ClientnotReachable}Client${Client} "
      echo -n ". "
    elif [ $ret = 2 ]; then
      # no entry found in /etc/hosts or from DNS
      ClientnotReachable="${ClientnotReachable}Client${Client} "
      echo -n ". "
    fi
  done
  echo
  if [ ! -z "$ClientnotReachable" ]; then
    echo "Following Client are not reachable: $ClientnotReachable"
  fi
}

findClients
for Client in $Clients; do
echo -n "$Client " >t
ssh root@$Client "tar -xvf /lib/modules/2.6.20.1/modules-2.6.20.1.tar"> h.txt
done

=====================================================
This my entire script...in the first part, server will check for online clients and in the 2nd part, it perform the required action but for every ssh login to a client, it asks for the password.

---------- Post updated 11-12-10 at 01:34 PM ---------- Previous update was 11-11-10 at 04:35 PM ----------

Anyone.....pls...help....

Last edited by pludi; 11-12-2010 at 04:12 AM.. Reason: code tags please
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Parsing Root password inside a C shell script

Hello everyone, I want to check how long a remote computer is running (e.g. with the command uptime or who - b) The check should be done during login from none root user by a script which is called from .cshrc. My script works fine if I login as root but I want that everybody get the information... (5 Replies)
Discussion started by: Nadielosabra
5 Replies

2. Shell Programming and Scripting

How to pass root password with su and command?

Hello, I have list of around 400 devices. I need to restart a service /etc/init.d/psap23.sh in all of them, but it should restart by root only. Those have some other kind of light Linux. There is no sudo package in that and we can't/shouldn't install. Direct root login is not allowed. I login... (5 Replies)
Discussion started by: solaris_1977
5 Replies

3. Red Hat

Root password expiry script

Hi Guys In red hat linux server is there a way to alert via email when the root password is about to expire ? As per security policy in our environment root password will expire in 90 days. Example : It would be better if we receive a email on 7th november stating that the root password... (1 Reply)
Discussion started by: newtoaixos
1 Replies

4. Shell Programming and Scripting

Pass the password to su in shell script

Hello, I am using below command but this is asking for tty c42dba {/home/oracle}: echo sersnp | su -c ggs standard in must be a tty Best regards, Vishal (4 Replies)
Discussion started by: admin_db
4 Replies

5. UNIX for Advanced & Expert Users

How to auto pass password in shell script !

Hi all, I have a simple script to check the CPU, Swap Memory and Hard Disk. But I can auto assign password in the script to automatic run it in crontab. Everytime when I run this script, it require to insert password like the message below : How can I solve this problem ? (2 Replies)
Discussion started by: cafecoc85
2 Replies

6. Shell Programming and Scripting

How to pass decrypted password to script

Hi Everybody, I am trying to write a script (ksh) to connect to oracle db via sqlplus. As I do not want the password to be in plain text, I've tried to use java to encrypt and decrypt it but I am not sure how can I pass the decrypted password to the script. Pls advise. Below is what I would... (1 Reply)
Discussion started by: Nick1971
1 Replies

7. Shell Programming and Scripting

Create script for change root password via SSH

HI I 'm new shall script and unix. I want to create script for change password root by ssh-keygen command . I have 50 servers and I want ot login ot the servers via ssh by type ones password and can login every machines.The script ssh-keygen must ot generate key every weekly than it send new... (2 Replies)
Discussion started by: pellnapook
2 Replies

8. Solaris

Solaris 8 - Asks for current root password when trying to change root password.

Hello All, I have several solaris boxes running Solaris 8. When changing root passwords on them, all will simply ask for the new root password to change and of course to re-type the new password. One of the systems however asks for the existing root password before it will display the new password... (8 Replies)
Discussion started by: tferrazz
8 Replies

9. Shell Programming and Scripting

how to change root password using shell script with standard password

Hi Friends. I am new to scripting now i want to change the root password using the script with standard password. which is the easy scripting to learn for the beginner, Thanks in advance. (2 Replies)
Discussion started by: kurva
2 Replies

10. Shell Programming and Scripting

script to change root password

Hi All, I'm looking for a script to change root password for about 200 servers of both Solaris and Linux. I'm not very good at scripting, can anyone share a script if you already have one? :) (3 Replies)
Discussion started by: kvadivel80
3 Replies
Login or Register to Ask a Question