Home Operation and Maintenance Nginx nginx+keepalived high availability master-slave configuration method

nginx+keepalived high availability master-slave configuration method

May 29, 2023 pm 02:16 PM
nginx keepalived

1. System environment and software version

centos 6.6 x64
keepalived-1.2.18.tar.gz
nginx-1.6.2.tar.gz

Master server: 192.168.38.64

Slave server: 192.168.38.66

vip:192.168.38.100

2. nginx installation (master-slave Installation is consistent)

1. Install dependent environment

Copy code The code is as follows:

yum install gcc gcc-c make automake autoconf libtool pcre pcre-devel zlib zlib-developenssl openssl-devel

##2.Upload nginx to the opt directory

3. Unzip and install

  # tar -zxvf nginx-1.6.2.tar.gz

  # cd nginx-1.6.2
  # ./configure --prefix=/opt/nginx (prefix=/opt/nginx 这个指定的是 nginx目录)
  # make && make install
Copy after login

4. Modify the nginx listening port and index.html

# vi /opt/nginx/conf/nginx.conf

nginx+keepalived high availability master-slave configuration method ##vi /opt/nginx/html/index.html

nginx+keepalived high availability master-slave configuration method

5. nginx startup and common commands

Configuration test: /opt/nginx/sbin/nginx -t The following interface appears, indicating that the configuration is OK

nginx+keepalived high availability master-slave configuration methodStart: /opt/nginx/sbin/nginx

Restart: /opt/nginx/sbin/nginx -s reload

Stop: /opt/nginx/sbin/nginx -s stop

6. Start nginx

vi /etc/rc.local

Join: /opt/nginx/sbin/nginx

7. Modify the firewall open port

vi /etc/sysconfig/iptables

Add: -a input -p tcp -m state --state new -m tcp --dport 8888 -j accept

Restart the firewall:

service iptables restart

8. Problem

Problems encountered when starting nginx

##vi / etc/ld.so.confnginx+keepalived high availability master-slave configuration method

Add: /opt/nginx/lib/

9.nginx load balancing

nginx load balancing Mainly done by the upstream module

Modify the nginx configuration file

vi /data/nginx/conf/nginx.conf

Add the following content: (the name web_pools Variable)

  upstream web_pools { 
  server 10.0.6.108:7080weight=1;
   server 10.0.0.85:8980weight=1;
  }
Copy after login

Configure proxy_pass in the location node under the server node as: http:// upstream name

The result is as follows:

where weight is the weight and backup is the backup server. The backup server will start only after other servers are down. nginx+keepalived high availability master-slave configuration method

3. Keepalived installation

1. Upload keepalived to the opt directory

2. Unzip and install

  tar -zxvf keepalived-1.2.18.tar.gz
  cd keepalived-1.2.18
  ./configure --prefix=/opt/keepalived
  make && make install
Copy after login

3. Install keepalived as a linux service

cp /opt/keepalived/etc/rc.d/init.d/keepalived /etc/init.d/
  cp /opt/keepalived/etc/sysconfig/keepalived /etc/sysconfig/
  ln -s /opt/sbin/keepalived /usr/sbin/
  ln -s /opt/keepalived/sbin/keepalived /sbin/
Copy after login

4. Set the keepalived service to start at boot

chkconfig keepalived on
Copy after login

5.

Modify the keepalived configuration file

