banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

CentOS6.x/7.xのNginxシステムサービスの設定

Nginx をソースコードからコンパイルしてインストールする場合、yum を使用してインストールするよりも手間がかかります。CentOS のシステムサービスを自分で設定する必要があります。CentOS のシステムサービスとして Nginx を設定する場合、プロセス管理のためにまず pid を設定し、セキュリティ上の理由から nginx の実行ユーザーを変更することをおすすめします。

nginx のメインプロセス用に nginx.pid ファイルを作成します。

touch /usr/local/nginx/logs/nginx.pid

conf/nginx.conf を編集して、pid と user を設定します。

user nobody;
pid logs/nginx.pid;

CentOS6.x で nginx システムサービスを設定するには、/etc/init.d/nginx ファイルを作成します。

touch /etc/init.d/nginx
chmod 755 /etc/init.d/nginx

/etc/init.d/nginx ファイルに以下の内容を書き込みます。このファイルは yum でインストール後のファイルから取得し、nginx のパスを自分で修正する必要があります。nginx="/usr/local/nginx/sbin/nginx” NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf”

#!/bin/sh

#

nginx - このスクリプトは nginx デーモンを開始および停止します#

#

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 binary#

nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)

config file#

NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"

[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx

lockfile=/var/lock/subsys/nginx

start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
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
killall -9 nginx
}

restart() {
configtest || return $?
stop
sleep 1
start
}

reload() {
configtest || return $?
echo -n $"Reloading $prog: "
killproc $nginx -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

Service を使用して nginx サービスを管理します。

nginx サービスを開始します。
/etc/init.d/nginx start
service nginx start

起動時に設定する#

chkconfig nginx on

CentOS7.x で nginx システムサービスを設定するには、/lib/systemd/system/nginx.service ファイルを作成します。

touch /lib/systemd/system/nginx.service
chmod 755 /lib/systemd/system/nginx.service

nginx.service に以下の内容を書き込みます。

[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
#PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/sbin/nginx -s reload
ExecStop=/usr/local/sbin/nginx -s stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target

systemctl を使用して nginx のメインプロセスをデーモン化する場合、PIDFile を設定できます。#PIDFile=/usr/local/nginx/logs/nginx.pid

最後に、systemctl daemon-reload を実行します。

# Service の設定をリロード
systemctl daemon-reload

systemctl を使用して nginx.service を管理します。

nginx サービスを開始します。
systemctl start nginx.service

起動時に設定する#

systemctl enable nginx.service

読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。