본문 바로가기
WEB/NGINX

3. 기동/중지

by coldplayer83 2023. 5. 22.
728x90
cd ${nginx_home}/sbin

# 기동
./nginx

# 중지
./nginx -s stop (fast shutdown)
./nginx -s quit (graceful shutdown)
./nginx -s reload (reloading the configuration file)
./nginx -s reopen (reopening the log files)

# nginx.conf 문법 검사
./nginx -t

# 버전 확인
./nginx -V

# 프로세스 확인
ps -ef|grep nginx

 

기본 포트 : 80

'WEB > NGINX' 카테고리의 다른 글

4. tomcat 연동  (0) 2023.05.22
2. 1024 이하 포트 사용 설정  (0) 2023.05.22
1. 설치  (0) 2023.05.22