[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Looking for software to keep processes running.
- Subject: [ale] Looking for software to keep processes running.
- From: cfowler at outpostsentinel.com (Chris Fowler)
- Date: Thu Feb 5 11:45:09 2004
- In-reply-to: <[email protected]>
- References: <[email protected]> <1075996738.14266.76.camel@devel> <[email protected]>
Correct. You can use inittab and it will work great.
On Thu, 2004-02-05 at 11:22, Greg Freemyer wrote:
> This is old school, but....
>
> If your programs are meant to run basically anytime the computer is
> running, that is exactly what /etc/inittab is designed for.
>
> Things like login prompts, etc. are run from there.
>
> My question is, why does /etc/inittab seem to be out of favor?
>
> 10 years ago, it was common to install daemon like processes into there.
>
> Now it seems that most daemons use the rc.d approach. I don't mind that
> approach, but it does not monitor and restart daemons so the daemon
> tends to have small parent program like the below that monitor its own
> child and restarts it if it dies.
>
> The only thing I can think of is maybe the rc.d approach is easier to
> upgrade from version to version.
>
> Greg