nginx是我們常用的具有反向**和負載均衡的web中介軟體,部署方法主要為yum / apt 等工具和原始碼編譯安裝。
yum源/apt源 安裝一條命令即可解決:
yum install nginx -y
apt-get install nginx -y用此方法的好處是方便快捷,但往往無法去自定義我們需要的nginx模組,故建議原始碼編譯安裝 解壓
# tar -zxf nginx-1.10.3.tar.gz
進入解壓後目錄,根據需求補充configure引數
# ./configure --prefix=deploy_path --with-module=module_path --without-module=module_name其中module_path為需要補充安裝的模組的路徑 ; module_name為預設安裝但是不需要的模組名稱。
注:一般會提示缺少 zlib 、openssl 、pcre模組,可提前下好。
執行make
# make
安裝
# make install
驗證安裝
啟動nginx( 預設監聽80埠,若有http服務衝突可在nginx.conf內修改埠)
# deploy_path/nginx/sbin/nginx
瀏覽器訪問ip:port 出現welcome頁面則部署成功。
nginx 安裝方法
yum 安裝 nginx 非常簡單,就輸入一條命令即可。yum y install nginx 安裝 nginx yum remove nginx 解除安裝 nginx使用 yum 進行 nginx 安裝時,nginx 配置檔案在 etc nginx目錄下。systemctl enable ngin...
ubuntu上安裝nginx的方法
1安裝nginx 安裝nginx sudo apt get update sudo apt get install nginx 2 新增乙個nginx配置檔案 etc nginx conf.d land 80.conf upstream land server 2 nginx配置檔案 etc ngi...
docker下安裝Nginx的方法
一 環程式設計客棧境說明 二 拉取最新的 nginx 映象 拉取映象 docker pull nginx 檢視當前映象 docker images 查詢結果 repository tag image id created size nginx latest 8b89e48b5f15 7 hours ...