nginx linux下的部署

2021-09-08 04:35:46 字數 964 閱讀 9249

一些概念

一 使用xftp將程式上傳到你的linux上

二 安裝gcc

yum-yinstall gcc automake autoconf libtool make

三 安裝g++

yum install gcc gcc-c++

四 解壓nginx安裝包

tar-zxvf nginx-1.8.1.tar.gz

cd nginx-1.8.1

五 make編譯安裝它

./configure

make

make install

六 安裝zlib庫

cd ~

wget

tar -zxvf zlib-1.2.11.tar.gz

cd zlib-1.2.11

./configure  --其中./表示當前目錄下的這個檔案

make

make install

七 安裝ssl

yum -y install openssl openssl-devel

八 安裝pcre

yum -y install pcre-devel

九 安裝nginx

cd ~

./configure

make

make install

十 啟動nginx,測試執行!

啟動服務:/usr/local/nginx/sbin/nginx

重啟服務:/usr/local/nginx/sbin/nginx -s reload

檢視服務:ps -ef | grep nginx

停止服務:kill 22940

檢視配置:vi /usr/local/nginx/conf/nginx.conf

訪問:curl

最後,總算是在centos上成功的部署了nginx,真是得來不易,呵呵 !

Nginx linux下的安裝

我的安裝環境以及nginx版本 ubuntu16 nginx 1.11.3.tar.gz 經過這個嘗試這個版本和我安裝的元件不會衝突,經試驗最新的版本可能不支援元件 nginx的安裝前,先對系統安裝進行更新,然後安裝好依賴庫 apt get update apt get y install make...

Nginx Linux詳細安裝部署教程

nginx是乙個web伺服器也可以用來做負載均衡及反向 使用,目前使用最多的就是負載均衡,下面介紹安裝步驟 root localhost src wget root localhost src wget root localhost src wget root localhost src wget ...

Nginx Linux下部署安裝Nginx

如果是用來做fastdfs的話,nginx只需要安裝到storageserver所在的伺服器即可,用於訪問檔案。我這裡由於是單機,trackerserver和storageserver在一台伺服器上。系統版本 centos 7 nginx nginx 1.13.9 yum install gcc c...