how to change root password using shell script with standard password


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to change root password using shell script with standard password
# 1  
Old 02-24-2009
Java 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  
Old 02-24-2009
Just thoughts (Im still half asleep...):

Who will you be when you change the password?
1) Root, in that case why want to change the password with a script when you only have to type passwd?
2) a user, in that case, have you a little idea what this means? (security concern...)
# 3  
Old 02-25-2009
Java how to change root password using shell script with standard password

its development server, i need install 3rd party software for 30 servers. i m creating control file with standard password. Using same password i need to install servers. after installation put back to original password

ex:
1)cp -p /etc/shadow /etc/shadow.old
2) change the root passwd
3)install the 3rd party software
4) after installation put back the original shadow file
5) cp -p /etc/shadow.old /etc/shadow
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Password sent via reset password email is 'weak' and won't allow me to change my password

I was unable to login and so used the "Forgotten Password' process. I was sent a NEWLY-PROVIDED password and a link through which my password could be changed. The NEWLY-PROVIDED password allowed me to login. Following the provided link I attempted to update my password to one of my own... (1 Reply)
Discussion started by: Rich Marton
1 Replies

2. 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

3. UNIX for Beginners Questions & Answers

Can a root role change the root password in Solaris 10?

i do not have root on a solairs 10 server , however i do have the root role, i was wondering if I can change the root password as a a role with the passwd command? I have not tried yet. and do i have to use the # chgkey -p afterwards? i need to patch is why i am asking. thanks (1 Reply)
Discussion started by: goya
1 Replies

4. Shell Programming and Scripting

Shell script to change the password

Hi Folks, I am trying to change the password for the user "sysservice" Where my requirement is login to each server and exit from that and ssh to the next server.. I have enabled the password less auth for the user sysservice. for i in `cat /home/sysservice/servers.txt` do ssh... (1 Reply)
Discussion started by: gsiva
1 Replies

5. 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

6. UNIX for Dummies Questions & Answers

What are standard root password control applications?

According to security guide i came across term as "standard root password control application " I have no imformation over what are such applications how to implement them? Any guidance will be appreciated. It was also suggested to audit root login .How would i go about it? (1 Reply)
Discussion started by: pinga123
1 Replies

7. 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

8. Shell Programming and Scripting

force to change password(shell script)

hi How can I force user to change of password by modifying the password expiry and the grace period so that the user has at least 1 week to login and change the password...... (3 Replies)
Discussion started by: tjay83
3 Replies

9. 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

10. Shell Programming and Scripting

Change Password In A Shell Script

Hi All, I have a problem. I need to write a shell script to change the password. The user may want to change his own password by this script. He will have to provide the required 3 parameters i.e. old password, new password and retype new password as arguments in command line. like,... (6 Replies)
Discussion started by: pintu_asim
6 Replies
Login or Register to Ask a Question