【原】Linux开机自启动脚本配置
in 备忘 with 0 comment

【原】Linux开机自启动脚本配置

in 备忘 with 0 comment

基础配置步骤

  1. 编辑服务脚本 xxxx(脚本名),增加内容(要在服务脚本中实现POSIX规范中的函数:start() stop()等),命令:vim /etc/init.d/xxxx
  2. 给脚本增加可执行权限,命令:chmod a+x /etc/init.d/xxxx
  3. 注册xxxx服务名,命令:chkconfig --add xxxx
  4. 配置系统启动时该脚本默认启动/停止,命令:chkconfig xxxx on/off
  5. 列出当前的服务和他们的配置,命令:chkconfig --list

脚本参考

#!/bin/bash
#chkconfig: 2345 80 90
#description:init_server

nginx

redis /opt/redis/redis.conf

php-fpm
Comments are closed.