linux版本:CentOS7 64位html
【yum 安裝最新版nginx:http://www.javashuo.com/article/p-fzqukxuy-nn.html】linux
在安裝nginx前首先要確認系統中安裝了gcc、pcre-devel、zlib-devel、openssl-devel。nginx
Linux下檢查是否安裝過某軟件包:http://www.cnblogs.com/xxoome/p/5866553.htmlvim
安裝命令:瀏覽器
yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
nginx下載地址:https://nginx.org/download/服務器
下載「nginx-1.9.9.tar.gz」,移動到/usr/local/下。tcp
## 解壓 tar -zxvf nginx-1.9.9.tar.gz ##進入nginx目錄 cd nginx-1.9.9
## 配置
./configure --prefix=/usr/local/nginx
# make
make
make install
OK,如今能夠執行make 了。 測試
執行make、make install命令spa
測試是否安裝成功3d
# cd到剛纔配置的安裝目錄/usr/loca/nginx/
./sbin/nginx -t
錯誤信息:
nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (2: No such file or directory)
2016/09/13 19:08:56 [emerg] 6996#0: open() "/usr/local/nginx/logs/access.log" failed (2: No such file or directory)
緣由分析:nginx/目錄下沒有logs文件夾
解決方法:
mkdir logs chmod 700 logs
正常狀況的信息輸出:
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
啓動nginx
cd /usr/local/nginx/sbin ./nginx //啓動nginx
在瀏覽器中輸入服務器的ip地址,如:192.168.1.12
很不幸,打不開連接。下面進行緣由排查:
說明服務器的80端口是打不開的。
由於我使用的linux系統版本是CentOS7,因此能夠在服務器中執行以下命令來驗證》》
firewall-cmd --query-port=80/tcp
顯然80端口沒有開啓。
下面咱們開啓80端口:
firewall-cmd --add-port=80/tcp --permanent
#重啓防火牆
systemctl restart firewalld
--permanent #永久生效,沒有此參數重啓後失效
刷新瀏覽器
====================== 分割線 ====================
配置完畢!
二、配置nginx開機自啓動
vim /etc/rc.d/rc.local