>백엔드 개발 >PHP 튜토리얼 >nginx 오류 기록 nginx apache nginx php nginx 다시 쓰기

nginx 오류 기록 nginx apache nginx php nginx 다시 쓰기

WBOY
WBOY원래의
2016-07-29 08:52:101110검색

오류 1: nginx: [emerg] mkdir() "/var/tmp/nginx/client/" 실패(2: 해당 파일 또는 디렉터리 없음)

[root@localhost nginx-1.6.2]# nginx
nginx: [emerg] mkdir() "/var/tmp/nginx/client/" failed (2: No such file or directory)
目录不存在  或权限的问题 下面我们创建一下
[root@localhost nginx-1.6.2]# cd /var/tmp/
[root@localhost tmp]# mkdir -p /var/tmp/nginx/{client,proxy,fastcgi,uwsgi,scgi}
[root@localhost tmp]# nginx
[root@localhost tmp]# ps -ef |grep nginx
root      10711      1  0 17:39 ?        00:00:00 nginx: master process nginx
nginx     10712  10711  0 17:39 ?        00:00:00 nginx: worker process
root      10714   1115  0 17:39 pts/0    00:00:00 grep nginx
[root@localhost tmp]# 

위 내용은 nginx 내용을 포함하여 nginx 오류 기록을 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.