<?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 remove &amp;quot;old&amp;quot; session in HP-UX 10.20 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525455#M24281</link>
    <description>How this "zombie" proces is created?&lt;BR /&gt;Why?&lt;BR /&gt;&lt;BR /&gt;Where i could find a program that clean my system?&lt;BR /&gt;</description>
    <pubDate>Mon, 07 May 2001 14:39:15 GMT</pubDate>
    <dc:creator>Mauro Gatti</dc:creator>
    <dc:date>2001-05-07T14:39:15Z</dc:date>
    <item>
      <title>how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525450#M24276</link>
      <description>Using command "who -u" i get some lines like this:&lt;BR /&gt;emanc ttypc May 4 09:53 old 19333 194.63.3.172&lt;BR /&gt;&lt;BR /&gt;but if i look for "ps -u emanc" i don't find any process associated to this users.&lt;BR /&gt;&lt;BR /&gt;How can i eliminate this "old" session?&lt;BR /&gt;&lt;BR /&gt;Thank You</description>
      <pubDate>Mon, 07 May 2001 08:43:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525450#M24276</guid>
      <dc:creator>Mauro Gatti</dc:creator>
      <dc:date>2001-05-07T08:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525451#M24277</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;     You can try to kill all the process associated to the terminal ttypc. So, you must run the command:&lt;BR /&gt;&lt;BR /&gt;ps -ef | grep ttypc&lt;BR /&gt;&lt;BR /&gt;     and kill all the process associated with ttypc. Then, the session must be close.&lt;BR /&gt;</description>
      <pubDate>Mon, 07 May 2001 08:56:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525451#M24277</guid>
      <dc:creator>Jose Martinez Rodriguez</dc:creator>
      <dc:date>2001-05-07T08:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525452#M24278</link>
      <description>Hi Mauro,&lt;BR /&gt;the easiest way is to kill the process that appears with the "who -u" command.&lt;BR /&gt;in this particular case you would just need to "kill 19333"&lt;BR /&gt;good luck.</description>
      <pubDate>Mon, 07 May 2001 09:00:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525452#M24278</guid>
      <dc:creator>Pedro Sousa</dc:creator>
      <dc:date>2001-05-07T09:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525453#M24279</link>
      <description>I've already tried this solutions :-)&lt;BR /&gt;The ttypc don't have any process active...&lt;BR /&gt;the process 19333 doesn't exist!!!!&lt;BR /&gt;(kill -9 19333 returns :"kill: 19333: no such process")&lt;BR /&gt;This user is like a zombie :-)!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 May 2001 10:04:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525453#M24279</guid>
      <dc:creator>Mauro Gatti</dc:creator>
      <dc:date>2001-05-07T10:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525454#M24280</link>
      <description>"who" gets its data from /etc/utmp which is "administered" by getty (I think). The reason of your "zombie user" could be an abnormally terminated connection or something similar. For "removing" this user I know two possibilities:&lt;BR /&gt;1. "edit" the file /etc/utmp, and change the entry of your "zombie user" (it is a binary file, but it has a well defined structure, so you can write a short c-program to read/change the entries, or you can download it from several sites)&lt;BR /&gt;2. move/remove/"truncate" the file /etc/utmp. This will have effect on other users' login data, so this isn't the best solution. But if you (root) are the only user logged in, then it should work.&lt;BR /&gt;&lt;BR /&gt;  &lt;BR /&gt;  Laszlo</description>
      <pubDate>Mon, 07 May 2001 10:39:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525454#M24280</guid>
      <dc:creator>IWANIEC, EDOUARD</dc:creator>
      <dc:date>2001-05-07T10:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525455#M24281</link>
      <description>How this "zombie" proces is created?&lt;BR /&gt;Why?&lt;BR /&gt;&lt;BR /&gt;Where i could find a program that clean my system?&lt;BR /&gt;</description>
      <pubDate>Mon, 07 May 2001 14:39:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525455#M24281</guid>
      <dc:creator>Mauro Gatti</dc:creator>
      <dc:date>2001-05-07T14:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: how remove "old" session in HP-UX 10.20</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525456#M24282</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try to do as follows:&lt;BR /&gt;&lt;BR /&gt;1.  /usr/sbin/acct/fwtmp   &amp;lt; /etc/utmp &amp;gt;/temporary_file&lt;BR /&gt;&lt;BR /&gt;2. vi /temporary_file&lt;BR /&gt;and remove old unnecessary login info&lt;BR /&gt;&lt;BR /&gt;3.  /usr/sbin/acct/fwtmp  -ic &amp;lt; /temporary_file &amp;gt; /etc/utmp &lt;BR /&gt;&lt;BR /&gt;Of course you can use sed or awk instead vi.&lt;BR /&gt;&lt;BR /&gt;I do not remember at the moment if you need to do the same with /var/adm/wtmp file. Must check.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Rgds.&lt;BR /&gt;</description>
      <pubDate>Mon, 07 May 2001 18:30:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-remove-quot-old-quot-session-in-hp-ux-10-20/m-p/2525456#M24282</guid>
      <dc:creator>Wieslaw Krajewski</dc:creator>
      <dc:date>2001-05-07T18:30:32Z</dc:date>
    </item>
  </channel>
</rss>

