how to force a user to change the password

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat how to force a user to change the password
# 1  
Old 09-17-2009
how to force a user to change the password

RHEL 5 update 4. How to force a user to change the password at his next logon.

Thanks in advance.
# 2  
Old 09-17-2009
You can force a password to immediately expire with
Code:
chage -d 0 username

# 3  
Old 09-25-2009
Quote:
Originally Posted by Corona688
You can force a password to immediately expire with
Code:
chage -d 0 username

why I'm not works.
when we use option -d , user cannot login(rhel5.2, ssh4.3).
# 4  
Old 09-25-2009
Did they ever have a password before? If not, you need to create one for them. This will not force their first password.
# 5  
Old 09-28-2009
Quote:
Originally Posted by mark54g
Did they ever have a password before? If not, you need to create one for them. This will not force their first password.
It have password, but still not works. ???

==================
# grep ratcha /etc/passwd /etc/shadow
/etc/passwd:ratcha.c:x:510:500:System Admin:/home/ratcha.c:/bin/ksh
/etc/shadow:ratcha.c:$1$O1z5V6.2$en8cRSXbDS0VGAT/XHbEZ/:14515:7:90:7:::
# passwd -d ratcha.c
Removing password for user ratcha.c.
passwd: Success
#
# grep ratcha /etc/passwd /etc/shadow
/etc/passwd:ratcha.c:x:510:500:System Admin:/home/ratcha.c:/bin/ksh
/etc/shadow:ratcha.c::14515:7:90:7:::
# ssh ratcha.c@localhost
The authenticity of host 'localhost (127.0.0.1)' can't be established.
RSA key fingerprint is e6:6b:cd:ce:7c:c2:60:f5:22:f8:23:ac:f0:8b:ae:f6.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'localhost' (RSA) to the list of known hosts.
ratcha.c@localhost's password:
Permission denied, please try again.
ratcha.c@localhost's password:
Permission denied, please try again.
ratcha.c@localhost's password:
Permission denied (publickey,gssapi-with-mic,password).
=================
# 6  
Old 09-28-2009
Chage -d should work. Can you log in as that user on the console?
# 7  
Old 09-29-2009
Quote:
Originally Posted by fpmurphy
Chage -d should work. Can you log in as that user on the console?
User can log in to server normally.
But I want to test force them to change password at first login.

Why option -d not work for me ???
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Linux

Not able to change user password

hi I am not able to change user password from root user. although it is saying updated successfully. but still I am not able to login direct to abc user. however I can login from root user by using su - abc # passwd abc Changing password for user abc. New password: BAD PASSWORD: it... (2 Replies)
Discussion started by: scriptor
2 Replies

2. Shell Programming and Scripting

How to change LPad user password?

Hi Gurus, I am lpad user in some of my server. I need to change password at certain period time. I am wondering what is the command to change the passwd. last time I asked my unix admin, they gave me a comand I chagned it. (I forgot to keep it in safe place, I lost it). this time when... (2 Replies)
Discussion started by: ken6503
2 Replies

3. Red Hat

password change for user on Redhat 5.6

Hi expert, after creating users on Redhat, i wantn to change their password with something that easy to remember and the way we use. For example #passwd username hello$123 it don't allow me. It may has something to do /etc/pam.d/filesXXXX there which i don't know to change to allow root... (1 Reply)
Discussion started by: lamoul
1 Replies

4. Solaris

Force user to change passwd on first login

Hello All, How to force user to change his login passwd on his first login in solaris 10 ? while adding user do we need to set the password in theis case?? (7 Replies)
Discussion started by: saurabh84g
7 Replies

5. Shell Programming and Scripting

force to change password(by modifying /etc/shadow)

hi by modifying /etc/shadow how can I Force a change of password so that user has at least 1 week to login? I did it by using: echo "enter username to force password change" read user; chage -M 7 $user; How can I do it by modifying /etc/shadow?? (6 Replies)
Discussion started by: tjay83
6 Replies

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

7. UNIX for Dummies Questions & Answers

Server wide password enforcement rules? 90 day force change.

Using Solaris 9 and 10. What we want to do is set up global rules for our password files to restrict all users, not only new ones set up with the rules but also the ones that have been sitting on the system for years. Is there a global way to force all users to change their password every 90... (1 Reply)
Discussion started by: LordJezo
1 Replies

8. UNIX for Dummies Questions & Answers

Can't change password for a user

All, I am unable to change a password for the user called : poller I am logged in as root When I do the following command passwd poller New Password: Permission denied Whe i enter the new password, it gives the above error. When i log in as poller and then execute the command, then... (2 Replies)
Discussion started by: rahulrathod
2 Replies

9. UNIX for Advanced & Expert Users

Force to change to a different password

Hi, I notice in my Sun Solaris 8 sparc worstation, I am able to change my password to same existing password. That is, right now my password is abc, and I change it with "passwd" command and change it abc again. It will accept. How can I make it such that it will not accept same password?... (3 Replies)
Discussion started by: champion
3 Replies

10. UNIX for Advanced & Expert Users

Force Password Change...RedHat 7.1

Hello, I just finished adding a bunch of new users to the linux servers I administer. I add users either via command line or via linuxconf, but I can't seem to find out how to force users to change their passwords on their first login to the system. Anyone know how to do that? My HP-UX... (1 Reply)
Discussion started by: vancouver_joe
1 Replies
Login or Register to Ask a Question