Questions tagged [chkconfig]
50 questions
0
votes
1 answer
`# probe: true` in /etc/rc.d/init.d/* files on a RedHat system
Some files (e.g. nfs, nfslock, bind) in my /etc/rc.d/init.d/ directory have in their comment header a line such as:
# probe: true
I found that those particular scripts has the probe verb i.e.:
service nfs probe
But this is due to the fact that the…

Chen Levy
- 283
- 3
- 13
0
votes
0 answers
Oracle 19c on Oracle Linux 8, dbora start script ONLY starting when chkconfig sets it to level S99. Any other level like S98, fails to start on reboot
I'm running Oracle 19c on Oracle Linux 8, dbora start script ONLY starting when chkconfig sets it to level S99. Any other level like S98, fails to start on reboot. Regardless of the chkconfig level, the script will run successfully, manually with…

Ryfor
- 1
- 1
0
votes
1 answer
Creating a service on Centos 6 causes it to block on startup display
I'm trying to create a service on Centos 6, but it's executing on the startup console instead of in background, which means it never reaches the user interface - it just hangs on the startup display.
Here is the service:
#!/bin/bash
#
# run red5…

Jack BeNimble
- 194
- 11
-1
votes
3 answers
Restarting Service w/ `chkconfig`?
After running:
sudo chkconfig --add X
sudo chkconfig X on
I ran chkconfig --list X:
$ chkconfig --list X
X 0:off 1:off 2:on 3:on 4:on 5:on 6:off
My understanding is that, after kill -9-ing it, the service will…

Kevin Meredith
- 1,269
- 2
- 15
- 21
-1
votes
1 answer
chkconfig vs /etc/inittab
I had a look at what chkconfig and /etc/inittab - from what I could see both does the same something.
If I am wrong, what is the different and which one I should use for specific requirement?

I'll-Be-Back
- 693
- 3
- 10
- 25