Linux--nginx源碼安裝/配置 (2011-11-01 13:58:39)安裝: 現(xiàn)在到http://nginx.org/en/download.html下載最新版本的Nginx并安裝,。- cd /usr/local/src
- wget http://nginx.org/download/nginx-1.0.4.tar.gz
- tar -zxvf nginx-1.0.4.tar.gz
- cd nginx-1.0.4
- ./configure
- --user=www
- --group=www
- --prefix=/usr/share
- --sbin-path=/usr/local/nginx
- --conf-path=/usr/local/nginx/conf/nginx.conf
- --error-log-path=/home/wwwlogs/nginx_error.log
- --http-log-path=/home/wwwlogs/nginx_access.log
- --pid-path=/usr/local/nginx/run/nginx.pid
- --lock-path=/usr/local/nginx/lock/nginx
- --with-http_ssl_module \
- --with-http_realip_module \
- --with-http_addition_module \
- --with-http_sub_module \
- --with-http_dav_module \
- --with-http_flv_module \
- --with-http_gzip_static_module \
- --with-http_stub_status_module \
- --with-http_perl_module \
- --with-mail \
- --with-mail_ssl_module
- make
- make install
為Nginx建立用戶 - /usr/sbin/useradd -c "www user" -s /bin/false -r -d /var/lib/www www
運行Nginx 配置文件在: - /usr/local/nginx/conf/nginx.conf
初始化腳本(用于啟動、停止,、查看狀態(tài)) 當(dāng)你使用源碼編譯安裝Nginx的時候,,管理Nginx非常的不方便,比如啟動Nginx的命令就很長,,這就需要一個初始化腳本來實現(xiàn)諸如使用service nginx start就可以啟動Nginx,。下面我們來一步步配置安裝。 - wget http://www./wp-content/uploads/2011/07/nginx
- mv nginx /etc/rc.d/init.d/
- chmod 755 /etc/rc.d/init.d/nginx
- /etc/rc.d/init.d/nginx status
現(xiàn)在把Nginx加入chkconfig,,并設(shè)置開機(jī)啟動,。 - chkconfig --add nginx
- chkconfig nginx on
啟動、停止,,查看狀態(tài)的命令如下: - service nginx start
- service nginx stop
- service nginx status
|