nginx安裝依賴套件
(推薦學習:nginx教學)
nginx安裝依賴GCC、openssl-devel、pcre-devel和zlib-devel軟體庫。
Pcre全名(Perl Compatible Regular Expressions),中文perl相容正規表示式,pcre官方網站。
yum install pcre pcre-devel -y yum install openssl openssl-devel -y
編譯命令
tar -zxf nginx-1.10.1.tar.gz cd nginx-1.10.1/ ./configure --prefix=/data/nginx-1.10.1 --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module useradd nginx -M -s /sbin/nologin make && make install ln -s /data/nginx-1.10.1 /data/nginx
測試nginx設定檔是否正常
/data/nginx/sbin/nginx -t nginx: the configuration file /data/nginx-1.10.1/conf/nginx.conf syntax is ok nginx: configuration file /data/nginx-1.10.1/conf/nginx.conf test is successful
啟動nginx伺服器
/data/nginx/sbin/nginx -t ##检查配置文件 /data/nginx/sbin/nginx ##确定nginx服务 netstat -lntup |grep nginx ## 检查进程是否正常 curl http://localhost ## 确认结果
以上是nginx安裝依賴套件的詳細內容。更多資訊請關注PHP中文網其他相關文章!