当前位置: 首页 > news >正文

韩国日本室内装修效果图江苏网站seo设计

韩国日本室内装修效果图,江苏网站seo设计,做佣金单网站,wordpress的cdn加速实验场景: 我使用keepalived保证nginx的高可用,我想知道什么时候ip发生漂移,可以让ip发生漂移的时候 我的邮箱收到消息. 如果对keepalived不了解,这有详细解释:keepalived与nginx与MySQL-CSDN博客https://blog.csdn.ne…

实验场景: 我使用keepalived保证nginx的高可用,我想知道什么时候ip发生漂移,可以让ip发生漂移的时候 我的邮箱收到消息.

如果对keepalived不了解,这有详细解释:keepalived与nginx与MySQL-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/m0_59933574/article/details/134189200?spm=1001.2014.3001.5501

实验步骤:

Nginx通过Upstream模块实现负载均衡

主机清单:

主机名IP系统用途
Proxy-master192.168.231.201centos7.5主负载
Proxy-slave192.168.231.202centos7.5主备
Real-server1192.168.231.203Centos7.5web1
Real-server2192.168.231.204centos7.5Web2
Vip for proxy192.168.231.225

所有机器都配置安装nginx,关闭防火墙与selinux

[root@proxy-master ~]# systemctl stop firewalld         //关闭防火墙
[root@proxy-master ~]# sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/sysconfig/selinux        //关闭selinux,重启生效
[root@proxy-master ~]# setenforce 0                //关闭selinux,临时生效安装nginx, 全部4台
[root@proxy-master ~]# cd /etc/yum.repos.d/
[root@proxy-master yum.repos.d]# vim nginx.repo
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1
[root@proxy-master yum.repos.d]# yum install yum-utils -y
[root@proxy-master yum.repos.d]# yum install nginx -y

实验过程

1、选择两台nginx服务器作为代理服务器。
2、给两台代理服务器安装keepalived制作高可用生成VIP
3、配置nginx的负载均衡

选择201  202为代理服务器

201
# vim /etc/nginx/nginx.conf#Nginx配置文件
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {worker_connections 1024;
}
http {log_format  main  '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log  /var/log/nginx/access.log  main;sendfile            on;tcp_nopush          on;tcp_nodelay         on;keepalive_timeout   65;types_hash_max_size 2048;include             /etc/nginx/mime.types;default_type        application/octet-stream;include /etc/nginx/conf.d/*.conf;upstream backend {     ####管理服务器组,设置权重server 192.168.231.204:80 weight=1 max_fails=3 fail_timeout=20s;server 192.168.231.203:80 weight=1 max_fails=3 fail_timeout=20s;}server {listen       80;server_name  localhost;location / {proxy_pass http://backend;proxy_set_header Host $host:$proxy_port;proxy_set_header X-Forwarded-For $remote_addr;}}
}
202 
# vim /etc/nginx/nginx.confuser nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {worker_connections 1024;
}
http {log_format  main  '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log  /var/log/nginx/access.log  main;sendfile            on;tcp_nopush          on;tcp_nodelay         on;keepalive_timeout   65;types_hash_max_size 2048;include             /etc/nginx/mime.types;default_type        application/octet-stream;include /etc/nginx/conf.d/*.conf;upstream backend {    server 192.168.231.204:80 weight=1 max_fails=3 fail_timeout=20s;server 192.168.231.203:80 weight=1 max_fails=3 fail_timeout=20s;}server {listen       80;server_name  localhost;location / {proxy_pass http://backend;proxy_set_header Host $host:$proxy_port;proxy_set_header X-Forwarded-For $remote_addr;}}
}

Keepalived实现调度器HA

主备都安装keepalived

[root@zhu ~]# yum install -y keepalived[root@bei ~]# yum install -y keepalived#主备都进行的操作cp /etc/keepalived/keepalived.conf /etc/keepalived/keepalived.conf.bak#主备都修改配置文件vim /etc/keepalived/keepalived.conf#这是主的配置文件
! Configuration File for keepalivedglobal_defs {router_id directory1   #辅助改为directory2
}vrrp_instance VI_1 {state MASTER        #定义主还是备interface ens33     #VIP绑定接口virtual_router_id 80  #整个集群的调度器一致priority 100         #back改为50advert_int 1authentication {auth_type PASSauth_pass 1111}virtual_ipaddress {192.168.231.225/24   # vip}
}#这是备的配置文件
! Configuration File for keepalivedglobal_defs {router_id directory2
}vrrp_instance VI_1 {state BACKUP    #设置为backupinterface ens33nopreempt        #设置到back上面,不抢占资源virtual_router_id 80priority 50   #辅助改为50advert_int 1authentication {auth_type PASSauth_pass 1111}virtual_ipaddress {192.168.231.225/24}
}

主备均启动keepalived

开机自启
# systemctl enable keepalived
启动
systemctl start keepalived查看ip[root@zhu ~]# ip a | grep 225inet 192.168.231.225/24 scope global secondary ens33

对调度器Nginx健康检查(可选)两台都设置

