systemctl start nginx timeout 시작 이 끝 날 때마다 nginx 가 자동 으로 멈 춥 니 다.
2005 단어 Linux
[Unit]
Description=nginx
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
ExecQuit=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
시작 할 때마다 nginx 가 자동 으로 멈 춥 니 다. 로 그 는 다음 과 같 습 니 다.
[root@wsxdream system]# systemctl status nginx.service
● nginx.service - nginx
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: failed (Result: timeout) since Sat 2018-11-24 15:12:16 CST; 3min 54s ago
Process: 23355 ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf (code=exited, status=0/SUCCESS)
Process: 23353 ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf (code=exited, status=0/SUCCESS)
Nov 24 15:10:46 wsxdream systemd[1]: Starting nginx...
Nov 24 15:10:46 wsxdream nginx[23353]: nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
Nov 24 15:10:46 wsxdream nginx[23353]: nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
Nov 24 15:10:46 wsxdream systemd[1]: PID file /run/nginx.pid not readable (yet?) after start.
Nov 24 15:12:16 wsxdream systemd[1]: nginx.service start operation timed out. Terminating.
Nov 24 15:12:16 wsxdream systemd[1]: Failed to start nginx.
Nov 24 15:12:16 wsxdream systemd[1]: Unit nginx.service entered failed state.
Nov 24 15:12:16 wsxdream systemd[1]: nginx.service failed.
처음에는 중시 하지 않 았 다.
PID file /run/nginx.pid not readable (yet?) after start.
나중에 자 료 를 찾 아 nginx / conf / nginx. conf 의 pid 지정 위치 와 nginx. service 에서 일치 하 게 유지 하고 다시 시작 하면 됩 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
바이너리 파일cat 또는tail, 터미널 디코딩 시 처리 방법cat으로 바이너리 파일을 보려고 할 때 코드가 엉망이 되어 식은땀이 났다. 웹에서 스크롤된 정보의 처리 방법과alias의 설정을 요약합니다. reset 명령을 사용하여 터미널을 재설정합니다.이렇게 하면 고치지 못하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.