I am having a script which ask for password for unix box during login....
I need to make in such a way that it willn't ask for password for everytime during login. As I am having many servers and to run many scripts.When I will run this script it will do ssh to other Unix boxautomatically without asking for username and password.
for i in user1@10.116.112.16 ;do
echo "ENTER UNIX PASSWORD FOR SERVER $i AT THE PROMPT"
ssh $i
done;
Pls suggest me.............
Thanks,
Gohappy