Mac 플랫폼 nginx 관련 설치 설정
우 리 는 brew 를 통 해 nginx
brew install nginx
를 설치 합 니 다.나 는 설치 과정 에서 작은 문제 가 발생 하여 이러한 오 류 를 보고 했다.
Error: Could not symlink share/man/man8/nginx.8 /usr/local/share/man/man8 is not writable.
위 에서 보면 대체적으로 /usr/local/share/man/man8
이 디 렉 터 리 는 현재 사용자 에 게 쓰기 권한 이 없 기 때문에 우 리 는 이 디 렉 터 리 에 추가 하면 된다.drwxr-xr-x 38 SeanLiu admin 1292 2 13 17:28 man1
drwxr-xr-x 103 SeanLiu admin 3502 2 13 17:28 man3
drwxr-xr-x 7 root admin 238 1 22 18:31 man8
-rw-r--r-- 1 root admin 1583 2 10 08:19 whatis
sudo chown -R \
whoami ` man8 ` brew link nginx
하면 돼 /usr/local/Cellar/nginx/1.10.3
/usr/local/etc/nginx
nginx
nginx: [emerg] bind() to 0.0.0.0:8080 failed (48: Address already in use)
오류 가 발생 하면 8080 포트 가 점용 되 었 습 니 다. 우 리 는 기본 포트 를 수정 하여 오 류 를 피 할 수 있 습 니 다. vim /usr/local/etc/nginx/nginx.conf
server {
listen 8081; # 8081
server_name localhost;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
마지막 저장 다시 실행
/usr/local/Cellar/nginx/1.10.3/html
server {
listen 8081; # 8081
server_name localhost;
#access_log logs/host.access.log main;
location / {
root html; # /Users/xxx/www
index index.html index.htm;
}
그리고 nginx 실행 을 다시 시작 하면 됩 니 다
nginx -s reload
.ps -ef | grep nginx
root 713 1 0 00:15 ? 00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 717 713 0 00:15 ? 00:00:00 nginx: worker process
root 5345 4226 0 15:23 pts/1 00:00:00 grep --color=auto nginx
명령 집행
kill -QUIT 713
`kill -TERM 713` `kill -INT 713`
강제 정지
pkill -9 nginx
nginx -t
다음 설정 이 올 바른 지 확인 nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.