然後是去安裝依賴的庫
命令列
yum -y install make gcc gcc-c++ glibc glibc-devel lsof pcre pcre-devel zlib zlib-devel openssl openssl--devel
這是很全,主要看你有沒有安裝過
yum install pcre-devel pcre zlib-devel zlib openssl-devel -y
這個是簡化版少了幾個安裝的庫
到這一步準備工作算是做完了
解壓
# cd /usr/local/src
# tar zxvf nginx-1.8.1.tar.gz
進入目錄
cd /usr/local/src/nginx-1.8.1
1、 配置。通常將軟體安裝在/usr/local/目錄下。
./configure
2、 編譯
make
3、
安裝
make install
順序不能錯。
檢查是否安裝成功
cd /usr/local/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 successfu
這裡安裝就算是告一段落了。
啟動方法:
#方法1
# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
#方法2
# cd /usr/local/nginx/sbin
ps:/usr/local/nginx/conf/nginx.conf 這個 nginx.conf的配置檔案存放路徑。
重啟方法
重啟(首次啟動需:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf)
其後只用 /usr/local/nginx/sbin/nginx -s reload 就可了
這裡我啟動時還碰到了乙個問題
報如下錯誤資訊:
nginx: [emerg] getpwnam("www") failed
修改預設的nginx.conf 檔案內容
其實就是將 #user nobody; 改為 user nobody;
參考部落格:
配置資訊參考:
新伺服器請參考:
阿里雲伺服器搭建 nginx服務
1.安裝nginx軟體所需依賴包 yum install y gcc gcc c autoconf pcre pcre devel make automake wget httpd tools2.配置nginx官方 yum源 root web vim etc yum.repos.d nginx.re...
linux下安裝阿里雲伺服器的nginx
在阿里雲伺服器上安裝nginx中遇到一些問題,現將步驟羅列下,環境是 centos7.4 nginx1.12.2 yum install gcc c pcre perl compatible regular expressions 是乙個perl庫,包括 perl 相容的正規表示式庫。nginx 的...
阿里雲伺服器安裝MySQL服務
1.確保伺服器系統處於最新狀態 root localhost yum y update 若顯示以下內容說明已經更新完成 replaced grub2.x86 64 1 2.02 0.64.el7.centos grub2 tools.x86 64 1 2.02 0.64.el7.centos com...