<?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: How to restrict concurrent user login? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883130#M752014</link>
    <description>I stand corrected about "no built-in functionality" - thanks Srinivasan!.&lt;BR /&gt;&lt;BR /&gt;I haven't tried that on 10.20.&lt;BR /&gt;&lt;BR /&gt;by the way - Harry, &lt;BR /&gt;if you assign points&lt;BR /&gt;  then please don't assign any to this second entry!&lt;BR /&gt;fi</description>
    <pubDate>Thu, 16 Jan 2003 00:36:54 GMT</pubDate>
    <dc:creator>Ian Kidd_1</dc:creator>
    <dc:date>2003-01-16T00:36:54Z</dc:date>
    <item>
      <title>How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883122#M752006</link>
      <description>I've HP-UX 9000 10.2 here and I'm new to UNIX in general.&lt;BR /&gt;I'm trying to restrict users from logging in more than one or two concurrent sessions.  How can I do that?  Someone told me to go to /etc/default/security, but I don't find security in /etc/default.  Please help.</description>
      <pubDate>Thu, 16 Jan 2003 00:07:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883122#M752006</guid>
      <dc:creator>Harry Yu</dc:creator>
      <dc:date>2003-01-16T00:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883123#M752007</link>
      <description>Hi,&lt;BR /&gt;  You can do this, from SAM if your system is trusted. &lt;BR /&gt;&lt;BR /&gt;Or create a file &lt;BR /&gt;/etc/default/security with root as owner and 644 permission.&lt;BR /&gt;&lt;BR /&gt;Add a line&lt;BR /&gt;&lt;BR /&gt;NUMBER_OF_LOGINS_ALLOWED=1&lt;BR /&gt;&lt;BR /&gt;This feature will work in 11.x.&lt;BR /&gt;But I am not sure, whether this works in 10.20.&lt;BR /&gt;&lt;BR /&gt;Srini.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2003 00:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883123#M752007</guid>
      <dc:creator>avsrini</dc:creator>
      <dc:date>2003-01-16T00:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883124#M752008</link>
      <description>As far as I know, there is no "built-in" functionality to limit the number of sessions for a user.&lt;BR /&gt;&lt;BR /&gt;I'd edit /etc/profile and throw something like:&lt;BR /&gt;&lt;BR /&gt;LOGIN_NUMBER=`who | grep $LOGNAME | wc -l`&lt;BR /&gt;if [ $LOGIN_NUMBER -gt 1 ]&lt;BR /&gt;then&lt;BR /&gt;echo "You already have an open session.&lt;BR /&gt;If this is not the case, please notify the Sys Admin."&lt;BR /&gt;sleep 7&lt;BR /&gt;exit&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;I tested this on a 10.20, and my shell is /usr/bin/ksh.&lt;BR /&gt;&lt;BR /&gt;For testing this suggestion as well as any others that people may give, I would make sure to be logged into the server as root from a session.  Messing with login restrictions can be dangerious so you want make sure you already have an established connection before doing so!</description>
      <pubDate>Thu, 16 Jan 2003 00:31:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883124#M752008</guid>
      <dc:creator>Ian Kidd_1</dc:creator>
      <dc:date>2003-01-16T00:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883125#M752009</link>
      <description>Have a look at this posting, it has a number of options.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x431472106351d5118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x431472106351d5118fef0090279cd0f9,00.html&lt;/A&gt;</description>
      <pubDate>Thu, 16 Jan 2003 00:31:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883125#M752009</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-01-16T00:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883126#M752010</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;On 10.20 is a hard task, on 11.0 you onlys need define in /etc/default/security file:&lt;BR /&gt;NUMBER_OF_LOGINS_ALLOWED=3 (must be in caps)&lt;BR /&gt;This apply for no-root users (su excluded) &lt;BR /&gt;&lt;BR /&gt;And certify that PHCO_27721 patch is installed.&lt;BR /&gt;&lt;BR /&gt;Other ways could be include in /etc/profile file followings lines:&lt;BR /&gt;&lt;BR /&gt;MAX=3&lt;BR /&gt;CURRENT=`who|grep $LOGNAME|wc -l`&lt;BR /&gt;if [ $CURRENT -gt $MAX ]&lt;BR /&gt;then&lt;BR /&gt;   exit&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;Rgds.</description>
      <pubDate>Thu, 16 Jan 2003 00:33:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883126#M752010</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2003-01-16T00:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883127#M752011</link>
      <description>Even if this file is not there you can create it. But i doubt if that will solve your purpose. To restrict the number of sessions a simple way would be to write a script to check the login sessions of a user and put that script in .profile or /etc/profile. So if the user is already loged in as reported by your script then exit and dont let him login(use exit in profile).&lt;BR /&gt;&lt;BR /&gt;Or there is a module in PAM called as session management that allows this configuration.&lt;BR /&gt;Try going through this document which might give you some idea as how to go&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000062952847" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000062952847&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Rajeev</description>
      <pubDate>Thu, 16 Jan 2003 00:34:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883127#M752011</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2003-01-16T00:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883128#M752012</link>
      <description>Thanks, Srini.  I've tried it and it won't work.  I created the file "security" with only one line of command.  Then, I tried to login more than once, still, I was able to.  My server is not Trusted System.  SAM prompted me to convert to Trusted System before I can do further security settings, but I'm afraid that our database (MFG/Pro) will stop running and if that happens, I'd be doomed.  Can you tell me what's the different between trusted or not trusted system?  Thanks alot.</description>
      <pubDate>Thu, 16 Jan 2003 00:35:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883128#M752012</guid>
      <dc:creator>Harry Yu</dc:creator>
      <dc:date>2003-01-16T00:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883129#M752013</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can follow Ian's idea. Just put one more check at the beginning of the script to allow you to have multiple sessions.&lt;BR /&gt;&lt;BR /&gt;if [ "$LOGNAME" != "your_login" ]&lt;BR /&gt;then&lt;BR /&gt;   Ian's code&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;This way you can login with any number of attempts.&lt;BR /&gt;&lt;BR /&gt;The corresponding file for csh would be /etc/csh.login. You need to modify the script a bit to suit to csh.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Thu, 16 Jan 2003 00:36:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883129#M752013</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2003-01-16T00:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883130#M752014</link>
      <description>I stand corrected about "no built-in functionality" - thanks Srinivasan!.&lt;BR /&gt;&lt;BR /&gt;I haven't tried that on 10.20.&lt;BR /&gt;&lt;BR /&gt;by the way - Harry, &lt;BR /&gt;if you assign points&lt;BR /&gt;  then please don't assign any to this second entry!&lt;BR /&gt;fi</description>
      <pubDate>Thu, 16 Jan 2003 00:36:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883130#M752014</guid>
      <dc:creator>Ian Kidd_1</dc:creator>
      <dc:date>2003-01-16T00:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883131#M752015</link>
      <description>Harry, &lt;BR /&gt;&lt;BR /&gt;A trusted system is HP-UX with additional security enhancements.&lt;BR /&gt;The world-readable /etc/passwd file no longer has  encrypted passwds in it instead, the encrypted passwords are stored in /tcb, which can only by accessed by root.&lt;BR /&gt;you also can enable auditing and additional password security functionality.&lt;BR /&gt;&lt;BR /&gt;the decision to convert to a trusted system should not be taken lightly.  On a 10.20, you'd want to make sure that you have the latest patches before even considering to convert. Doing a little digging in the ITRC forums will uncover a lot of horror stories regarding people who converted without enough preparation/backout plans</description>
      <pubDate>Thu, 16 Jan 2003 00:45:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883131#M752015</guid>
      <dc:creator>Ian Kidd_1</dc:creator>
      <dc:date>2003-01-16T00:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883132#M752016</link>
      <description>/etc/default/security is a feature of 11.0 and higher, so creating it in 10.20 does nothing. Just add the test into /etc/profile (assuming that users are doing 'normal' telnet logins and using ksh or POSIX shell.&lt;BR /&gt;&lt;BR /&gt;Note that restricting users to a small number of sessions doesn't help performance since a single session could consume all CPU and memory. Perhaps the users are running Xwindows and starting xterms or dtterms on your system? Consider using a local telnet client rather than xterm/dtterm/hpterm.</description>
      <pubDate>Thu, 16 Jan 2003 01:05:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883132#M752016</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-01-16T01:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883133#M752017</link>
      <description>Here is what I did:&lt;BR /&gt;&lt;BR /&gt;#! /usr/bin/sh&lt;BR /&gt;checkuproc () {&lt;BR /&gt;  termtty=$(/usr/bin/who -Rm |/usr/bin/awk '{print $2}')&lt;BR /&gt;  num_u_proc=$(($(/usr/bin/ps |/usr/bin/grep "$termtty"|/usr/bin/grep $mproc|/usr/bin/wc -l)))&lt;BR /&gt;  if [ ${num_u_proc} -gt 1 ]; then &lt;BR /&gt;      print "Error: There is already a session running."&lt;BR /&gt;      session=1&lt;BR /&gt;  fi&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;# main&lt;BR /&gt;&lt;BR /&gt;session=0&lt;BR /&gt;checkuproc&lt;BR /&gt;&lt;BR /&gt;if [ $session -ne 0 ]; then&lt;BR /&gt;  exit&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2003 01:12:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883133#M752017</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2003-01-16T01:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883134#M752018</link>
      <description>One more thing, you need to run the script in the user's profile.</description>
      <pubDate>Thu, 16 Jan 2003 01:14:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883134#M752018</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2003-01-16T01:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883135#M752019</link>
      <description>One last thing.  remove "/usr/bin/grep $mproc" as well.</description>
      <pubDate>Thu, 16 Jan 2003 01:21:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883135#M752019</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2003-01-16T01:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883136#M752020</link>
      <description>Hi Harry,&lt;BR /&gt;  &lt;BR /&gt;  For the differences check the following link.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000065676950" target="_blank"&gt;http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000065676950&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I'v cut &amp;amp; pasted some points here&lt;BR /&gt;&lt;BR /&gt;The following information lists the MAJOR differences between trusted&lt;BR /&gt;and non-trusted systems:&lt;BR /&gt;&lt;BR /&gt;     1.  A trusted system allows system auditing to be turned on.&lt;BR /&gt;         System auditing enables the ability to trace every system call&lt;BR /&gt;         issued by each user on the system.  Non-trusted systems run&lt;BR /&gt;         with system auditing disabled.&lt;BR /&gt;&lt;BR /&gt;     2.  Trusted systems have improved password management.&lt;BR /&gt;&lt;BR /&gt;         Below is a list of password management features:&lt;BR /&gt;&lt;BR /&gt;         a. Specification of a grace period and expiration period for&lt;BR /&gt;            passwords.&lt;BR /&gt;&lt;BR /&gt;         b. The ability to specify system-wide password aging.&lt;BR /&gt;&lt;BR /&gt;         c. The ability to specify an absolute account life.&lt;BR /&gt;&lt;BR /&gt;         d. The ability to disable accounts after repeated login&lt;BR /&gt;            failures.&lt;BR /&gt;&lt;BR /&gt;         e. Passwords lengths of up to forty (40) characters.&lt;BR /&gt;&lt;BR /&gt;         f. The ability to access a random password generator.&lt;BR /&gt;&lt;BR /&gt;     3.  Trusted systems have additional login restrictions, while&lt;BR /&gt;         non-trusted systems do not.  Below are the features of&lt;BR /&gt;         trusted system login restrictions:&lt;BR /&gt;&lt;BR /&gt;         a. In addition to account disabling, the account may also be&lt;BR /&gt;            locked.&lt;BR /&gt;&lt;BR /&gt;         b. Setting accounts to be accessed only at certain times of&lt;BR /&gt;            the day.&lt;BR /&gt;&lt;BR /&gt;         c. The ability to specify account location access.  In other&lt;BR /&gt;            words, account access at specific devices, workstations,&lt;BR /&gt;            and so on.&lt;BR /&gt;&lt;BR /&gt;         d. The ability to specify a single-user boot password.&lt;BR /&gt;&lt;BR /&gt;            Note: These login restrictions are NOT available on&lt;BR /&gt;                  NON-TRUSTED systems.&lt;BR /&gt;&lt;BR /&gt;     4.  A trusted system has shadowed passwords, while a non-trusted&lt;BR /&gt;         system does not have shadowed passwords.  Shadowed passwords&lt;BR /&gt;         are kept in locations other than /etc/passwd.  This prevents&lt;BR /&gt;         users from viewing the /etc/passwd file and determining which&lt;BR /&gt;         accounts do not have passwords.  This also prevents hackers from&lt;BR /&gt;         running "password cracker programs" against passwords in the&lt;BR /&gt;         /etc/passwd file.&lt;BR /&gt;&lt;BR /&gt;For more information, please refer to the following document:&lt;BR /&gt;&lt;BR /&gt;          "Administering Your HP-UX Trusted System"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Srini&lt;BR /&gt;SYD-IT.&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2003 01:23:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883136#M752020</guid>
      <dc:creator>avsrini</dc:creator>
      <dc:date>2003-01-16T01:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883137#M752021</link>
      <description>Hi Harry,&lt;BR /&gt;&lt;BR /&gt;Don't you think they helped you out a lot ?&lt;BR /&gt;You'dd better give them some points for their answers. They will be helping you twice as fast next time :)&lt;BR /&gt;&lt;BR /&gt;Regs David</description>
      <pubDate>Thu, 16 Jan 2003 10:44:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883137#M752021</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-01-16T10:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883138#M752022</link>
      <description>Thanks, Ian.  The script you gave me works!!!  Wohooo!&lt;BR /&gt;Also, thanks to everybody here.  Your responds are so fast and I really appreciated!</description>
      <pubDate>Thu, 16 Jan 2003 17:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883138#M752022</guid>
      <dc:creator>Harry Yu</dc:creator>
      <dc:date>2003-01-16T17:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883139#M752023</link>
      <description>Now I've get the script to work under /home/"username"/.profile.  The next question is how can I apply this script to every user's .profile without have to menully type it in?  We're talking about 40 users here.  Not a very fun task.  Thanks again, everyone.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Harry&lt;BR /&gt;- newbie to UNIX</description>
      <pubDate>Thu, 16 Jan 2003 17:32:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883139#M752023</guid>
      <dc:creator>Harry Yu</dc:creator>
      <dc:date>2003-01-16T17:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883140#M752024</link>
      <description>You can put it to /etc/profile for all users.</description>
      <pubDate>Fri, 17 Jan 2003 00:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883140#M752024</guid>
      <dc:creator>Wilfred Chau_1</dc:creator>
      <dc:date>2003-01-17T00:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to restrict concurrent user login?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883141#M752025</link>
      <description>Wilfred Chau's suggestion would be the best way - put the script I gave you into /etc/profile.  When I tested this script, that's where I put it and it worked fine.  You could probably create a script to put it in everyone's .profile, but I think that's too much work for not enough benefit.&lt;BR /&gt;&lt;BR /&gt;Sorry about the delay in responding - when I saw the "magic rabbit" by your thread, I made the assumption that the thread was complete.</description>
      <pubDate>Fri, 17 Jan 2003 00:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-restrict-concurrent-user-login/m-p/2883141#M752025</guid>
      <dc:creator>Ian Kidd_1</dc:creator>
      <dc:date>2003-01-17T00:40:15Z</dc:date>
    </item>
  </channel>
</rss>

