CentOS6.x 下 LNMP環境搭建(準備篇)nginx
CentOS6.x 下 LNMP環境搭建(1、安裝 MySQL)vim
CentOS6.x 下 LNMP環境搭建(2、安裝 Nginx)瀏覽器
2.1. 安裝依賴包curl
# rpm -qa pcre* openssl* zlib* <------- 檢查所依賴的包是否已經安裝 zlib-1.2.3-29.el6.x86_64 openssl-1.0.1e-48.el6_8.1.x86_64 pcre-7.8-7.el6.x86_64 # yum -y install pcre-devel openssl-devel zlib-devel
注:其中 pcre 用於 nginx 的 rewrite 模塊tcp
2.2. 添加用戶url
# useradd www -s /sbin/nologin -M
2.3. 安裝.net
# cd /root/src # tar -zxvf nginx-1.6.3.tar.gz && cd nginx-1.6.3 # ./configure \ --prefix=/lnmp/server/nginx-1.6.3 \ --error-log-path=/lnmp/log/nginx/error.log \ --http-log-path=/lnmp/log/nginx/access.log \ --user=www \ --group=www \ --with-http_realip_module \ --with-http_sub_module \ --with-http_ssl_module \ --with-http_stub_status_module \ --with-http_gzip_static_module \ --with-pcre # make # make install # cd /lnmp/server # ln -s /lnmp/server/nginx-1.6.3/ nginx # ls -l
注:編譯安裝過程當中能夠使用命令【# echo $?】檢查configure/make的執行結果,0表示成功rest
2.4. 啓動code
# /lnmp/server/nginx/sbin/nginx -t <------- 檢查配置文件語法 nginx: the configuration file /lnmp/server/nginx-1.6.3//conf/nginx.conf syntax is ok nginx: configuration file /lnmp/server/nginx-1.6.3//conf/nginx.conf test is successful # /lnmp/server/nginx/sbin/nginx <------- 啓動 檢查: # lsof -i :80 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME nginx 38366 root 6u IPv4 93417 0t0 TCP *:http (LISTEN) nginx 38367 nginx 6u IPv4 93417 0t0 TCP *:http (LISTEN) # netstat -tlunp|grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 38366/nginx # wget 127.0.0.1 # curl 127.0.0.1
注:當瀏覽器沒法訪問時,嘗試 SELinux、iptables
2.5. 添加啓動腳本,以後能夠經過 service nginx xxx 方式控制
# vim /etc/init.d/nginx <------- 文件內容見附件 nginx.sh # chmod 755 /etc/init.d/nginx # service nginx Usage: /etc/init.d/nginx {start|stop|reload|restart|configtest} # service nginx configtest <------- 配置文件檢查 nginx: the configuration file /lnmp/server/nginx/conf/nginx.conf syntax is ok nginx: configuration file /lnmp/server/nginx/conf/nginx.conf test is successful # service nginx start <------- 啓動 Starting Nginx: [ OK ]
2.6. 設置開機自啓動
# chkconfig --add nginx # chkconfig nginx on # chkconfig --list|grep nginx nginx 0:off 1:off 2:on 3:on 4:on 5:on 6:off