<?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: password expiry on linux box in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654550#M41371</link>
    <description>FYI,&lt;BR /&gt;&lt;BR /&gt;you only need to execute the chage command once.  ( no need to include in a boot script )&lt;BR /&gt;&lt;BR /&gt;in an effort to maintain some additional security why not set up ssh keys, restrict this account to sftp only and use a batch file that does not include a visable password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 30 Aug 2010 18:11:59 GMT</pubDate>
    <dc:creator>Tim Nelson</dc:creator>
    <dc:date>2010-08-30T18:11:59Z</dc:date>
    <item>
      <title>password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654544#M41365</link>
      <description>Hi Guru,&lt;BR /&gt;&lt;BR /&gt;In my linux box, there is a normal user (let say xyz). This user password is subject to password controls (expires after configured number of days). &lt;BR /&gt;&lt;BR /&gt;We used to scp login in this box as xyz user (a script which is hardcoded xyz user and its password) and collect few data from remote end.&lt;BR /&gt;&lt;BR /&gt;Problem: Let say passowrd has been expired and obivously login as xyz user would failed after that and we couldn't fetch the data from this box remotly.&lt;BR /&gt;&lt;BR /&gt;Question: What are the appropriate mechanism to acheive the data without affecting password exipry limitation?&lt;BR /&gt;&lt;BR /&gt;Thanking you!&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Jun 2010 16:22:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654544#M41365</guid>
      <dc:creator>monu_1</dc:creator>
      <dc:date>2010-06-29T16:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654545#M41366</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;If the password expires, the scp transfer will stop. No way around that other than to insure the password does not expire.&lt;BR /&gt;&lt;BR /&gt;The passwd command on Linux lets you set the expiration time as long as you want. If this user is not one that normally logs on the system, you can safely extend the expiration.&lt;BR /&gt;&lt;BR /&gt;Be prepared to explain this to any security auditors that happen to notice it.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 29 Jun 2010 18:50:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654545#M41366</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-06-29T18:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654546#M41367</link>
      <description>I find it best to separate accounts used primarily for interactive user login from those used primarily for batch/cron type access.&lt;BR /&gt;&lt;BR /&gt;For the latter, cron jobs would also fail if the account password "expires".  So, I generally set password expiration to Never, but also disable interactive password login.  Then, sudo is configured for local "sudo -u USERID COMMAND" access only.&lt;BR /&gt;&lt;BR /&gt;If you're using SSH (and it sounds like you are with scp), you could setup a passwordless public/private key relationship between the source and target hosts that would not be affected by password expiration.</description>
      <pubDate>Tue, 29 Jun 2010 22:28:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654546#M41367</guid>
      <dc:creator>Jared Middleton</dc:creator>
      <dc:date>2010-06-29T22:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654547#M41368</link>
      <description>like above, i suggest to use passwordless login using a published key. i don't know who or how your script is used, but hardcoding passwords all over the place is a pita.</description>
      <pubDate>Thu, 01 Jul 2010 10:58:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654547#M41368</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2010-07-01T10:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654548#M41369</link>
      <description>make the user account not to expire ever.</description>
      <pubDate>Mon, 19 Jul 2010 03:06:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654548#M41369</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2010-07-19T03:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654549#M41370</link>
      <description>Thanks all for support. I will go with Steve.&lt;BR /&gt;&lt;BR /&gt;Disbaled password expiry for normal user in the box at the time of start-up level.&lt;BR /&gt;&lt;BR /&gt;chage -M -1 &lt;USERNAME&gt;&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;&lt;BR /&gt;MKS&lt;/USERNAME&gt;</description>
      <pubDate>Sun, 29 Aug 2010 08:53:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654549#M41370</guid>
      <dc:creator>monu_1</dc:creator>
      <dc:date>2010-08-29T08:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: password expiry on linux box</title>
      <link>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654550#M41371</link>
      <description>FYI,&lt;BR /&gt;&lt;BR /&gt;you only need to execute the chage command once.  ( no need to include in a boot script )&lt;BR /&gt;&lt;BR /&gt;in an effort to maintain some additional security why not set up ssh keys, restrict this account to sftp only and use a batch file that does not include a visable password.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Aug 2010 18:11:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/password-expiry-on-linux-box/m-p/4654550#M41371</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2010-08-30T18:11:59Z</dc:date>
    </item>
  </channel>
</rss>

