<?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: not able to kill the console process in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645336#M379784</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;"It would be possible to disable the console by removing the appropriate line from /etc/inittab... but you should not do it"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;- edit /etc/inittab and comment next line:&lt;BR /&gt;&lt;BR /&gt;cons:123456:respawn:/usr/sbin/getty console console&lt;BR /&gt;&lt;BR /&gt;# init q&lt;BR /&gt;&lt;BR /&gt;- kill console pid process&lt;BR /&gt;&lt;BR /&gt;rgs,&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 10 Jun 2010 10:40:23 GMT</pubDate>
    <dc:creator>rariasn</dc:creator>
    <dc:date>2010-06-10T10:40:23Z</dc:date>
    <item>
      <title>not able to kill the console process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645332#M379780</link>
      <description>Hello Folks,&lt;BR /&gt;&lt;BR /&gt;I am not able to kill the console process, i think the cosole process is in hung state. please find the output below and kindly let me know how to kill that process&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;dmocvb:/ # ps -ef | grep console&lt;BR /&gt;    root 15329     1  0 15:07:34 console   0:00 /usr/sbin/getty console console&lt;BR /&gt;oraariba  7364     1  0  Jul 21  ?        46:18 /di01/app/oracle/product/10.2.0/perl/bin/perl /di01/app/oracle/product/10.2.0/bin/emwd.pl dbconsole /di01/app/oracle/product/10&lt;BR /&gt;    root 16065 12612  0 15:10:10 pts/1     0:00 grep console&lt;BR /&gt;dmocvb:/ # kill -9 15329&lt;BR /&gt;dmocvb:/ # ps -ef | grep console&lt;BR /&gt;    root 16170     1  0 15:10:24 console   0:00 /usr/sbin/getty console console&lt;BR /&gt;oraariba  7364     1  0  Jul 21  ?        46:18 /di01/app/oracle/product/10.2.0/perl/bin/perl /di01/app/oracle/product/10.2.0/bin/emwd.pl dbconsole /di01/app/oracle/product/10&lt;BR /&gt;    root 16172 12612  0 15:10:30 pts/1     0:00 grep console&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!!!!!!</description>
      <pubDate>Wed, 09 Jun 2010 18:12:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645332#M379780</guid>
      <dc:creator>gany59</dc:creator>
      <dc:date>2010-06-09T18:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: not able to kill the console process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645333#M379781</link>
      <description>HI:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I am not able to kill the console process, i think the cosole process is in hung state. please find the output below and kindly let me know how to kill that process&lt;BR /&gt;&lt;BR /&gt;And exactly why do you think you want to kill the console login process?&lt;BR /&gt;&lt;BR /&gt;If you examine your '/etc/inittab' and the manpages for the 'init' daemon you will see that the console login ('getty') is respawned if it dies.  After all, you would want to be able to login at the console.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 09 Jun 2010 18:28:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645333#M379781</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2010-06-09T18:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: not able to kill the console process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645334#M379782</link>
      <description>Note that the PID number changed after you ran your "kill -9" command. In other words, the original process died and a new one was started in its place.&lt;BR /&gt;&lt;BR /&gt;This is done by "init", the mother of all processes. The console getty is configured with a "respawn" keyword in /etc/inittab: this means each time the process dies, "init" will restart it.&lt;BR /&gt;&lt;BR /&gt;It would be possible to disable the console by removing the appropriate line from /etc/inittab... but you should not do it.&lt;BR /&gt;&lt;BR /&gt;If you disable the console, some problems won't be fixable without crashing &amp;amp; rebooting the server. Every time a server is crashed, there is a risk of data loss. If you need to secure the console, do it by disconnecting the console terminal and placing the server into a secure room or cabinet, with a reliable lock on the door(s). This way, if you ever have a problem that requires console access, you will have the option of getting the key and opening the door.&lt;BR /&gt;&lt;BR /&gt;If your aim is to secure the system against people who can physically touch the system and work with the hardware, please reconsider: this is *very* difficult and may actually be impossible.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 09 Jun 2010 18:42:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645334#M379782</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-06-09T18:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: not able to kill the console process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645335#M379783</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;All solid informations above...&lt;BR /&gt;&lt;BR /&gt;May I ask you, why you want to do that??&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sooraj</description>
      <pubDate>Thu, 10 Jun 2010 08:38:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645335#M379783</guid>
      <dc:creator>SoorajCleris</dc:creator>
      <dc:date>2010-06-10T08:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: not able to kill the console process</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645336#M379784</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;"It would be possible to disable the console by removing the appropriate line from /etc/inittab... but you should not do it"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;- edit /etc/inittab and comment next line:&lt;BR /&gt;&lt;BR /&gt;cons:123456:respawn:/usr/sbin/getty console console&lt;BR /&gt;&lt;BR /&gt;# init q&lt;BR /&gt;&lt;BR /&gt;- kill console pid process&lt;BR /&gt;&lt;BR /&gt;rgs,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Jun 2010 10:40:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-able-to-kill-the-console-process/m-p/4645336#M379784</guid>
      <dc:creator>rariasn</dc:creator>
      <dc:date>2010-06-10T10:40:23Z</dc:date>
    </item>
  </channel>
</rss>

