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

安裝部署nginx


方式一:編譯安裝

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

nginx的下載連接:http://nginx.org/en/download.htmlnginx

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

  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.confweb

方式二:軟件源安裝

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

方式三:docker安裝

簡單測試

  • 檢查Nginx配置文件是否正確:/usr/local/nginx/sbin/nginx -t
  • web訪問nginx
相關文章
相關標籤/搜索