云主机测评网云主机测评网云主机测评网

云主机测评网
www.yunzhuji.net

python搭建web服务器_搭建Keepalived Nginx高可用Web集群

搭建Keepalived Nginx高可用Web集群的步骤如下:

(图片来源网络,侵删)

1、安装Nginx

在两台服务器上分别安装Nginx,可以使用以下命令:

sudo aptget update
sudo aptget install nginx

2、配置Nginx

在两台服务器上分别修改Nginx的配置文件,

sudo nano /etc/nginx/sitesavailable/default

将以下内容添加到配置文件中:

server {
    listen 80;
    server_name example.com;
    root /var/www/html;
    index index.html;
}

然后创建一个测试页面:

echo "Hello, Keepalived Nginx!" | sudo tee /var/www/html/index.html

接下来,重启Nginx服务:

sudo service nginx restart

3、安装Keepalived

在两台服务器上分别安装Keepalived,可以使用以下命令:

sudo aptget install keepalived

4、配置Keepalived

在两台服务器上分别创建和编辑Keepalived的配置文件,

sudo nano /etc/keepalived/keepalived.conf

将以下内容添加到配置文件中(假设主服务器的IP地址为192.168.1.1,备份服务器的IP地址为192.168.1.2):

主服务器(192.168.1.1):

vrrp_instance VI_1 {
    state MASTER
    interface eth0
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.1.100/24 dev eth0 label eth0:1
    }
}

备份服务器(192.168.1.2):

vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 51
    priority 50
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.1.100/24 dev eth0 label eth0:1
    }
}

5、启动Keepalived服务并设置开机自启动:

在两台服务器上分别执行以下命令:

sudo systemctl start keepalived.service
sudo systemctl enable keepalived.service

至此,Keepalived Nginx高可用Web集群已经搭建完成,当主服务器出现故障时,备份服务器会自动接管服务。

打赏
版权声明:主机测评不销售、不代购、不提供任何支持,仅分享信息/测评(有时效性),自行辨别,请遵纪守法文明上网。
文章名称:《python搭建web服务器_搭建Keepalived Nginx高可用Web集群》
文章链接:https://www.yunzhuji.net/xunizhuji/198333.html

评论

  • 验证码