Linux中加入自定义shell为系统服务
Red Hat自带的Apache和PHP有点怪,所以卸载了。
重新源代码安装好了Apache+PHP之后感觉少了开机自动启动有点不爽。
直接加入到启动脚本里也不是太好。
所以
1. [root@localhost ~]# cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
2. [root@localhost ~]# vi /etc/init.d/httpd
3. 在第二行加入(必须,否则无法加入)
# chkconfig: 2345 85 15
# description: httpd is web server(此处为描述)。
说明:2345表示在2345这四种启动级别里面加载这个服务,85表示启动(开机时)顺序号,15表示关闭(关机时)顺序号。
4. [root@localhost ~]# chkconfig -add httpd
5. [root@localhost ~]# chkconfig --level 35 httpd on
就这样OK啦。
相关推荐
farwang 2020-11-25
星愿心愿 2020-11-24
tianhuak 2020-11-24
zhjn0 2020-11-24
昭君出塞 2020-11-23
bluecarrot 2020-11-23
linuxwcj 2020-10-21
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
waterhorse 2020-09-19
MRFENGG 2020-11-11
rainandtear 2020-10-30
kyssfanhui 2020-10-20
liuhangtiant 2020-10-20