Difference between revisions of "Reset password"

From Earlham CS Department
Jump to navigation Jump to search
(Created page with "== For CS side == Use the following steps to change password for a user with the name userName # SSH to net.cs.earlham.edu and sudo to root using command: <tt>sudo su - </tt>...")
 
m (For CS side)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
Resetting password is a very common issue asked frequently by the users. Therefore, it is essential to know the basics of how to reset a user's password to the default password (123.abc) when needed. This is a step-by-step guide to how to reset password. Once you are more familiar with LDAP server and its commands, you can manipulate the directories much more freely. For now, this guide will suffice as a basic guide to changing password.
 
== For CS side ==
 
== For CS side ==
 +
The easiest way is to go to net, become root, then run <code>./change_pass username</code>.
 +
 
Use the following steps to change password for a user with the name userName
 
Use the following steps to change password for a user with the name userName
 
# SSH to net.cs.earlham.edu and sudo to root using command: <tt>sudo su - </tt>
 
# SSH to net.cs.earlham.edu and sudo to root using command: <tt>sudo su - </tt>
Line 6: Line 9:
 
# Run this command: <tt> ldapmodify -f chg-pw.ldif -D "cn=admin,dc=cs,dc=earlham,dc=edu" -W -x </tt>
 
# Run this command: <tt> ldapmodify -f chg-pw.ldif -D "cn=admin,dc=cs,dc=earlham,dc=edu" -W -x </tt>
 
# Enter the LDAP password for CS when prompted
 
# Enter the LDAP password for CS when prompted
 +
# The password when trying to ssh to userName@home.cs.earlham.edu will be 123.abc (default). The user can change it using command <tt>passwd</tt>
 +
# Test the new password by trying to ssh to the machine as the userName using the default password.
  
 
== For Cluster side ==
 
== For Cluster side ==
Line 15: Line 20:
 
# Run this command: <tt> ldapmodify -f chg-pw.ldif -D "cn=Manager,dc=cluster,dc=loc" -W </tt>
 
# Run this command: <tt> ldapmodify -f chg-pw.ldif -D "cn=Manager,dc=cluster,dc=loc" -W </tt>
 
# Enter the LDAP password for Cluster when prompted
 
# Enter the LDAP password for Cluster when prompted
 +
# The password when trying to ssh to userName@hopper.cluster.earlham.edu will be 123.abc (default). The user can change it using command <tt>passwd</tt>
 +
# Test the new password by trying to ssh to the machine as the userName using the default password.

Latest revision as of 12:40, 18 June 2019

Resetting password is a very common issue asked frequently by the users. Therefore, it is essential to know the basics of how to reset a user's password to the default password (123.abc) when needed. This is a step-by-step guide to how to reset password. Once you are more familiar with LDAP server and its commands, you can manipulate the directories much more freely. For now, this guide will suffice as a basic guide to changing password.

For CS side

The easiest way is to go to net, become root, then run ./change_pass username.

Use the following steps to change password for a user with the name userName

  1. SSH to net.cs.earlham.edu and sudo to root using command: sudo su -
  2. cd to folder /root/ldap-files
  3. Modify the chg-pw.ldif file by replacing the uid=previousUsername to uid=userName
  4. Run this command: ldapmodify -f chg-pw.ldif -D "cn=admin,dc=cs,dc=earlham,dc=edu" -W -x
  5. Enter the LDAP password for CS when prompted
  6. The password when trying to ssh to userName@home.cs.earlham.edu will be 123.abc (default). The user can change it using command passwd
  7. Test the new password by trying to ssh to the machine as the userName using the default password.

For Cluster side

Use the following steps to change password for a user with the name userName

  1. SSH to hopper.cluster.earlham.edu and sudo to root using command sudo su -
  2. cd to folder /root/ldap-files
  3. Modify the chg-pw.ldif file by replacing the uid= previousUsername to uid=userName
  4. Run this command: ldapmodify -f chg-pw.ldif -D "cn=Manager,dc=cluster,dc=loc" -W
  5. Enter the LDAP password for Cluster when prompted
  6. The password when trying to ssh to userName@hopper.cluster.earlham.edu will be 123.abc (default). The user can change it using command passwd
  7. Test the new password by trying to ssh to the machine as the userName using the default password.