Nginx 기본 설치 설정

1577 단어 nginx
설치 하 다.
# yum install pcre* -y
# tar xf nginx-1.2.1.tar.gz
# cd nginx-1.2.1
# ./configure --with-http_stub_status_module --prefix=/usr/local/nginx --with-http_gzip_static_module
# make && make install
[root@server ~]# cd /usr/local/nginx/
[root@server nginx]# ls
conf html logs sbin
[root@server nginx]# ./sbin/nginx -V //-V         
nginx version: nginx/1.2.1
configure arguments: --with-http_stub_status_module --prefix=/usr/local/nginx --with-http_gzip_static_module
//--with-http_stub_status_module -->   NginxStatus,   Nginx     
//--with-http_gzip_static_module -->                 
[root@server nginx]# 
[root@server nginx]# ./sbin/nginx -t //          
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@server nginx]#

시작, 닫 기, 다시 시작
시동 을 걸다
[root@server nginx]# ./sbin/nginx
[root@server nginx]# ps -e | grep nginx
7531 ? 00:00:00 nginx
7532 ? 00:00:00 nginx

닫다
--> kill -XXX pid
[root@server nginx]# ps -ef | grep "nginx: master process" | grep -v "grep" | awk -F' ' '{print $2}'
7531
[root@server nginx]# cat /usr/local/nginx/logs/nginx.pid
7531
[root@server nginx]#

kill 을 사용 하면 됩 니 다.
다시 시작
[root@server nginx]# kill -HUP `cat /usr/local/nginx/logs/nginx.pid `

좋은 웹페이지 즐겨찾기