gpt4 book ai didi

linux - Nginx 无法启动。/usr/sbin/nginx 和/var/run/nginx.pid 不存在

转载 作者:太空宇宙 更新时间:2023-11-04 03:47:37 25 4
gpt4 key购买 nike

我尝试使用 Nginx /etc/init.d/nginx start 。它以值 0 退出,否则绝对不执行任何操作,因为 /usr/sbin/nginx不存在。

这里是/etc/init.d/nginx :

#!/bin/sh

### BEGIN INIT INFO
# Provides: nginx
# Required-Start: $local_fs $remote_fs $network $syslog $named
# Required-Stop: $local_fs $remote_fs $network $syslog $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the nginx web server
# Description: starts nginx using start-stop-daemon
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/nginx
NAME=nginx
DESC=nginx

# Include nginx defaults if available
if [ -r /etc/default/nginx ]; then
. /etc/default/nginx
fi

test -x $DAEMON || exit 0

set -e

. /lib/lsb/init-functions

# We made the awk expression more precise:
# https://code.google.com/p/phusion-passenger/issues/detail?id=1060
PID=$(awk -F'[ \t;]+' '/[^#]\<pid/ {print $2}' /etc/nginx/nginx.conf)
if [ -z "$PID" ]
then
PID=/var/run/nginx.pid
fi

# Check if the ULIMIT is set in /etc/default/nginx
if [ -n "$ULIMIT" ]; then
# Set the ulimits
ulimit $ULIMIT
fi

test_nginx_config() {
$DAEMON -t $DAEMON_OPTS >/dev/null 2>&1
retvar=$?
if [ $retvar -ne 0 ]
then
exit $retvar
fi
}

start() {
start-stop-daemon --start --quiet --pidfile $PID \
--retry 5 --exec $DAEMON --oknodo -- $DAEMON_OPTS
}

stop() {
start-stop-daemon --stop --quiet --pidfile $PID \
--retry 5 --oknodo --exec $DAEMON
}

case "$1" in
start)
test_nginx_config
log_daemon_msg "Starting $DESC" "$NAME"
start
log_end_msg $?
;;

stop)
log_daemon_msg "Stopping $DESC" "$NAME"
stop
log_end_msg $?
;;

restart|force-reload)
test_nginx_config
log_daemon_msg "Restarting $DESC" "$NAME"
stop
sleep 1
start
log_end_msg $?
;;

reload)
test_nginx_config
log_daemon_msg "Reloading $DESC configuration" "$NAME"
start-stop-daemon --stop --signal HUP --quiet --pidfile $PID \
--oknodo --exec $DAEMON
log_end_msg $?
;;

configtest|testconfig)
log_daemon_msg "Testing $DESC configuration"
if test_nginx_config; then
log_daemon_msg "$NAME"
else
exit $?
fi
log_end_msg $?
;;

status)
status_of_proc -p $PID "$DAEMON" nginx
;;

*)
echo "Usage: $NAME {start|stop|restart|reload|force-reload|status|configtest}" >&2
exit 1
;;
esac

exit 0

我看到它以值 0 退出,因为 test -x $DAEMON || exit 0线。如果我注释掉该行,那么脚本将在 test_nginx_config() 内突然停止。当它运行不存在的守护进程( /usr/sbin/nginx )时,该函数会被调用。没有/usr/local/nginx/目录,无论其值(value)如何。

我在这方面完全是新手,所以可能会发生一些愚蠢的简单事情,但我只需要启动它。任何帮助将不胜感激。

最佳答案

好吧,如果这是您的启动脚本并且 nginx 曾经使用它,那么 Nginx 已被某些人或某人删除。

关于linux - Nginx 无法启动。/usr/sbin/nginx 和/var/run/nginx.pid 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27553628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com