知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Linux系统中加入自定义Shell为系统服务

发布时间:2014-09-05 17:30:48作者:知识屋

 

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

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