<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: force users to change password on next log in in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312296#M12787</link>
    <description>Hi Martin,&lt;BR /&gt;&lt;BR /&gt;I use Web Administrator tool " Webmin" to do that. You can download from webmin.org.&lt;BR /&gt;&lt;BR /&gt;Check this link which I have already answered how to do it in webmin.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.experts-exchange.com/Operating_Systems/Linux/Linux_Administration/Q_20764565.html" target="_blank"&gt;http://www.experts-exchange.com/Operating_Systems/Linux/Linux_Administration/Q_20764565.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;sam</description>
    <pubDate>Wed, 23 Jun 2004 00:45:30 GMT</pubDate>
    <dc:creator>sam_111</dc:creator>
    <dc:date>2004-06-23T00:45:30Z</dc:date>
    <item>
      <title>force users to change password on next log in</title>
      <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312292#M12783</link>
      <description>I have used chage -d 0 username upon creating a new account.  For some reason that won't work a second time.&lt;BR /&gt;&lt;BR /&gt;Anyone know of a web based tool that will let user's request a password reset automatically?&lt;BR /&gt;&lt;BR /&gt;I also would like to send email notification to users that their password on servername will expire starting at 30 days from expiration.</description>
      <pubDate>Tue, 22 Jun 2004 14:19:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312292#M12783</guid>
      <dc:creator>Martin Corona</dc:creator>
      <dc:date>2004-06-22T14:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: force users to change password on next log in</title>
      <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312293#M12784</link>
      <description>The passwd command is used to do both of those functions.&lt;BR /&gt;&lt;BR /&gt;man passwd&lt;BR /&gt;&lt;BR /&gt;passwd -k &lt;USERNAME&gt; will force a change at next login.&lt;BR /&gt;&lt;BR /&gt;passwd -w &lt;USERNAME&gt; &lt;DAYS&gt; will determine the number of days before expiration the user will start to get notification that their password needs to be changed.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/DAYS&gt;&lt;/USERNAME&gt;&lt;/USERNAME&gt;</description>
      <pubDate>Tue, 22 Jun 2004 14:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312293#M12784</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-06-22T14:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: force users to change password on next log in</title>
      <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312294#M12785</link>
      <description>I still like the 'chage' command, which lets you warn users before compelling them to change, set up automatic password duration and so on.&lt;BR /&gt;But chage -d 0 is nbot the way, here you just indicate that the password was last changed on 1st jan 1970, which is not what you need.&lt;BR /&gt;Try chage -M 30 -W 7 username, to set up 30 days password validity, warn to change 7 days before deadline.&lt;BR /&gt;&lt;BR /&gt;man chage for details&lt;BR /&gt;&lt;BR /&gt;I 'm not aware of any graphical tool apart Webmin, I think that the e mail idea would require a script...&lt;BR /&gt;&lt;BR /&gt;Hope it helps&lt;BR /&gt;&lt;BR /&gt;jerome Henry</description>
      <pubDate>Tue, 22 Jun 2004 16:05:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312294#M12785</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2004-06-22T16:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: force users to change password on next log in</title>
      <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312295#M12786</link>
      <description>[root@backup backups]# passwd -k djmartin&lt;BR /&gt;Changing password for user djmartin.&lt;BR /&gt;Changing password for djmartin&lt;BR /&gt;(current) UNIX password:&lt;BR /&gt;New password:&lt;BR /&gt;Retype new password:&lt;BR /&gt;passwd: expired authentication tokens updated successfully.&lt;BR /&gt;&lt;BR /&gt;1.  As the root user, I should not be prompted for the users current password&lt;BR /&gt;&lt;BR /&gt;2.  -k option did not force the user to change password on next log in.&lt;BR /&gt;&lt;BR /&gt;On the second response to my initial question, I don't want to give a user 30 days.  New security guidelines are coming out soon internally.  I will have to force all users to change passwords on their next log in.  &lt;BR /&gt;&lt;BR /&gt;I did add chage -l $USER to /etc/profile though.  Now users will see the password info everytime they log in.</description>
      <pubDate>Tue, 22 Jun 2004 16:30:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312295#M12786</guid>
      <dc:creator>Martin Corona</dc:creator>
      <dc:date>2004-06-22T16:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: force users to change password on next log in</title>
      <link>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312296#M12787</link>
      <description>Hi Martin,&lt;BR /&gt;&lt;BR /&gt;I use Web Administrator tool " Webmin" to do that. You can download from webmin.org.&lt;BR /&gt;&lt;BR /&gt;Check this link which I have already answered how to do it in webmin.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.experts-exchange.com/Operating_Systems/Linux/Linux_Administration/Q_20764565.html" target="_blank"&gt;http://www.experts-exchange.com/Operating_Systems/Linux/Linux_Administration/Q_20764565.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;sam</description>
      <pubDate>Wed, 23 Jun 2004 00:45:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/force-users-to-change-password-on-next-log-in/m-p/3312296#M12787</guid>
      <dc:creator>sam_111</dc:creator>
      <dc:date>2004-06-23T00:45:30Z</dc:date>
    </item>
  </channel>
</rss>

