Tagged Questions
0
votes
1answer
63 views
Auto-restart an process when it crashes
I have an app that I need to autostart when the OS starts. I am running in a CentOS 6, so I am using a LSB init script placed in /etc/init.d. So far this is fine and working.
Now....besides that, ...
1
vote
2answers
719 views
Can a service script put inside init.d be called at startup and shutdown?
I'm running Red Hat 5.1. I have a script called sysinit that I added as a service using chkconfig --add sysinit. I have the following set in the file:
#chkconfig 4 01 01
This creates one symlink ...
4
votes
2answers
285 views
Are certain parts of startup scripts necessary or just good practice?
I'm currently exploring creating a startup script in the form of a system process located in the /etc/init.d/ on my Fedora 14 Linux installation. It sounds like the following two lines are bare ...