Nginx-实现自启服务 发表于 2021-12-13 更新于 2022-05-26 分类于 学习 本文字数: 603 阅读时长 ≈ 1 分钟 摘要:每次如果重启Linux服务器后,需要手动启动nginx服务,十分繁琐,所以实现nginx随机启动十分必要。 设置nginx自动启动(通过自启脚本实现)创建脚本文件1vim /etc/init.d/start.sh 在脚本中插入一下内容 1234567891011121314151617#!/bin/sh#chkconfig:2345 80 90#decription:auto_runlog_path='/usr/local/logs/autoStart.log';#error information direct to the logexec 2>>$log_path;exec 1>>$log_path;#method for echo message to the logprint(){ echo [`date +"%Y-%m-%d %T"`]: $1>>$log_path;}#main/usr/local/nginx/sbin/nginx;print "启动成功"; 键入:wq! 保存退出。 自启脚本授权1chmod +x /etc/init.d/start.sh 将脚本放入chkconfig中 1chkconfig --add start.sh 代码中使用到的log_path,目前系统是没有的,需要新增。 1mkdir /usr/local/logs 重启服务器12345# 重启reboot #检查nginx是否启动成功ps -ef|grep nginx