一、編譯安裝
./configure
--prefix=/usr
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx_1_6/nginx
--conf-path=/etc/nginx_1_6/nginx.conf-- log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/var/run/nginx/nginx.pid
--lock-path=/var/lock/nginx.lock。 http_gzip_static_module
--http-client-body-temp-path=/var/tmp/nginx/client/
--http-proxy-temp-path=/var/tmp/nginx/proxy/
--http-fastcgi- temp-path=/var/tmp/nginx/fcgi/
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi
--http-scgi-temp-path=/var/tmp/nginx/ scgi
--with-pcre --with-file-aio
編譯過程中,會出現找不到類別函式庫的問題,先裝好類別函式庫,再重複執行就好了
二、測試NGINX環境
執行以下語句
$ sudo /etc/init.d/nginx configtest
看到以下提示就說明已經可以具備了啟動所有的環境
Testing nginx configuration:錯誤是這樣的
在啟動nginx之前還需要添加nginx用戶組,否則會提示
<span>[</span>emerg<span>]</span>: getpwnam<span>(</span>“nginx”<span>)</span> failed
登入後複製
<span>sudo</span> adduser <span>--system</span><span>--no-create-home</span><span>--disabled-password</span><span>--group</span> nginx
登入後複製
|
三、啟動NGINX
啟動NGINX
sudo /etc/init.d/nginx start
看到以下提示說明啟動成功 | Starting nginx: nginx.
以上就介紹了NGINX編譯安裝及配置,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。