vi /etc/keepalived/ keepalived.conf

  ! configuration file for keepalived (!、#都是注释)

  global_defs { #全局配置
  notification_email {
    acassen@firewall.loc
    failover@firewall.loc
    sysadmin@firewall.loc
  }
  notification_email_from alexandre.cassen@firewall.loc
  smtp_server 192.168.200.1
  smtp_connect_timeout 30
  router_id lvs_01 #这个配置要唯一
  } 

  vrrp_script chk_nginx {
    script "/etc/keepalived/nginx_check.sh" ## 检测 nginx 状态的脚本路径
    interval 2 ## 检测时间间隔
    weight -20 ## 如果条件成立,权重-20
  } 

  vrrp_instance vi_1 { #实例 vi_1 名字可以随意 但是不建议修改
    state master # 主服务器master 从服务器 backup
    interface em1 # em1 网卡
    virtual_router_id 51 #virtual_router_id 主备要一致
    priority 100   # 优先级 数字越大 优先级越高 priority 的值 主服务器要大于 从服务器
    advert_int 1  #设定master与backup负载均衡器之间同步检查的时间间隔,单位是秒
    authentication { # 主从通信 验证类型及密码 
      auth_type pass  #设置vrrp验证类型,主要有pass和ah两种
      auth_pass 1111  #设置vrrp验证密码,在同一个vrrp_instance下,master与backup必须使用相同的密码才能正常通信
    } 

    ## 将 track_script 块加入 instance 配置块
    track_script {
      chk_nginx ## 执行 nginx 监控的服务
    }

    virtual_ipaddress {
    192.168.38.100/24 #vrrp ha 虚拟地址 如果有多个vip,继续换行填写
    }
  } 
Copy after login

6. Write nginx status detection script

vi /etc/keepalived/nginx_check.sh

The content is as follows:

  #!/bin/bash

  a=`ps -c nginx –no-header |wc -l`
  if [ $a -eq 0 ];then
    /opt/nginx/sbin/nginx
    sleep 2
    if [ `ps -c nginx --no-header |wc -l` -eq 0 ];then

      killall keepalived
    fi
  fi
Copy after login

After saving, grant execution permissions to the script:

chmod x/etc/keepalived/nginx_check.sh

7. Note: the differences between keepalived master and slave configuration files

a.router_id is inconsistent

b.state The main server is master and the slave server is backup

c.priority The master server is greater than the slave server

8.keepalived command

Start: servicekeepalived start

Stop: servicekeepalived stop

Restart: servicekeepalived restart

9. Issues to note

a.vip was not bound successfully

Solution: ip addr Check the name of the network card where the local ip is located, and then modify the configuration file

##vi /etc/keepalived/keepalived.conf

nginx+keepalived high availability master-slave configuration method

After saving, servicekeepalived restart can restart the keepalived service

nginx+keepalived high availability master-slave configuration method10. Test

Start the master-slave nginx and keepalived services

Master From the server respectively: ip add | grep 192.168.38.100

can be seen on 192.168.38.64

## and at the same time on 192.168.38.66

nginx+keepalived high availability master-slave configuration method

When you kill keepalived on the master server, the slave server

nginx+keepalived high availability master-slave configuration method

When you start keepalived on the master server again, there will be results on the master server. , no results from the server.

当杀死 nginx后,keepalived则会自动启动 nginx服务

11. keepalived脑裂 (ip add | grep 192.168.38.100 在主从都有结果)

解决方案:防火墙问题

iptables-iinput4-pvrrp-jaccept  

service iptables save

service iptables restart
Copy after login

nginx+keepalived high availability master-slave configuration method

The above is the detailed content of nginx+keepalived high availability master-slave configuration method. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to allow external network access to tomcat server How to allow external network access to tomcat server Apr 21, 2024 am 07:22 AM

To allow the Tomcat server to access the external network, you need to: modify the Tomcat configuration file to allow external connections. Add a firewall rule to allow access to the Tomcat server port. Create a DNS record pointing the domain name to the Tomcat server public IP. Optional: Use a reverse proxy to improve security and performance. Optional: Set up HTTPS for increased security.

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

Welcome to nginx!How to solve it? Welcome to nginx!How to solve it? Apr 17, 2024 am 05:12 AM

To solve the "Welcome to nginx!" error, you need to check the virtual host configuration, enable the virtual host, reload Nginx, if the virtual host configuration file cannot be found, create a default page and reload Nginx, then the error message will disappear and the website will be normal show.

How to communicate between docker containers How to communicate between docker containers Apr 07, 2024 pm 06:24 PM

There are five methods for container communication in the Docker environment: shared network, Docker Compose, network proxy, shared volume, and message queue. Depending on your isolation and security needs, choose the most appropriate communication method, such as leveraging Docker Compose to simplify connections or using a network proxy to increase isolation.

How to register phpmyadmin How to register phpmyadmin Apr 07, 2024 pm 02:45 PM

To register for phpMyAdmin, you need to first create a MySQL user and grant permissions to it, then download, install and configure phpMyAdmin, and finally log in to phpMyAdmin to manage the database.

How to deploy nodejs project to server How to deploy nodejs project to server Apr 21, 2024 am 04:40 AM

Server deployment steps for a Node.js project: Prepare the deployment environment: obtain server access, install Node.js, set up a Git repository. Build the application: Use npm run build to generate deployable code and dependencies. Upload code to the server: via Git or File Transfer Protocol. Install dependencies: SSH into the server and use npm install to install application dependencies. Start the application: Use a command such as node index.js to start the application, or use a process manager such as pm2. Configure a reverse proxy (optional): Use a reverse proxy such as Nginx or Apache to route traffic to your application

How to generate URL from html file How to generate URL from html file Apr 21, 2024 pm 12:57 PM

Converting an HTML file to a URL requires a web server, which involves the following steps: Obtain a web server. Set up a web server. Upload HTML file. Create a domain name. Route the request.

What to do if the installation of phpmyadmin fails What to do if the installation of phpmyadmin fails Apr 07, 2024 pm 03:15 PM

Troubleshooting steps for failed phpMyAdmin installation: Check system requirements (PHP version, MySQL version, web server); enable PHP extensions (mysqli, pdo_mysql, mbstring, token_get_all); check configuration file settings (host, port, username, password); Check file permissions (directory ownership, file permissions); check firewall settings (whitelist web server ports); view error logs (/var/log/apache2/error.log or /var/log/nginx/error.log); seek Technical support (phpMyAdmin

See all articles