标签:http ar sp art c linux r bs as
如何让Linux系统一启动就启动服务程序?
在 /etc/rc.d/init.d/ 目录下放置程序启动脚本。如 /etc/rc.d/init.d/ 下的httpd,这是个脚本程序。
cd /etc/rc.d/init.d/ ./httpd start
相当于执行:
service httpd start
其实 service 会在 /etc/rc.d/init.d/ 中找对应的脚本程序,并执行。
/etc/rc.d/init.d/httpd 脚本程序接受 start, stop 等参数。
(等续……)
标签:http ar sp art c linux r bs as
原文地址:http://my.oschina.net/hevakelcj/blog/317182