cat > nginx.sh <
#停止apache,避免搶占埠號
#建立nginx執行賬戶,非登入使用者,不建立家目錄
useradd -m -s /sbin/nologin nginx
#安裝依賴包
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel gcc gcc-c
++ make cmake
#解壓nginx原始碼包
tar xf nginx-1.10.3.tar.gz
#進入到解壓後的包
cd nginx-1.10.3
#指定安裝資訊,和模組
#啟動/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
#寫入開機啟動
echo "/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf" >> /etc/r
c.local
#檢視執行埠,確定安裝成功
netstat -tanp|grep 80
eofchmod +x nginx.sh
需要提前準備nginx原始碼包在指令碼執行目錄下!
centos7安裝nginx與nginx配置檔案
yum install gcc c nginx原始碼編譯需要 yum install y pcre pcre devel nginx 的 http 模組使用 pcre 來解析正規表示式yum install y zlib zlib devel nginx 使用zlib對http包的內容進行gzipy...
CentOS 7 Nginx 控制指令碼
傳送門 2 乾貨 相信看了準備活動,基本上就會了,這個比起下面那個方法實在是簡單多了直接上指令 sudo vi usr lib systemd system nginx.service 輸入下面內容,並儲存 unit description nginx high performance web se...
CentOS7 Nginx基本操作
我初學nginx伺服器配置,有些操作記不住,所以總結一下放一起。根據學習使用的情況,內容會不定期更新。yum安裝nginx的配置檔案目錄 etc nginx 編譯安裝的nginx的配置檔案目錄 usr local nginx conf 無論是如何安裝的nginx,配置檔案的修改方式都是一樣的,只需要...