LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   restarting of services/daemons (https://www.linuxquestions.org/questions/linux-newbie-8/restarting-of-services-daemons-17676/)

coopergr 04-04-2002 09:17 AM

restarting of services/daemons
 
hey guys,

does anyone know of the quickest way to start a daemon/service on restart - up until now I have been doing it manually ??

much appreciated ... :)

Mik 04-04-2002 09:23 AM

If there is a script in /etc/init.d then you can usually call the script with the parameters start/stop/restart.
Ex:
/etc/init.d/proftpd restart

The above command would restart my ftp server.
If you want these services to be started at boot then you should add links in the /etc/rcX.d directories for the proper runlevel.
They are named Sxxxscriptname the S means to start the server the xxx is the number which decides when it's started and the scriptname is just a logical name.

Most decent distributions have gui's to help you get these things done but don't ask me about those because I've never used them.

coopergr 04-04-2002 09:27 AM

restarting daemons
 
great thanks a lot for that - I had done it with Linuxconf up until now but was curious as to how to do it manually.

Regards,

Sixpax 04-04-2002 08:23 PM

When I want to add something to my bootup, I usually just copy one of the existing scripts in /etc/rc.d/init.d and modify/rename it. Then create links to start/kill it in the runlevel dirs, as Mik pointed out. It's pretty simple actually.


All times are GMT -5. The time now is 05:40 AM.