<?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: killing login session in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697680#M248728</link>
    <description>The simplest method is to reboot and the /etc/utmp file will be rebuilt. This file is binary so direct editing with vi is not possible. The fwttmp program can decode and re-encode the utmp file but it is quite obtuse in usage. It requires creating an ASCII version of the file, then manually editing this file, and replacing /etc/utmp with the result. If not done correctly, utmp may become totally corrupted or empty and utiloities (like who) will no longer work.</description>
    <pubDate>Mon, 26 Dec 2005 06:59:00 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2005-12-26T06:59:00Z</dc:date>
    <item>
      <title>killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697665#M248713</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;When i executed who command;i saw many user sksonkar (myself) logged in. When i used grep command i saw few session only.&lt;BR /&gt;&lt;BR /&gt;Please see the output of both the command as shown below:-&lt;BR /&gt;&lt;BR /&gt;#who&lt;BR /&gt;sksonkar   pts/1        Dec 22 13:19&lt;BR /&gt;sksonkar   ttyp4        Dec 24 13:50&lt;BR /&gt;sksonkar   ttyp6        Dec 24 22:23&lt;BR /&gt;sksonkar   ttyq7        Sep 26 11:15&lt;BR /&gt;sksonkar   ttyq8        Sep 17 13:10&lt;BR /&gt;sksonkar   ttyqa        Sep 17 14:00&lt;BR /&gt;sksonkar   ttyqf        Sep 26 19:51&lt;BR /&gt;sksonkar   ttyr0        Sep 26 20:15&lt;BR /&gt;sksonkar   ttyr1        Sep 30 18:20&lt;BR /&gt;sksonkar   ttyr2        Sep 28 21:32&lt;BR /&gt;sksonkar   ttyr5        Oct  6 21:17&lt;BR /&gt;sksonkar   ttyr7        Oct  6 22:14&lt;BR /&gt;sksonkar   ttyr9        Oct 23 09:57&lt;BR /&gt;sksonkar   ttyrd        Nov 20 19:39&lt;BR /&gt;#     &lt;BR /&gt;# ps -ef|grep sksonkar&lt;BR /&gt;    root  9295  8880  2 22:24:57 ttypa     0:00 grep sksonkar&lt;BR /&gt;sksonkar  8863  8862  0 22:23:16 ttyp6     0:00 -ksh&lt;BR /&gt;sksonkar  8862     1  6 22:23:12 ?         0:00 /usr/bin/X11/xterm -fn 6x13 -sb -ls -display xx.xx.xx.xx&lt;BR /&gt;sksonkar 13792 13791  0 13:50:24 ttyp4     0:00 -ksh&lt;BR /&gt;sksonkar 13791     1  0 13:50:21 ?         0:00 /usr/bin/X11/xterm -fn 6x13 -sb -ls -display xx.xx.xx.xx&lt;BR /&gt;sksonkar  8878  8863  7 22:23:31 ttyp6     0:00 pbrun ksh&lt;BR /&gt;# &lt;BR /&gt;&lt;BR /&gt;Please suggest how to kill these sessions shown by "who" command ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Sun, 25 Dec 2005 01:35:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697665#M248713</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-25T01:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697666#M248714</link>
      <description>Shalom Shiv,&lt;BR /&gt;&lt;BR /&gt;who -l includes a process id&lt;BR /&gt;&lt;BR /&gt;That might now work.&lt;BR /&gt;&lt;BR /&gt;Based on your own output&lt;BR /&gt;&lt;BR /&gt;ps -ef | grep sksonkar | awk '{print $2}' &amp;gt; plist&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;while read -r pid&lt;BR /&gt;do&lt;BR /&gt;   kill ${pid)&lt;BR /&gt;done &amp;lt; plist&lt;BR /&gt;&lt;BR /&gt;There are several variants of the who command that might be useful becaus they display process ID as noted above. They are on the man page and might prove useful in getting rid of these sessions.&lt;BR /&gt;&lt;BR /&gt;Frankly when kiling processes, I prefer a human being is involved.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Dec 2005 03:16:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697666#M248714</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-12-25T03:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697667#M248715</link>
      <description>&lt;P&gt;hi Shiv.&lt;BR /&gt;seems like your wtmp file is corrupted ...&lt;BR /&gt;read the following link &lt;BR /&gt;&lt;STRIKE&gt;&lt;A&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=265607&lt;/A&gt;&lt;/STRIKE&gt;&lt;BR /&gt;and follow Robert-Jan 's suggestion....&lt;BR /&gt;&lt;BR /&gt;regards.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;[&lt;STRONG&gt;&lt;U&gt;Moderator edit&lt;/U&gt;&lt;/STRONG&gt;: The above link is no longer valid.]&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 07:19:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697667#M248715</guid>
      <dc:creator>Henk Geurts</dc:creator>
      <dc:date>2024-03-27T07:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697668#M248716</link>
      <description>Hi Steven, The command "$who -l" didn't give me any output or result.&lt;BR /&gt; &lt;BR /&gt;below is the screenshots:-&lt;BR /&gt;&lt;BR /&gt;$ who -l&lt;BR /&gt;$ &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Dec 2005 19:01:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697668#M248716</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-25T19:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697669#M248717</link>
      <description>Hi Shiv:&lt;BR /&gt;&lt;BR /&gt;# who -u&lt;BR /&gt;&lt;BR /&gt;...lists (u)sers who are logged in.  Adding '-R' as in 'who -uR' adds the hostname to the information returned.&lt;BR /&gt;&lt;BR /&gt;# who -l ...&lt;BR /&gt;&lt;BR /&gt;...lists only the lines on which logins are waiting to occur.&lt;BR /&gt;&lt;BR /&gt;As noted, there are times when the 'etc/utmp' or 'var/adm/wtmp' files are corrupted and you will sense that someone has never terminated a login session when in reality it has been.  More frequently, a simple 'ps' will expose orphaned sessions which can safely be killed ('kill -hup &lt;PID&gt;').  Uusally these arise from an ungraceful termination of a telnet session (e.g. by rebooting a PC hosting the telnet session).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/PID&gt;</description>
      <pubDate>Sun, 25 Dec 2005 19:57:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697669#M248717</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-12-25T19:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697670#M248718</link>
      <description>The ps command is extremely powerful and most options are never used. To find all processes owned by a specific user, don't use grep, use ps -u as in:&lt;BR /&gt; &lt;BR /&gt;ps -f -u sksonkar&lt;BR /&gt; &lt;BR /&gt;ps is always accurate as it reads the process table. who is dependent on the /etc/utmp file which can easily be corrupted with improper logouts. Since I see xterm processes, it appears that you may be using a PC with an Xterminal emulator. PCs have a tendency to crash a lot which means that the xterm windows (and associated logins) did not close properly. Since who determines whether a user has a session by looking in utmp, these crashed sessions appear to still exist.&lt;BR /&gt; &lt;BR /&gt;Only ps is correct. If all you are using are xterm windows, you will find a performance improvement by using a plain terminal emulator rather than Xwindows. And in addition, the simple telnet protocol is less susceptible to bad entries in utmp.</description>
      <pubDate>Sun, 25 Dec 2005 22:12:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697670#M248718</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-12-25T22:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697671#M248719</link>
      <description>Hi Shiv, Try with # who -T which will give IP addresses of the user's connected. It seems like you have lot of defunct processes running ? # ps -ef |grep -i "defunct" will list the defunct processes. &lt;BR /&gt;&lt;BR /&gt;-Arun &lt;BR /&gt;</description>
      <pubDate>Sun, 25 Dec 2005 22:22:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697671#M248719</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-25T22:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697672#M248720</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i would first trim my wtmp and btmp then run the "who -u" to identify the PID that i want to kill!&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;# who -u |grep sksonkar &lt;BR /&gt;sksonkar pts/ta       Dec 26 08:47  0:03  15578  t1&lt;BR /&gt;sksonkar pts/tb       Dec 26 08:00  0:05  10501  t1&lt;BR /&gt;sksonkar pts/tc       Dec 26 08:00  0:03  10554  t1&lt;BR /&gt;sksonkar pts/td       Dec 26 08:29  0:24  13797  t1&lt;BR /&gt;sksonkar pts/te       Dec 26 08:50  0:01  15767  t1&lt;BR /&gt;sksonkar pts/tf       Dec 26 08:34  0:18  14376  t1&lt;BR /&gt;sksonkar pts/th       Dec 26 08:37  0:07  14654  t1&lt;BR /&gt;sksonkar pts/ti       Dec 26 08:52  0:01  16140  t1&lt;BR /&gt;sksonkar pts/tk       Dec 26 08:55   .    16374  t1&lt;BR /&gt;# kill -15 15578  10501  10554  13797  15767  14376  14654  14654  16140  16374  &lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kidn regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Dec 2005 23:55:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697672#M248720</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-25T23:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697673#M248721</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;i would first trim my wtmp and btmp then run the "who -u" to identify the PID that i want to kill!&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;# who -u |grep sksonkar &lt;BR /&gt;sksonkar pts/ta       Dec 26 08:47  0:03  15578  t1&lt;BR /&gt;sksonkar pts/tb       Dec 26 08:00  0:05  10501  t1&lt;BR /&gt;sksonkar pts/tc       Dec 26 08:00  0:03  10554  t1&lt;BR /&gt;sksonkar pts/td       Dec 26 08:29  0:24  13797  t1&lt;BR /&gt;sksonkar pts/te       Dec 26 08:50  0:01  15767  t1&lt;BR /&gt;sksonkar pts/tf       Dec 26 08:34  0:18  14376  t1&lt;BR /&gt;sksonkar pts/th       Dec 26 08:37  0:07  14654  t1&lt;BR /&gt;sksonkar pts/ti       Dec 26 08:52  0:01  16140  t1&lt;BR /&gt;sksonkar pts/tk       Dec 26 08:55   .    16374  t1&lt;BR /&gt;# kill -15 15578  10501  10554  13797  15767  14376  14654  14654  16140  &lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kidn regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
      <pubDate>Sun, 25 Dec 2005 23:57:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697673#M248721</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-25T23:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697674#M248722</link>
      <description>Do you want to kill all the sessions opened by sksonkar then,&lt;BR /&gt;&lt;BR /&gt;# who -u | awk '/sksonkar/ { print $7; }' | xargs kill -9&lt;BR /&gt;&lt;BR /&gt;-Muthu</description>
      <pubDate>Mon, 26 Dec 2005 00:21:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697674#M248722</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-12-26T00:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697675#M248723</link>
      <description>To kill defunt processes for a user, you can use this script &lt;BR /&gt;&lt;BR /&gt;kill -9 `ps -ef|grep $LOGNAME|grep -v grep| defunct|awk '{print $2}'`&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 26 Dec 2005 01:27:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697675#M248723</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-26T01:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697676#M248724</link>
      <description>Respected Sirs,&lt;BR /&gt;&lt;BR /&gt;Thanks everyone for your help.&lt;BR /&gt;&lt;BR /&gt;One thing is not clear. As shown in my post above, who command shows more sessions but ps -ef|grep sksonkar shows fewer sessions.&lt;BR /&gt;Using kill command i can kill only those sessions who are visible using ps -ef|grep sksonkar command.&lt;BR /&gt;&lt;BR /&gt;What is the easiest way to clean all the sessions which are showing up using who or who -u|grep sksonkar command ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Dec 2005 02:11:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697676#M248724</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-26T02:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697677#M248725</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;the use of xargs with the kill command &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;to kill off all processes associated with "ptc":&lt;BR /&gt;&lt;BR /&gt;    ps -ef | grep ptc |  xargs kill -9 `awk '{print $2 }'`&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;to kill off all processes associated with "oli":&lt;BR /&gt;&lt;BR /&gt;    ps -ef | grep oli |  xargs kill -9 `awk '{print $2 }'`&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;to kill off all processes associated with "etscape":&lt;BR /&gt;&lt;BR /&gt;    ps -ef | grep etscape | xargs kill -9 `awk '{print $2 }'`&lt;BR /&gt;&lt;BR /&gt;Good Luck,</description>
      <pubDate>Mon, 26 Dec 2005 02:17:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697677#M248725</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-12-26T02:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697678#M248726</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;if you see man who:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;The who command can list the user's name, terminal line, login time, elapsed time since input activity occurred on the line, the user's host name, and the process-ID of the command interpreter (shell) for each current system user.  It examines the /etc/utmp file to obtain its information.  If file is given, that file is examined.  Usually, file is /var/adm/wtmp, which contains a history of all of the logins since the file was last created.&lt;BR /&gt;&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;so you should start with trimming the /etc/utmp file...&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Mon, 26 Dec 2005 02:19:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697678#M248726</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-12-26T02:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697679#M248727</link>
      <description>Hi Shiv, Have a look at this thread, &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=574109" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=574109&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 26 Dec 2005 04:15:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697679#M248727</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-26T04:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697680#M248728</link>
      <description>The simplest method is to reboot and the /etc/utmp file will be rebuilt. This file is binary so direct editing with vi is not possible. The fwttmp program can decode and re-encode the utmp file but it is quite obtuse in usage. It requires creating an ASCII version of the file, then manually editing this file, and replacing /etc/utmp with the result. If not done correctly, utmp may become totally corrupted or empty and utiloities (like who) will no longer work.</description>
      <pubDate>Mon, 26 Dec 2005 06:59:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697680#M248728</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-12-26T06:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697681#M248729</link>
      <description>Hi,&lt;BR /&gt;who -Hu|awk '/sksonkar/ {print "kill " $7}'|sh&lt;BR /&gt;&lt;BR /&gt;This command will kill all the pid showed by who command for user sksonkar.&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Tue, 27 Dec 2005 04:02:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697681#M248729</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2005-12-27T04:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697682#M248730</link>
      <description>Bill is right.  A couple of times I have ran into 1 or two of these users showing up in who but cannot grep it.   Lets take of of the ones that are not showing up, lets say for instance &lt;BR /&gt;sksonkar ttyqf Sep 26 19:51&lt;BR /&gt;&lt;BR /&gt;What happens when you try to grep ttyqf?  &lt;BR /&gt;ps -ef | grep ttyqf&lt;BR /&gt;&lt;BR /&gt;If nothing shows up, like Bill said you are going to have to reboot and it will clear it up. &lt;BR /&gt;&lt;BR /&gt; Like I said I have only seen this twice. These 2 occasions happened within on a couple of months apart, but with different seperate users and  not myself and not so many of them like you.   I was never able to figrue out what happened, only that it has stopped.   On your system, you are the one with issues, I am curious to see if you can figure how happens&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Dec 2005 16:53:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697682#M248730</guid>
      <dc:creator>John Jimenez</dc:creator>
      <dc:date>2005-12-27T16:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697683#M248731</link>
      <description>Thanks Bill!! I respect many Unix gurus like you on this forum. &lt;BR /&gt;&lt;BR /&gt;After joining this forum i came to know how little unix i know.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shiv</description>
      <pubDate>Tue, 27 Dec 2005 18:38:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697683#M248731</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-27T18:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: killing login session</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697684#M248732</link>
      <description>Hi Shiv,&lt;BR /&gt;         i want to take hp ux m/c archive to store in network pc using net_recover , pls give me some description on that.</description>
      <pubDate>Fri, 06 Jan 2006 04:51:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/killing-login-session/m-p/3697684#M248732</guid>
      <dc:creator>CV REDDY</dc:creator>
      <dc:date>2006-01-06T04:51:53Z</dc:date>
    </item>
  </channel>
</rss>

