目录
安装步骤
配置参数
Nginx常用命令
Nginx作为系统服务
脚本
根据自身实际情况调整脚本后,复制至指定目录下即可
异常问题
env: /etc/init.d/nginx: 没有那个文件或目录
PID file /var/run/nginx.pid not readable (yet?) after start.
参考:
# 下载安装包 wget http://nginx.org/download/nginx-1.18.0.tar.gz # 安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel # 解压缩 tar -zxvf linux-nginx-1.18.0.tar.gz cd nginx-1.18.0/ # 执行配置 ./configure # 编译安装(默认安装在/usr/local/nginx) make make install
其中 执行配置可以指定很多参数
./configure --with-http_ssl_module
--prefix=PATH:指定 nginx 的安装目录
--conf-path=PATH:指定 nginx.conf 配置文件路径
--user=NAME:nginx 工作进程的用户
--with-pcre:开启 PCRE 正则表达式的支持
--with-http_ssl_module:启动 SSL 的支持
--with-http_stub_status_module:用于监控 Nginx 的状态
--with-http-realip_module:允许改变客户端请求头中客户端 IP 地址
--with-file-aio:启用 File AIO
--add-module=PATH:添加第三方外部模块
/usr/local/nginx
/usr/local/nginx/conf/nginx.conf
/usr/local/nginx/logs/access.log
/usr/local/nginx/sbin/nginx
测试配置文件:
/usr/local/nginx/sbin/nginx -t
启动命令:/usr/local/nginx/sbin/nginx
停止命令:/usr/local/nginx/sbin/nginx -s stop/quit
重启命令:/usr/local/nginx/sbin/nginx -s reload
查看进程命令:ps -ef | grep nginx
平滑重启:kill -HUP [Nginx主进程号(即ps命令查到的PID)]
nginx官网已经给我们提供了一个脚本,官网也写的很清楚,将脚本信息保存以nginx命名的文件中并至放至系统/etc/init.d目录下即可
https://www.nginx.com/resources/wiki/start/topics/examples/redhatnginxinit/
#!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/local/nginx/sbin/nginx" prog=$(basename $nginx) NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf" [ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx lockfile=/var/lock/subsys/nginx make_dirs() { # make required directories user=`$nginx -V 2>&1 | grep "configure arguments:.*--user=" | sed 's/[^*]*--user=\([^ ]*\).*/\1/g' -` if [ -n "$user" ]; then if [ -z "`grep $user /etc/passwd`" ]; then useradd -M -s /bin/nologin $user fi options=`$nginx -V 2>&1 | grep 'configure arguments:'` for opt in $options; do if [ `echo $opt | grep '.*-temp-path'` ]; then value=`echo $opt | cut -d "=" -f 2` if [ ! -d "$value" ]; then # echo "creating" $value mkdir -p $value && chown -R $user $value fi fi done fi } start() { [ -x $nginx ] || exit 5 [ -f $NGINX_CONF_FILE ] || exit 6 make_dirs echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { configtest || return $? stop sleep 1 start } reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $prog -HUP retval=$? echo } force_reload() { restart } configtest() { $nginx -t -c $NGINX_CONF_FILE } rh_status() { status $prog } rh_status_q() { rh_status >/dev/null 2>&1 } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}" exit 2 esac
脚本命令如上,有2个配置项需要根据实际情况进行相应调整。
nginx执行文件路径,已调整为本例中路径
nginx="/usr/local/nginx/sbin/nginx"
nginx配置文件,已调整为本例中路径
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
cp nginx /etc/init.d/ # 更改/etc/init.d/nginx权限 chmod 755 /etc/init.d/nginx # 添加nginx服务为系统服 chkconfig --add nginx
添加成功后就可以执行service nginx start、stop、restart、status等操作了。
service nginx start #启动
service nginx stop #停止
service nginx status #服务状态
service nginx restart #重启
因为文件格式为doc,Linux不能识别导致问题的发生。
- 解法1、把文件内容复制出来,然后把之前的/etc/init.d/nginx删除,用 vi /etc/init.d/nginx再建一个,再把内容复制进去
- 解法2、通过dos2unix是将Windows格式文件转换为Unix、Linux格式的实用命令。Windows格式文件的换行符为\r\n ,而Unix&Linux文件的换行符为\n. dos2unix命令其实就是将文件中的\r\n 转换为\n。
既然pid文件无法读取到,那我这边就将配置文件中pid的路径调整至该目录下即可。
或者将你logs目录下的nginx.pid文件复制到/var/run/目录里一份就好了
https://www.nginx.com/resources/wiki/start/topics/examples/redhatnginxinit/