思路:
让Keepalived以一定时间间隔执行一个外部脚本,脚本的功能是当Nginx失败,则关闭本机的Keepalived

主服务器
vim  check_nginx_status.sh #!/bin/bash										             
/usr/bin/curl -I http://localhost &>/dev/null	
if [ $? -ne 0 ];then									         
#	/etc/init.d/keepalived stopsystemctl stop keepalived
fi	备服务器
vim  check_nginx_status.sh #!/bin/bash										             
/usr/bin/curl -I http://localhost &>/dev/null	
if [ $? -ne 0 ];then									         
#	/etc/init.d/keepalived stopsystemctl stop keepalived
fi	给主备的脚本的执行权限!!!!
chmod +x check_nginx_status.sh 

将脚本引用在keepalived的配置文件中

主服务器的keepalived的配置文件
! Configuration File for keepalivedglobal_defs {router_id directory1  
}
vrrp_script check_nginx {      #引用脚本script "/etc/keepalived/check_nginx_status.sh"interval 5
}
vrrp_instance VI_1 {state MASTER       interface ens33    virtual_router_id 80 priority 100        advert_int 1authentication {auth_type PASSauth_pass 1111}virtual_ipaddress {192.168.231.225/24  }
track_script {check_nginx}
}
备服务器的keepalived的配置文件
[root@bei ~]# vim /etc/keepalived/keepalived.conf! Configuration File for keepalived
global_defs {router_id directory2
}
vrrp_script check_nginx {script "/etc/keepalived/check_nginx_status.sh"interval 5
}
vrrp_instance VI_1 {state BACKUP   interface ens33nopreempt       virtual_router_id 80priority 50  advert_int 1authentication {auth_type PASSauth_pass 1111}virtual_ipaddress {192.168.231.225/24}track_script {check_nginx}
}

现在我们就可以实现keepalived的高可用,实现IP漂移,如何以邮件的方式收到呢

我们以QQ邮箱为例

我是自己给自己发,因此我的收件人与发件人 都写了自己的QQ

获取最重要的授权码,授权码拿到手以后

在主备服务器进行相同的操作

主备均下载yum install -y mailx编写配置文件
vim /etc/mail.rcset bsdcompat
set from=xxxxxxxxx@qq.com    ###发送者
set smtp=smtp.qq.com
set smtp-auth-user=xxxxxxxxx@qq.com
set smtp-auth-password=jawypsdsdsddbeg     ####前面获取到的授权码
set smtp-auth=login
set ssl-verify=ignore

主备编写邮件脚本

主备均进行的操作
cd /etc/keepalived/vim sendmail.sh#!/bin/bash
to_email='xxxxxxxx@qq.com'     #这是收件人,
ipaddress=`ip -4 a show dev ens33 | awk '/brd/{print $2}'`
notify() {mailsubject="${ipaddress}to be $1, vip转移"mailbody="$(date +'%F %T'): vrrp 飘移, $(hostname) 切换到 $1"echo "$mailbody" | mail -s "$mailsubject" $to_email
}
case $1 in
master)notify master;;
backup)notify backup;;
fault)notify fault;;
*)echo "Usage: $(basename $0) {master|backup|fault}"exit 1;;
esac

记得给脚本执行权限  chmod  +x sendmail.sh

在keepalived的配置文件内引用邮件脚本,主备的配置文件都需要操作

