PDA

View Full Version : [ubuntu] How to add Apache to startup with Upstart?



TDK800
September 17th, 2009, 01:56 PM
Previously I did the below to add Apache to startup, what is the procedure with Upstart that replaces init in Karmic?


---------
cp /etc/httpd/bin/apachectl /etc/init.d/

sudo chmod +x /etc/init.d/apachectl


# edit apachectl and add the 2 lines to the top of file leaving the # marks in front

# otherwise "/sbin/chkconfig --add apachectl" command says "service apachectl does not support chkconfig".



nano -w /etc/init.d/apachectl



#!/bin/sh

#

# chkconfig: - 85 15

# description: Apache is a Web server.

#



sudo /usr/sbin/update-rc.d apachectl defaults