Change password for many users on an AIX server


 
Thread Tools Search this Thread
Operating Systems AIX Change password for many users on an AIX server
# 1  
Old 04-27-2016
Change password for many users on an AIX server

Hi

I want to change password for around 100 users on an aix server.
I have the list of those 100 users with me.
instead of doing
Code:
# passwd username

for all the 100 users one by one, can you please help with a script through which we can change the password for all the 100 users in a single shot.
I'm happy to set the password as ask4help for all these 100 users.
# 2  
Old 04-28-2016
Hi,

please have a look at the command chpasswd.

Example:
Code:
echo "user1:ask4help" | chpasswd

Regards
# 3  
Old 04-30-2016
Xray is right. This is the way to go.

Note that chpasswd - like a passwd <user> - will set the ADMCHNG flag in /etc/security/passwd, resulting in a request for the user to change his password the first time logs in after the change.

Usually this is wanted, but in case it is not do a pwdadm -c <user> afterwards. This will clear the aforementioned flag.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Verifying a users password on AIX setup with LPA

Hello, We're running AIX 6 & 7. Previously we were using the old encryption techinique (DES/crypt) I have a GUI application that has a verify button (the verify button is sort of a digital signature) - the user clicks it, enters his or her password and we then make a call to a C module, This... (3 Replies)
Discussion started by: evansch
3 Replies

2. AIX

How to ssh from an AIX OS server to a Fabric OS server without password?

Hi I'd like to ssh from an AIX OS server ( v5.3) to a Fabric OS server ( v6.1.2 ) without password. I tried using dsa or rsa keys but it didn't work, the aix server still asked for the password. Somebody help, please :(:(:( (8 Replies)
Discussion started by: bobochacha29
8 Replies

3. Shell Programming and Scripting

Bulk NIS Users Password Change

Hi All, I am having Solaris 5.10 acting as NIS. How do i change multiple user password in NIS in a batch. I have predefined users with their passwords to be set: Example: user1 password1 user2 password2 Pls advise. (0 Replies)
Discussion started by: yogajwa
0 Replies

4. Solaris

Change password for users

I am on SunOS SolarisServer 5.11 11.1 i86pc i386 i86pc , I am trying to change password for a user,but I get the following message.I cannot find any google help on the matter.can anyone help? root@SolarisServer:~# passwd passwd: Changing password for stain Please try again Please try... (6 Replies)
Discussion started by: cbtshare
6 Replies

5. UNIX for Advanced & Expert Users

Update users password change time

Hello - Is this possible on Unix machines? Can we update user password change time? (6 Replies)
Discussion started by: manju--
6 Replies

6. AIX

Can't change root password in AIX 5.2

Hi all, I'm trying to change a password for root on an AIX 5.2 machine. Oslevel -r shows 5200-10 for this machine. Here's what happens: / # whoami root / # passwd Please type a new password: Please re-enter the new password: Changing UNIX password... 601 - Can't access the password... (7 Replies)
Discussion started by: need2bageek
7 Replies

7. Shell Programming and Scripting

script to change password for all users

We have a server where we have a number of user ids and we also have the list of old passwords in a CSV file. Now we want to change the password of all the users and assign them a default password.Can we write a shell script to do that. I am planning to read the user name and corresponding... (7 Replies)
Discussion started by: dr46014
7 Replies

8. Solaris

How to enforce all users to change their password

Hi All, How to enforce all users to change their password when they try to login. I am having Solaris 9 and 10. Even it would be much better if anyone can say to enforce all users to change their password next morning they login. Thanks in advance, Deepak (3 Replies)
Discussion started by: naw_deepak
3 Replies

9. Shell Programming and Scripting

Help- Change the password of users to common one

Hi all I have some 106 users of which i need to change the password of them to a common one. I dont know their paswword. But i need to reset them to a common one. How can i do this with a shell script? It would be a great help if some one can help to sort out this.:b::b: I know it can be... (0 Replies)
Discussion started by: Tuxidow
0 Replies

10. Shell Programming and Scripting

To simultaneously update password change in two server at a time

I am new beginner in Unix and little experienced in BaaN ERP. Problem Statement: I have to run a BaaN session. I have to change the password for both primary and secondary server by using this session. On primary server only few people has access permission (say 10). But on secondary server... (0 Replies)
Discussion started by: s_chandrakar
0 Replies
Login or Register to Ask a Question