2. 配置openresty
2.2 進入配置目錄
2.3 修改配置檔案
3. 啟動服務
4. 開啟相應埠
yum install pcre-devel openssl-devel gcc curl
wget
安裝完成後缺省會在root
目錄下
# 進入 openresty 目錄
cd openresty-1.19.3.1
# 配置(監測環境、生成makefile、為編譯做準備)
# 輸入以下命令配置
./configure
# 也可以指定其他目錄,例如/root/openresty 目錄: ./configure --prefix=/root/openresty
# 編譯並安裝
./nginx
./nginx -s stop
./nginx -s reload
./nginx -t
# 開啟8080、 8081、 8082埠, 同時別忘了開啟80埠
firewall-cmd --zone=public --add-port=8080/tcp --permanent
firewall-cmd --zone=public --add-port=8081/tcp --permanent
firewall-cmd --zone=public --add-port=8082/tcp --permanent
firewall-cmd --zone=public --add-port=80/tcp --permanent
# 配置立即生效
firewall-cmd --reload
DNS LAMP NFS實現負載均衡
配置乙個dns伺服器,把乙個主機名www.dq.com解析為兩個a記錄,分別指向a,b主機,其中a為nfs server,b為nfs client.配置乙個基於lamp的webserver 10.33.1.142作為nfs server將本機 www dq.com共享,此目錄是discuz的安裝目錄...
nginx iis實現負載均衡
我的解釋 一項任務交由乙個開發人員處理總會有上限處理能力,這時可以考慮增加開發人員來共同處理這項任務,多人處理同一項任務時就會涉及到排程問題,即任務分配,這和多執行緒理念是一致的。nginx在這裡的角色相當於任務分配者。閱讀目錄 回到頂部 要實現負載均衡需要修改conf nginx.conf的配置資...
Apache tomcat實現負載均衡
一 實戰前軟體準備 apache2.2.13 tomcat6.0.18 兩個 二 mod jk.so 並複製到 apache 的modules 資料夾下 三 在conf httpd.conf 中最後一行新增 include d study apache2.2 conf mod jk.conf 新建 ...