nginx的安裝和配置

2021-09-10 17:24:37 字數 2535 閱讀 6232

第一次使用csdn,記錄一下自己遇到的問題,以後說不定就能用到了

1.安裝g++a

sudo apt-get install g++

2.使用apt直接安裝

sudo apt-get install nginx

3.啟動

service nginx start

cd  /usr/local/src/ 

wget

wget

wget

wget

安裝c++編譯環境

yum install gcc-c++  或者  apt-get

install g++

中間需要確認一次, 輸入: y

安裝nginx及相關元件安裝openssl:

tar zxvf openssl-fips-2.0.10.tar.gz

cd openssl-fips-2.0.10

./config &&

make

&&make

install

cd /usr/local/src/ 或者 cd

.. 回到src資料夾中

安裝pcre: tar zxvf pcre-8.40.tar.gz

cd pcre-8.40

./configure &&

make

&&make

install

cd /usr/local/src/ 或者 cd

.. 回到src資料夾中

安裝zlib: tar zxvf zlib-1.2.11.tar.gz

cd zlib-1.2.11

./configure &&

make

&&make

install

cd /usr/local/src/ 或者 cd

.. 回到src資料夾中

安裝nginx : tar zxvf nginx-1.10.2.tar.gz

cd nginx-1.10.2

./configure &&

make

&&make

install

先找到nginx的安裝位置, 輸入:

whereis nginx    # 得到路徑 例如: /usr/local/nginx
進入得到的路徑:

cd /usr/local/nginx
啟動 :

/usr/local/nginx/sbin/nginx 

或者

cd /usr/local/nginx/sbin/ 輸入: nginx 或 ./nginx

檢視啟動狀態:

ps -aux |

grep nginx 出現三條記錄就表示已經啟動成功

如果啟動成功, 不改配置檔案開啟自己的網域名稱也能看到乙個預設頁面, 說明網域名稱已經繫結成功​​

進入nginx配置資料夾

whereis nginx    # 得到路徑 例如: /usr/local/nginx

cd /usr/local/nginx

開啟配置檔案

vim nginx.conf
​​找到如圖所示的地方, 位置和檔名稱改為自己需要展示的網頁

啟動

/usr/local/nginx/sbin/nginx
停止/重啟

/usr/local/nginx/sbin/nginx -s stop(quit、reload)
命令幫助

/usr/local/nginx/sbin/nginx -h
驗證配置檔案

/usr/local/nginx/sbin/nginx -t
配置檔案

vim /usr/local/nginx/conf/nginx.conf
檢視當前系統版本, 輸入:

cat /etc/redhat-release 或 : lsb_release -a

Nginx的安裝和配置

yum y instll gcc gcc c autoconf automake 安裝nginx 依賴庫yum y install zlib zlib devel openssl openssl devel pcre pcre devel編譯安裝 tar zxvf nginx 1.9.1.tar.g...

nginx的安裝和配置

安裝nginx cd usr local src wget wget wget wget 2.安裝c 編譯環境 yum install gcc c 或者 apt get install g 中間需要確認一次,輸入 y 3.安裝nginx及相關元件 安裝openssl tar zxvf openssl...

nginx 安裝和配置

nginx安裝 step1 在modules目錄下建立nginx目錄 root master mkdir opt modules nginx root master wget step3 解壓到指定目錄 root master tar zxf tengine 2.0.2.tar.gz opt mod...