基础配置步骤
- 编辑服务脚本 xxxx(脚本名),增加内容(要在服务脚本中实现POSIX规范中的函数:start() stop()等),命令:
vim /etc/init.d/xxxx
- 给脚本增加可执行权限,命令:
chmod a+x /etc/init.d/xxxx
- 注册xxxx服务名,命令:
chkconfig --add xxxx
- 配置系统启动时该脚本默认启动/停止,命令:
chkconfig xxxx on/off
- 列出当前的服务和他们的配置,命令:
chkconfig --list
脚本参考
#!/bin/bash
#chkconfig: 2345 80 90
#description:init_server
nginx
redis /opt/redis/redis.conf
php-fpm
本文由 陌上花开 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: Feb 27, 2020 at 11:56 am