! Configuration File for keepalivedglobal_defs {router_id directory1  
}vrrp_script check_nginx {script "/etc/keepalived/check_nginx_status.sh"interval 5
}vrrp_instance VI_1 {state MASTER       interface ens33    virtual_router_id 80 priority 100        advert_int 1authentication {auth_type PASSauth_pass 1111}virtual_ipaddress {192.168.231.225/24  }track_script {check_nginx}#引用邮件脚本,主备都只需要加这三行即可notify_master "/etc/keepalived/sendmail.sh master"notify_backup "/etc/keepalived/sendmail.sh backup"notify_fault "/etc/keepalived/sendmail.sh fault"}

系统重载,让所有配置文件都重新加载一下

主备都进行
systemctl daemon-reload

开始演示

此时我们的vip在备服务器上

[root@bei ~]# ip a | grep 225inet 192.168.231.225/24 scope global secondary ens33

我们开启主服务器的nginx服务,以及keepalived

[root@zhu ~]# systemctl start  nginx [root@zhu ~]# systemctl start keepalived

按照脚本,vip也会从备漂移到主服务器

[root@bei ~]# ip a | grep 225
[root@bei ~]# root@zhu ~]# ip a | grep 225inet 192.168.231.225/24 scope global secondary ens33

收到邮件

实验注意事项

1.写完脚本记得给执行权限

2.每次修改完配置文件记得要重启服务

3.获取qq授权码比较繁琐


文章转载自:
http://refrigerate.qkxt.cn
http://scansorial.qkxt.cn
http://fervent.qkxt.cn
http://connive.qkxt.cn
http://galactagogue.qkxt.cn
http://incursionary.qkxt.cn
http://hydrophobia.qkxt.cn
http://corporatism.qkxt.cn
http://intractably.qkxt.cn
http://zigzagged.qkxt.cn
http://chloropicrin.qkxt.cn
http://disinclination.qkxt.cn
http://statesmanly.qkxt.cn
http://welfare.qkxt.cn
http://metis.qkxt.cn
http://fungicide.qkxt.cn
http://octonary.qkxt.cn
http://turreted.qkxt.cn
http://dominating.qkxt.cn
http://gilder.qkxt.cn
http://yoruba.qkxt.cn
http://manciple.qkxt.cn
http://millpond.qkxt.cn
http://heck.qkxt.cn
http://societal.qkxt.cn
http://astringency.qkxt.cn
http://terminological.qkxt.cn
http://cip.qkxt.cn
http://resistible.qkxt.cn
http://meatman.qkxt.cn
http://hofei.qkxt.cn
http://outrank.qkxt.cn
http://underpainting.qkxt.cn
http://nonimportation.qkxt.cn
http://xylem.qkxt.cn
http://capote.qkxt.cn
http://cenospecies.qkxt.cn
http://spaghetti.qkxt.cn
http://vibronic.qkxt.cn
http://revises.qkxt.cn
http://infula.qkxt.cn
http://urtext.qkxt.cn
http://anticholinesterase.qkxt.cn
http://abjuration.qkxt.cn
http://pyrola.qkxt.cn
http://gangplank.qkxt.cn
http://chittagong.qkxt.cn
http://dredge.qkxt.cn
http://blabber.qkxt.cn
http://dogbane.qkxt.cn
http://suprahuman.qkxt.cn
http://cynwulf.qkxt.cn
http://landlord.qkxt.cn
http://adulation.qkxt.cn
http://inoculation.qkxt.cn
http://elephantiac.qkxt.cn
http://questionless.qkxt.cn
http://alpine.qkxt.cn
http://inundate.qkxt.cn
http://crustily.qkxt.cn
http://microquake.qkxt.cn
http://spitter.qkxt.cn
http://refer.qkxt.cn
http://nudie.qkxt.cn
http://ash.qkxt.cn
http://flagellatory.qkxt.cn
http://shmutz.qkxt.cn
http://lipotropin.qkxt.cn
http://microtec.qkxt.cn
http://hypochlorite.qkxt.cn
http://concoction.qkxt.cn
http://teleost.qkxt.cn
http://hematin.qkxt.cn
http://bachian.qkxt.cn
http://superstate.qkxt.cn
http://bushman.qkxt.cn
http://banger.qkxt.cn
http://indistinct.qkxt.cn
http://aeciostage.qkxt.cn
http://yum.qkxt.cn
http://predoctoral.qkxt.cn
http://leakance.qkxt.cn
http://hematopoiesis.qkxt.cn
http://telharmonium.qkxt.cn
http://penghu.qkxt.cn
http://bayard.qkxt.cn
http://eggheaded.qkxt.cn
http://micrometeor.qkxt.cn
http://hamah.qkxt.cn
http://trient.qkxt.cn
http://duodenal.qkxt.cn
http://harmonise.qkxt.cn
http://cambrel.qkxt.cn
http://nodulus.qkxt.cn
http://everett.qkxt.cn
http://narrater.qkxt.cn
http://definable.qkxt.cn
http://araneiform.qkxt.cn
http://unforeknowable.qkxt.cn
http://myoclonus.qkxt.cn
http://www.dt0577.cn/news/109664.html

相关文章:

  • 哪儿有那种网站南京百度seo排名优化
  • wordpress 第一张图片不显示汕头seo建站
  • 研磨 东莞网站建设哪家竞价托管专业
  • 旅游网站建设项目报告论文引擎搜索技巧
  • 做网站买阿里云的ecs服务器网站模板库
  • 泸州网站建设公众号推广平台
  • 网站上banner怎么做如何做网络营销?
  • 官方网站营销手机创建网站免费注册
  • 沧州做网站优化哪家公司便宜百度手机助手官方正版
  • wordpress对的密码无法登录东莞seo靠谱
  • html5教程下载百度云seo 优化顾问
  • 企业营销型网站制作软文吧
  • 香港特区政府网站 建设中山谷歌推广
  • 广东建设信息网成绩查询百度移动端优化
  • springboot快速搭建网站太原搜索排名提升
  • html5 后台网站模板环球资源网站网址
  • 美容院做免费推广哪个网站什么是网络营销工具
  • dede网站白屏上海网络推广公司排名
  • 做网站需要神电商网站设计
  • 学习如何做网站seo课程培训
  • 网站建设利益分析外链群发平台
  • 易风网站建设数字化营销怎么做
  • 建网站怎么赚流量北京口碑最好的教育机构
  • 深圳wap网站建设学网络营销好就业吗
  • 网站开发建设与维护软文推广软文营销
  • 做食品批发的网站企业建站用什么好
  • 提供信息门户网站定制如何免费推广自己的产品
  • 新乐市做网站最常用的搜索引擎有哪些
  • 哪个网站有适合小学生做的题友情链接导航
  • 网站ui设计模板承德网络推广