<?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: why normal user can start cron daemon? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731944#M836489</link>
    <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;try to use top- command to check out if you have zombie- processes on your system. If you use ps command to find the cron processes, do the following, find out the parent process for your cron processes, using the PPID. This shows you which process started the children processes. Try to kill these parent processes also.&lt;BR /&gt;&lt;BR /&gt;Allways stay on the bright side of life!&lt;BR /&gt;&lt;BR /&gt;Peter</description>
    <pubDate>Mon, 27 May 2002 09:28:09 GMT</pubDate>
    <dc:creator>Peter Kloetgen</dc:creator>
    <dc:date>2002-05-27T09:28:09Z</dc:date>
    <item>
      <title>why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731939#M836484</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;When I do ps -ef|grep cron,the output is&lt;BR /&gt;&lt;BR /&gt;root  996   1   May 06   /usr/sbin/cron  &lt;BR /&gt;ypcoe 29916 996 ? /usr/sbin/cron&lt;BR /&gt;ypcoe 29956 996 ? /usr/sbin/cron&lt;BR /&gt;ypcoe 29978 996 ? /usr/sbin/cron&lt;BR /&gt;&lt;BR /&gt;and I can not kill them.&lt;BR /&gt;&lt;BR /&gt;any idea?&lt;BR /&gt;</description>
      <pubDate>Mon, 27 May 2002 07:12:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731939#M836484</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-27T07:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731940#M836485</link>
      <description>&lt;BR /&gt;As root do;&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/cron stop&lt;BR /&gt;&lt;BR /&gt;Then if cron is still running manually kill the first cron - pid 996, then the others should die or else you may have to kill -9 them also.</description>
      <pubDate>Mon, 27 May 2002 07:30:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731940#M836485</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-05-27T07:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731941#M836486</link>
      <description>thanks!&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/cron stop works.&lt;BR /&gt;but others are still running, and even kill -9 &lt;BR /&gt;can not.&lt;BR /&gt;&lt;BR /&gt;I found there is some info in syslog.log&lt;BR /&gt;&lt;BR /&gt;xntpd [926]:system event 1: system restart&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;Authentication failure for SNMP req  from xxx&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;what does this mean?</description>
      <pubDate>Mon, 27 May 2002 07:39:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731941#M836486</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-27T07:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731942#M836487</link>
      <description>can I stop xntpd?</description>
      <pubDate>Mon, 27 May 2002 07:45:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731942#M836487</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-27T07:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731943#M836488</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;look at /usr/adm/cron/log&lt;BR /&gt;&lt;BR /&gt;        /usr/spool/cron/crontabs&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The only way that cron could start another cron, is if it is in the root crontab file. &lt;BR /&gt;check your root crontab file for a cron entry. &lt;BR /&gt;If you don't find one, check your other crontab files for the "cron" entry. &lt;BR /&gt;As root try &lt;BR /&gt;grep cron /var/spool/cron/crontabs/* &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would not stop xntpd since this is to do with system time . see man xntpd&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                  Steve Steel</description>
      <pubDate>Mon, 27 May 2002 08:07:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731943#M836488</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-05-27T08:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731944#M836489</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;try to use top- command to check out if you have zombie- processes on your system. If you use ps command to find the cron processes, do the following, find out the parent process for your cron processes, using the PPID. This shows you which process started the children processes. Try to kill these parent processes also.&lt;BR /&gt;&lt;BR /&gt;Allways stay on the bright side of life!&lt;BR /&gt;&lt;BR /&gt;Peter</description>
      <pubDate>Mon, 27 May 2002 09:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731944#M836489</guid>
      <dc:creator>Peter Kloetgen</dc:creator>
      <dc:date>2002-05-27T09:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731945#M836490</link>
      <description>check for this directory permissions.&lt;BR /&gt;&lt;BR /&gt;/var/adm/cron&lt;BR /&gt;&lt;BR /&gt;I have the permission of the files in that directory&lt;BR /&gt;&lt;BR /&gt;prw-------   1 root       root             0 Apr  9 10:02 FIFO&lt;BR /&gt;-rw-r--r--   1 root       root         28780 May 23 11:01 OLDlog&lt;BR /&gt;-r--r--r--   1 bin        bin             18 Nov  7  1997 at.allow&lt;BR /&gt;-r--r--r--   1 bin        bin             14 Nov  7  1997 cron.allow&lt;BR /&gt;-rw-r--r--   1 root       root        135609 May 27 12:45 log&lt;BR /&gt;-r--r--r--   1 bin        bin             17 Nov  7  1997 queuedefs       &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 27 May 2002 09:45:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731945#M836490</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-05-27T09:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731946#M836491</link>
      <description>thanks, but still the same.&lt;BR /&gt;&lt;BR /&gt;any idea?&lt;BR /&gt;</description>
      <pubDate>Tue, 28 May 2002 00:00:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731946#M836491</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-28T00:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731947#M836492</link>
      <description>do I need some patch?</description>
      <pubDate>Tue, 28 May 2002 00:27:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731947#M836492</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-28T00:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731948#M836493</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It looks as though other users are allowed to &lt;BR /&gt;have cron access and run jobs through this.&lt;BR /&gt;Have a look in /var/adm/cron/cron.allow&lt;BR /&gt;If the user is listed they are allowed to &lt;BR /&gt;run cron jobs. Is this user an application&lt;BR /&gt;user or normal user? If it is a normal user,&lt;BR /&gt;do they really need this access? &lt;BR /&gt;What output do you have now for cron if&lt;BR /&gt;you lookup the processes?&lt;BR /&gt;&lt;BR /&gt;# ps -ef | grep cron</description>
      <pubDate>Tue, 28 May 2002 00:50:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731948#M836493</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-05-28T00:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731949#M836494</link>
      <description>that user needs to run cron job.&lt;BR /&gt;&lt;BR /&gt;I found there is some info in syslog.log&lt;BR /&gt;&lt;BR /&gt;xntpd [926]:system event 1: system restart&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;Authentication failure for SNMP req from xxx&lt;BR /&gt;&lt;BR /&gt;what does this mean?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 28 May 2002 01:02:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731949#M836494</guid>
      <dc:creator>Michael_33</dc:creator>
      <dc:date>2002-05-28T01:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: why normal user can start cron daemon?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731950#M836495</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could well do with patching? What is your&lt;BR /&gt;current patch level? If you don't know here's&lt;BR /&gt;how and post the results.&lt;BR /&gt;&lt;BR /&gt;# swlist -a revision&lt;BR /&gt;&lt;BR /&gt;The two messages refer to two different things.&lt;BR /&gt;The first in relation to xntpd, seems that the&lt;BR /&gt;deamon has been restarted, or this is part of your standard system startup message. Can you confirm how long your system has been up? The second message relates to an authentication message from ip x.x.x.x for an snmp trap. This could be nothing but do you run anything like Network node manager or openview tools?</description>
      <pubDate>Tue, 28 May 2002 01:49:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/why-normal-user-can-start-cron-daemon/m-p/2731950#M836495</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-05-28T01:49:56Z</dc:date>
    </item>
  </channel>
</rss>

