目錄Nginx 負載均衡筆記1. 概述1.1 Nginx 簡介1.2 負載均衡概述2. 四層負載均衡(傳輸層)2.1 工作原理2.2 特點2.3 優(yōu)缺點優(yōu)點缺點2.4 示例場景3. 七層負載均衡(應用層)3.1 工作原理3.2 特點3.3 優(yōu)缺點優(yōu)點缺點3.4 示例場景4. Nginx 調(diào)度算法4.
Nginx 是一個高性能的 HTTP 和反向代理服務器,也是一個 IMAP/POP3/SMTP 代理服務器。Nginx 以其高性能、穩(wěn)定性、豐富的功能集、簡單的配置文件以及低系統(tǒng)資源消耗而聞名。
負載均衡是一種將工作負載分攤到多個服務器上的技術,以提高網(wǎng)站、應用或數(shù)據(jù)庫的性能和可靠性。負載均衡器可以在不同的網(wǎng)絡層級實現(xiàn),最常見的是第 4 層(傳輸層)和第 7 層(應用層)負載均衡。
第 4 層負載均衡基于傳輸層協(xié)議(如 TCP 和 UDP)進行負載均衡。Nginx 作為第 4 層負載均衡器時,會基于 IP 地址和端口將請求分發(fā)到后端服務器。
第 7 層負載均衡基于應用層協(xié)議(如 HTTP 和 HTTPS)進行負載均衡。Nginx 作為第 7 層負載均衡器時,會解析 HTTP 請求,并基于請求的內(nèi)容(如 URL、頭信息、Cookies)將請求分發(fā)到后端服務器。
需求:使用nginx監(jiān)聽8888端口,后端服務器均為MySQL,并且MySQL為主從模式,客戶端將訪問nginx提供的8888端口來連接MySQL
我這里只是模擬,所以數(shù)據(jù)庫里面是空的,沒有任何庫,表
主機名/服務 | IP | 端口 |
---|---|---|
oe01 Nginx | 192.168.200.170 | 8888 |
oe02 Mysql01 | 192.168.200.171 | 3306 |
oe03 Mysql02 | 192.168.200.172 | 3306 |
[root@oe02~]# yum install mariadb-server -y
[root@oe03 ~]# yum install mariadb-server -y
[root@oe02 ~]# systemctl enable --now mariadb
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
[root@oe03 ~]# systemctl enable --now mariadb
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
# 初始化數(shù)據(jù)庫
[root@oe02 ~]# mysql_secure_installation
[root@oe03 ~]# mysql_secure_installation
如果不開啟遠程連接權限的話,是不能夠連接上數(shù)據(jù)庫的,此時的數(shù)據(jù)庫只能夠本地進行使用,所以我們需要開啟遠程權限
[root@oe02 ~]# mysql -uroot -p123
MariaDB [(none)]> grant all privileges on *.* to 'root'@'123' identified by '123';
Query OK, 0 rows affected (0.001 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.001 sec)
[root@oe03 ~]# mysql -uroot -p123
MariaDB [(none)]> grant all privileges on *.* to 'root'@'123' identified by '123';
Query OK, 0 rows affected (0.001 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.001 sec)
[root@oe01 ~]# vim /etc/nginx/nginx.conf
# 在末尾加上這一段配置
stream {
upstream db {
server 192.168.200.171:3306;
server 192.168.200.172:3306;
}
server {
listen 8888;
proxy_pass db;
}
}
配置解釋:
conf.d
目錄下寫的話會報錯的,因為這個是四層負載,而你將配置寫在
conf.d
下的話他是會被加載到http段落里面去的,http屬于7層,所以他會報錯
[root@oe01 ~]# systemctl restart nginx
現(xiàn)在我們使用客戶端來連接mysql
[root@oe01 ~]# mysql -uroot -p123 -h 192.168.200.170 -P 8888
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 5.5.5-10.5.25-MariaDB MariaDB Server
Copyright (c) 2000, 2024, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
客戶端成功的連接上了數(shù)據(jù)庫,并且使用的地址是Nginx的地址,端口也是Nginx監(jiān)聽的端口
四層的負載是需要定義在http段落以外的,而七層的負載就可以定義在http段落內(nèi)了,也就是說我們可以將負載的配置文件單獨寫一個并放在
/etc/nginx/conf.d/
下
需求:使用nginx輪詢的策略負載后端的web服務
主機名/服務 | IP |
---|---|
oe01 Nginx負載 | 192.168.200.170 |
oe02 Nginx01 | 192.168.200.171 |
oe03 Nginx02 | 192.168.200.172 |
從這個規(guī)劃來,第一個nginx不提供web服務,只提供對后端的負載
# 安裝nginx
[root@oe02 ~]# yum install nginx -y
[root@oe03 ~]# yum install nginx -y
# 啟動nginx
[root@oe02 ~]# systemctl start nginx
[root@oe03 ~]# systemctl start nginx
# 編寫index.html
[root@oe02 ~]# echo "hello nginx01" >/usr/share/nginx/html/index.html
[root@oe02 ~]# echo "hello nginx02" >/usr/share/nginx/html/index.html
我們的web服務器就配置好了,接下來配置Nginx的負載均衡
[root@oe01 ~]# cd /etc/nginx/conf.d/
[root@oe01 conf.d]# vim load.conf
upstream webserver {
server 192.168.200.171:80;
server 192.168.200.172:80;
}
server {
listen 80;
location / {
proxy_pass http://webserver;
}
}
[root@oe01 conf.d]# systemctl restart nginx
客戶端測試
C:\Users\86156>curl 192.168.200.170
hello nginx01
C:\Users\86156>curl 192.168.200.170
hello nginx02
C:\Users\86156>curl 192.168.200.170
hello nginx01
C:\Users\86156>curl 192.168.200.170
hello nginx02
本站所有軟件,都由網(wǎng)友上傳,如有侵犯你的版權,請發(fā)郵件[email protected]
湘ICP備2022002427號-10 湘公網(wǎng)安備:43070202000427號© 2013~2025 haote.com 好特網(wǎng)