ubuntu下nginx的安裝

2021-07-04 10:25:34 字數 1916 閱讀 1796

接下來總結nginx的兩種安裝方式,命令安裝和原始碼編譯安裝,整理於網路,記錄下來便於日後檢視

一、nginx的命令安裝:

1、安裝」software-properties-common」包。

sudo apt-get software-properties

-common

2、新增nginx庫到apt-get source中.

sudo add-apt

-repository ppa:nginx/stable

3、安裝nginx:

sudo apt-get install nginx
4、啟動:

sudo /etc/init.d/nginx start
至此,nginx就安裝完成了。

二、nginx原始碼編譯安裝:

1、選定原始碼目錄

cd /home/st/software
我選擇的是我的使用者目錄下software資料夾

2、安裝pcre庫

cd /home/st/software

wget

.cam

.ac.uk/pub/software/programming/pcre/pcre-8.37

.tar

.gztar -zxvf pcre-8.37

.tar

.gzcd pcre-8.37

./configure

make

make install

3、安裝zlib庫

cd /home/st/software

wget

.8.tar

.gztar -zxvf zlib-1.2

.8.tar

.gzcd zlib-1.2

.8./configure

make

make install

4、安裝ssl

cd /home/st/software

wget

.org/source/openssl-1.0

.1c.tar

.gztar -zxvf openssl-1.0

.1c.tar

.gz

5、安裝nginx

make install6、啟動

sudo /usr/local/nginx/nginx

nginx在ubuntu下的安裝

2.安裝nginx依賴包執行命令 sudo apt get install libssl dev sudo apt get install libpcre3 libpcre3 dev 4.編譯安裝 make make install 5.到nginx安裝目錄執行啟動命令 usr local ngin...

ubuntu下apt get安裝nginx後的公升級

ubuntu apt get 安裝完nginx後是1.4.6版的,以下是對該版本的公升級 以下資訊 於網路 nginx stable ppa是由ubuntu社群維護的源,本源更新自穩定版分支,是kaijia目前使用的源,這個源的特點是檔案的目錄結構和ubuntu自帶的nginx相同,因此安裝這個版本...

ubuntu下apt get安裝nginx後的公升級

ubuntu apt get 安裝完nginx後是1.4.6版的,以下是對該版本的公升級 以下資訊 於網路 nginx stable ppa是由ubuntu社群維護的源,本源更新自穩定版分支,是kaijia目前使用的源,這個源的特點是檔案的目錄結構和ubuntu自帶的nginx相同,因此安裝這個版本...