Re: [CentOS] # chkconfig: kill at run level 3

2010-12-06 Thread Brunner, Brian T.
-Original Message- From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf Of Robert Spangler Sent: Sunday, December 05, 2010 10:51 AM To: CentOS mailing list Subject: Re: [CentOS] # chkconfig: kill at run level 3 On Friday 03 December 2010 19:30, Michael

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-06 Thread Michael D. Berger
On Mon, 06 Dec 2010 01:30:12 -0500, Nico Kadel-Garcia wrote: On Sun, Dec 5, 2010 at 10:46 PM, Michael D. Berger m_d_berger_1...@yahoo.com wrote: On Sun, 05 Dec 2010 10:50:53 -0500, Robert Spangler wrote: On Friday 03 December 2010 19:30, Michael D. Berger wrote: [...] Check

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-06 Thread Michael D. Berger
On Mon, 06 Dec 2010 11:38:49 -0500, Brunner, Brian T. wrote: [... The number after the S and K determine the order in which they're run. S01 starts things which S02-S99 might require; S02 might depend on S01 and provide service the S03-S99 stuff requires. And, so on. The K scripts

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-05 Thread Robert Spangler
On Friday 03 December 2010 19:30, Michael D. Berger wrote: In the control script of my daemon in /etc/init.d?, I have # chkconfig: 35 97 3 The result of this is that I have links: /etc/rc.d/rc1.d/K03... /etc/rc.d/rc3.d/S97... /etc/rc.d/rc5.d/S97... As mentioned in a

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-05 Thread Nico Kadel-Garcia
On Sun, Dec 5, 2010 at 10:50 AM, Robert Spangler mli...@zoominternet.net wrote: On Friday 03 December 2010 19:30, Michael D. Berger wrote:  In the control script of my daemon in /etc/init.d?, I have     # chkconfig: 35 97 3  The result of this is that I have links:    

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-05 Thread Michael D. Berger
On Sun, 05 Dec 2010 10:50:53 -0500, Robert Spangler wrote: On Friday 03 December 2010 19:30, Michael D. Berger wrote: [...] Check /etc/rc.d/rc6.d and insure that you have K??yourscriptname in there. It looks like your script demon was setup to be run but was never properly setup to be

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-05 Thread Nico Kadel-Garcia
On Sun, Dec 5, 2010 at 10:46 PM, Michael D. Berger m_d_berger_1...@yahoo.com wrote: On Sun, 05 Dec 2010 10:50:53 -0500, Robert Spangler wrote: On Friday 03 December 2010 19:30, Michael D. Berger wrote: [...] Check /etc/rc.d/rc6.d and insure that you have K??yourscriptname in there.  It

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-04 Thread Nico Kadel-Garcia
On Fri, Dec 3, 2010 at 7:30 PM, Michael D. Berger m_d_berger_1...@yahoo.com wrote: In the control script of my daemon in /etc/init.d?, I have   # chkconfig: 35 97 3 The result of this is that I have links:   /etc/rc.d/rc1.d/K03...   /etc/rc.d/rc3.d/S97...   /etc/rc.d/rc5.d/S97... As

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-04 Thread Keith Roberts
On Sat, 4 Dec 2010, Michael D. Berger wrote: To: centos@centos.org From: Michael D. Berger m_d_berger_1...@yahoo.com Subject: [CentOS] # chkconfig: kill at run level 3 In the control script of my daemon in /etc/init.d?, I have # chkconfig: 35 97 3 The result of this is that I have

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-04 Thread Michael D. Berger
On Sat, 04 Dec 2010 15:25:47 +, Keith Roberts wrote: [...] Please see this old SuSE documentation for a good description of the Linux boot process: http://linuxmafia.com/linux/suse-linux-internals/part2.html [...] Will this SuSE documentation be correct for CentOS, which is RedHat?

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-04 Thread RedShift
On 12/04/10 21:42, Michael D. Berger wrote: On Sat, 04 Dec 2010 15:25:47 +, Keith Roberts wrote: [...] Please see this old SuSE documentation for a good description of the Linux boot process: http://linuxmafia.com/linux/suse-linux-internals/part2.html [...] Will this SuSE

Re: [CentOS] # chkconfig: kill at run level 3

2010-12-04 Thread Keith Roberts
On Sat, 4 Dec 2010, Michael D. Berger wrote: To: centos@centos.org From: Michael D. Berger m_d_berger_1...@yahoo.com Subject: Re: [CentOS] # chkconfig: kill at run level 3 On Sat, 04 Dec 2010 15:25:47 +, Keith Roberts wrote: [...] Please see this old SuSE documentation for a good

[CentOS] # chkconfig: kill at run level 3

2010-12-03 Thread Michael D. Berger
In the control script of my daemon in /etc/init.d?, I have # chkconfig: 35 97 3 The result of this is that I have links: /etc/rc.d/rc1.d/K03... /etc/rc.d/rc3.d/S97... /etc/rc.d/rc5.d/S97... As mentioned in a previous thread, my complex daemon throws an exception when I shutdown.