nginx 安裝測試

2022-04-11 11:02:34 字數 2543 閱讀 2238

首先安裝環境: 

[root@local nginx-1.9.14]#  yum install gcc-c++  pcre pcre-devel  zlib zlib-devel openssl openssl--devel –y

安裝之前,最好檢查一下是否已經安裝有nginx

$   find -name nginx

如果系統已經安裝了nginx,那麼就先解除安裝

$   yum remove nginx 

$ cd /usr/local

$   wget  // wget

解壓nginx壓縮包

$   tar -zxvf nginx-1.7.4.tar.gz

會產生乙個nginx-1.7.4 目錄,這時進入nginx-1.7.4目錄

$   cd  nginx-1.7.4

接下來安裝,使用--prefix引數指定nginx安裝的目錄,make、make install安裝

$  ./configure --prefix=/usr/local/nginx            //預設安裝在/usr/local/nginx  

$ make

$ make install

啟動nginx# /usr/local/nginx/sbin/nginx

停止nginx# kill -quit `cat /usr/local/nginx/logs/nginx.pid`

重啟nginxkill -hup `cat /usr/local/nginx/logs/nginx.pid`

新增到自啟動# echo "/usr/local/nginx/sbin/nginx">>/etc/rc.local

chmod a+x  /etc/rc.local    執行這個才能設定成功

如果沒有報錯,順利完成後,最好看一下nginx的安裝目錄

配置負載均衡

#對 "/" 啟用負載均衡

啟動ngnix

[root@local html]# /usr/local/nginx/sbin/nginx

重啟nginx

[root@local html]# /usr/local/nginx/sbin/nginx -s reload

$ whereis nginx

upstream mysvr

訪問測試:

@test

public void testquerycompandorders()

systemctl stop firewalld

設定開啟不啟動:systemctl disable  firewalld

nginx負載均衡安裝及測試

a伺服器ip 192.168.157.128 主 b伺服器ip 192.168.157.136 c伺服器ip 192.168.157.137 vim etc hosts 192.168.157.128 hadoop1 192.168.157.136 hadoop2 192.168.157.137 h...

nginx安裝配置及測試

2 上傳安裝包到 usr local src目錄下,解壓得到nginx 1.13.12資料夾,進入nginx 1.13.12 src目錄 cd usr local src nginx 1.13.12 src 3 配置檢查 編譯 安裝,這裡選擇安裝在 usr local nginx目錄下,步驟如下 a...

Ubuntu16 04Nginx安裝測試

先將四個壓縮包解壓縮 注意.tar.bz2 的解壓命令是 tar jxvf 安裝nginx依賴庫 根據note資訊,需要執行.config 檢測當前生成環境並生成makefile config make sudo make install 安裝nginx configure make sudo ma...