본문 바로가기

IT

수동으로 설치한 nginx service 에 등록 방법

반응형

1. Service 파일 생성

$ vi /usr/lib/systemd/system/nginx.service

 

[Unit]

Description=The NGINX HTTP and reverse proxy server

After=syslog.target network.target remote-fs.target nss-lookup.target



[Service]

Type=forking

PIDFile=/var/run/nginx.pid

ExecStartPre=/usr/local/nginx/sbin/nginx -t

ExecStart=/usr/local/nginx/sbin/nginx

ExecReload=/usr/local/nginx/sbin/nginx -s reload

ExecStop=/bin/kill -s QUIT $MAINPID

PrivateTmp=true


[Install]

WantedBy=multi-user.target

3.nginx.confg PID 위치 설정

 

cd /usr/local/nginx/conf
vi nginx.conf

worker_processes 1;

pid /var/run/nginx.pid;


.... 

http{

...

}

2. systemctl daemon 재시작

$ systemctl daemon-reload

 

 

3. 정상적으로 Service가 등록되었는지 확인

$ systemctl status nginx

 

 

출처:https://ta-starter.tistory.com/7

'IT' 카테고리의 다른 글

아마존 리눅스 ffmpeg 설치 방법  (0) 2021.09.19
nginx configure 옵션 파라미터  (0) 2021.09.19
nginx rtmp 설치 방법  (0) 2021.09.19
m1에서 Tensorflow 설치  (0) 2021.09.02
React native google login  (0) 2021.07.12