1. 程式人生 > 實用技巧 >【Linux基礎運維】安裝部署nginx

【Linux基礎運維】安裝部署nginx

安裝部署nginx

目錄


方式一:編譯安裝

安裝依賴:yum install -y gcc gcc-c++ make zlib zlib-devel libtool opennssl openssl-devel pcre pcre-devel

nginx的下載連結:http://nginx.org/en/download.html

下載tar解壓縮後,configure、make、make install三步走。

  1. 新增nginx使用者:useradd -s /sbin/nologin -M nginx
  2. 預編譯:./configure --user=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
  3. 預編譯成功後,編譯:make(可以根據CPU核數,新增-j選項加快編譯速度)
  4. 編譯安裝:make install

啟動:/usr/local/nginx/sbin/nginx,或者指定配置檔案:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

方式二:軟體源安裝

使用yum、apt等包管理器安裝

方式三:docker安裝

簡單測試

  • 檢查Nginx配置檔案是否正確:/usr/local/nginx/sbin/nginx -t
  • web訪問nginx