<?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: restrict inactive user accounts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148980#M454306</link>
    <description>Please send me step by step process from the begining and please elaborate this issue ..I am beginer to unix environment..i got job as a fresher ...i couldnt understand one thing most of the answers i observed in HP forums are incomplete..if you dont mind please let me know how to execute this script and under what directory the code is executed..Please let me know the step by step process ...I just know how to login...and fes commands..thats it Thank you</description>
    <pubDate>Mon, 19 Jan 2009 12:11:49 GMT</pubDate>
    <dc:creator>unixadmin_1</dc:creator>
    <dc:date>2009-01-19T12:11:49Z</dc:date>
    <item>
      <title>restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148973#M454299</link>
      <description>Inactive user accounts were still present on the system.  Eight hundred and two (37%) users had not logged on for 60 days, while 353 (13%) users had not logged on for 90 days.  Inactive accounts are attractive targets that are often exploited to gain unauthorised access because the authorised users of such accounts are unlikely to notice someone breaking into and using them.  Also, by using an existing account, the unauthorised user is less likely to draw the attention of the system administrator than if a new account is opened.</description>
      <pubDate>Tue, 06 Jan 2009 13:30:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148973#M454299</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-01-06T13:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148974#M454300</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can deactivate the inactive accounts if the system is trusted. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jan 2009 13:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148974#M454300</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2009-01-06T13:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148975#M454301</link>
      <description>u can restrict by editing /etc/passwd file, edit the shell of user to /usr/bin/false or /bin/false. go to cissecurity to get manual book.</description>
      <pubDate>Tue, 06 Jan 2009 13:48:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148975#M454301</guid>
      <dc:creator>yulianto piyut</dc:creator>
      <dc:date>2009-01-06T13:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148976#M454302</link>
      <description>Well you seem to know who these folks are....so why not output their login-ids to a file, then run them through a simple loop to lock those inactive accounts....&lt;BR /&gt;&lt;BR /&gt;for a `cat /inactive-login_ids.lis`&lt;BR /&gt;  do&lt;BR /&gt;  /usr/bin/passwd -l $a&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;You can dress it up....but it gives you an idea.&lt;BR /&gt;&lt;BR /&gt;Rgrds,&lt;BR /&gt;Rita</description>
      <pubDate>Tue, 06 Jan 2009 17:02:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148976#M454302</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2009-01-06T17:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148977#M454303</link>
      <description>as i am new to hpux, can you please send me complete code where i can restrict these passwords..Thank you</description>
      <pubDate>Wed, 07 Jan 2009 08:31:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148977#M454303</guid>
      <dc:creator>change owners</dc:creator>
      <dc:date>2009-01-07T08:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148978#M454304</link>
      <description>hello unixadmin,&lt;BR /&gt;&lt;BR /&gt;" for a `cat /inactive-login_ids.lis`&lt;BR /&gt;do&lt;BR /&gt;/usr/bin/passwd -l $a&lt;BR /&gt;done "&lt;BR /&gt;&lt;BR /&gt;the point of Rita is only that if you already know the user accounts that are inactive for many days, make a list and then use&lt;BR /&gt;&lt;BR /&gt;for a cat &lt;LIST you="" created=""&gt;&lt;BR /&gt;do&lt;BR /&gt;/usr/bin/passwd -l $a&lt;BR /&gt;done &lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;prasad&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LIST&gt;</description>
      <pubDate>Wed, 07 Jan 2009 10:59:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148978#M454304</guid>
      <dc:creator>prasadb</dc:creator>
      <dc:date>2009-01-07T10:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148979#M454305</link>
      <description>&lt;!--!*#--&gt;&amp;gt;prasadb: make a list and then use&lt;BR /&gt;&lt;BR /&gt;A better form without evil cat would be:&lt;BR /&gt;for a in $(&amp;lt; list-you-created); do&lt;BR /&gt;   /usr/bin/passwd -l $a&lt;BR /&gt;done</description>
      <pubDate>Wed, 07 Jan 2009 11:35:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148979#M454305</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-01-07T11:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148980#M454306</link>
      <description>Please send me step by step process from the begining and please elaborate this issue ..I am beginer to unix environment..i got job as a fresher ...i couldnt understand one thing most of the answers i observed in HP forums are incomplete..if you dont mind please let me know how to execute this script and under what directory the code is executed..Please let me know the step by step process ...I just know how to login...and fes commands..thats it Thank you</description>
      <pubDate>Mon, 19 Jan 2009 12:11:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148980#M454306</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-01-19T12:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148981#M454307</link>
      <description>Hi "unixadmin",&lt;BR /&gt;&lt;BR /&gt;some thoughts to your question and answers:&lt;BR /&gt;Do you have a list of these user accounts?&lt;BR /&gt;If not: get it.&lt;BR /&gt;&lt;BR /&gt;Which format does this list have?&lt;BR /&gt;Create a file named 'inactive.lis' out of this list, having one user account in one line, if the list has not already this format.&lt;BR /&gt;&lt;BR /&gt;Now copy or type the three lines of Dennis' answer in the command line:&lt;BR /&gt;for a in $(&lt;INACTIVE.LIS&gt;&lt;/INACTIVE.LIS&gt;do /usr/bin/passwd -l $a&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;BR /&gt;&lt;BR /&gt;PS: Do you know how to create a file?&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 14:50:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148981#M454307</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2009-01-19T14:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148982#M454308</link>
      <description>&amp;gt;&amp;gt;.I just know how to login&lt;BR /&gt;&lt;BR /&gt;Then what are you doing in a System Administrator role?  It sounds like you are extremely underqualified for the job.</description>
      <pubDate>Mon, 19 Jan 2009 15:54:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148982#M454308</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-01-19T15:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148983#M454309</link>
      <description>The knowledge of "How to login" and the "few" commands are probably not enough to do administration on productive environments.&lt;BR /&gt;&lt;BR /&gt;I would consider to take some trainings and qualification first.&lt;BR /&gt;&lt;BR /&gt;BTW, you should read also this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;(a good way to say "thank you" to all who trying to help you)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jan 2009 16:06:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148983#M454309</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-01-19T16:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148984#M454310</link>
      <description>".i got job as a fresher ...i couldnt understand one thing most of the answers i observed in HP forums are incomplete..."&lt;BR /&gt;&lt;BR /&gt;that's not correct....the forums are designed to help people...but they assume that there is at least a "working knowledge" of hpux.  &lt;BR /&gt;&lt;BR /&gt;In your case, you're in over your head and are asking people to do your job for you.  this is all volunteer stuff, most people here have there own jobs to attend to as well.  Why should we do your work, when your the one collecting the pay for it.&lt;BR /&gt;&lt;BR /&gt;You need to get some training, and very quickly</description>
      <pubDate>Mon, 19 Jan 2009 18:00:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148984#M454310</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-01-19T18:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148985#M454311</link>
      <description>"i got job as a fresher ...i couldnt understand one thing most of the answers i observed in HP forums are incomplete.."&lt;BR /&gt;&lt;BR /&gt;No, no the answers are **NOT** "incomplete".&lt;BR /&gt;&lt;BR /&gt;You don't know what we're talking about, but that doesn't mean the answers are "incomplete".  Many of us, like me, take a break from our own work days to try to help folks, but we're also presuming that the folks we're helping understand what we're talking about.&lt;BR /&gt;&lt;BR /&gt;You do not.  &lt;BR /&gt;&lt;BR /&gt;"I just know how to login...and fes commands..thats it"&lt;BR /&gt;&lt;BR /&gt;Then perhaps you should **NOT** be a "unixadmin".  In fact, you should **NOT** even be a "unixuser".  &lt;BR /&gt;&lt;BR /&gt;You're expecting the rest of us to do your job for you, for free.  You're the one getting paid for it, you're the one not assigning points to replies to your questions:&lt;BR /&gt;&lt;BR /&gt;I have assigned points to   0  of   78  responses to my questions. &lt;BR /&gt;&lt;BR /&gt;First off, to continue using the knowledge contained within these Forums, you should follow the instructions here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;However, the best solution would be for you to find and obtain some training on Unix basics.  Then, and **ONLY** then, should you try to start learning all the tasks required to be a system administrator.</description>
      <pubDate>Mon, 19 Jan 2009 18:42:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148985#M454311</guid>
      <dc:creator>Michael Mike Reaser</dc:creator>
      <dc:date>2009-01-19T18:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148986#M454312</link>
      <description>Hi Micahael,&lt;BR /&gt;&lt;BR /&gt;I am not working to any of the company you imagined...I Just joined as a trainee for one traning organisation.. and i am trying hard to get the solution after there is no way i am just refering you...Iam very sorry that i never assigned points ..as I said earlier I am new buddy My age is just 18...I am studying 1st year engineering and getting trained with one organization..so If any thing wrong please let me know...</description>
      <pubDate>Tue, 20 Jan 2009 13:14:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148986#M454312</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-01-20T13:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148987#M454313</link>
      <description>Please come up with the solution never disourage learners..that states you doesnt know anything...</description>
      <pubDate>Tue, 20 Jan 2009 13:25:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148987#M454313</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-01-20T13:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148988#M454314</link>
      <description>To learn, one must assimilate the teachings of those already in the know.  You seem to be looking for an answer that you can cut and paste into a browser or some other e-training material. &lt;BR /&gt;&lt;BR /&gt;That's not learning.&lt;BR /&gt;&lt;BR /&gt;The people here have been incredibly helpful to me.&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2009 13:31:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148988#M454314</guid>
      <dc:creator>Patrick Scherrer</dc:creator>
      <dc:date>2009-01-20T13:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148989#M454315</link>
      <description>No Patrick  you are assuming me in wrong way If any thing wrong I am really sorry</description>
      <pubDate>Tue, 20 Jan 2009 13:43:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148989#M454315</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-01-20T13:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148990#M454316</link>
      <description>Hi,&lt;BR /&gt;my LAST try:&lt;BR /&gt;&lt;BR /&gt;Did your try to work down the list I gave?&lt;BR /&gt;&lt;BR /&gt;What where/are the problems?&lt;BR /&gt;&lt;BR /&gt;BTW, you got already a copy+paste solution.&lt;BR /&gt;&lt;BR /&gt;Did you read and understand&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Tue, 20 Jan 2009 14:10:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148990#M454316</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2009-01-20T14:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: restrict inactive user accounts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148991#M454317</link>
      <description>Thanks</description>
      <pubDate>Thu, 12 Feb 2009 13:02:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-inactive-user-accounts/m-p/5148991#M454317</guid>
      <dc:creator>unixadmin_1</dc:creator>
      <dc:date>2009-02-12T13:02:27Z</dc:date>
    </item>
  </channel>
</rss>

