(1).master配置 ! Configuration File for keepalived global_defs { router_id lb01 } vrrp_script check_ng { script "/etc/keepalived/check_keepalived.sh" interval 2 weight -5 fall 3 rise 2 } vrrp_instance VI_1 { state BACKUP # 主上也设置为备 interface ens33…
在lvs+keepalived环境中,为了减小keepalived主从切换带来的意外风险,,设置主机恢复后不抢占VIP.待进行vrrp协议通告备机不可用时切换.主要修改两个地方.(红色部分) 只需修改主服务器state MASTER改为state BACKUP并添加nopreempt ! Configuration File for keepalived global_defs {notification_email {acassen@firewall.loc}notification_emai…
准备 准备两台机器,IP地址信息如下: host1: 192.168.56.103 host2: 192.168.56.104 为了测试需要,分别在两台机器上安装apache并启动httpd服务,使下面两个url均可访问: http://192.168.56.103 http://192.168.56.104 安装keepalived 在两台机器上分别安装keepalived sudo yum install -y keepalived 配置keepalived host1上keepalived…
使用 keepalived 设置虚拟 IP 环境 原文地址:https://blog.csdn.net/kongxx/article/details/73173762 使用 keepalived 设置虚拟 IP 环境准备准备两个机器,IP地址信息如下: host1: 192.168.56.103host2: 192.168.56.10412为了测试需要,分别在两个机器上安装apache并启动httpd服务,使下面两个url均可访问 - http://192.168.56.103 - http:/…
XenServer pool 移除server 设置master 这分为Pool Master是正常还是异常2种情况: 正常情况下可能要对Pool Master做一些停机维护,比如换内存条啥的,此时在Pool Master正常工作的情况下执行以下命令: [root@xenserver02 ~]#xe pool-ha-disable [root@xenserver02 ~]# xe host-list  uuid ( RO)                : 8723de1d-76ad-445c-…
table设置了垂直居中后在表格显示相同排列的数据(比如:testtesttesttsttesttesstestse很多的test)时此表格不能换行, 此时会导致table会把页面撑的很宽,导致表格后面的数据或者按钮无法点击. 解决方式: 1.table添加style="table-layout: fixed;". 2.td添加word-wrap:break-word. 添加上面两个样式后,table的表格数据才能正常自动换行…
public frmMain() { InitializeComponent(); //解决窗体第一次设置为最大化后,点击最大化按钮窗体无法居中问题 int x = Convert.ToInt32((Screen.PrimaryScreen.WorkingArea.Width - this.Width) * 0.5); int y = Convert.ToInt32((Screen.PrimaryScreen.WorkingArea.Height - this.Height) * 0.5); t…
stage.displayState = StageDisplayState.FULL_SCREEN;//全屏,注意当设置全屏后,放到网页中显示不正常…
设置N秒后执行一个函数,最常用的是设置一个定时器,今天刚看到有这样一个函数,感觉还是比较简单实用的,就先记下来,免得忘记了. 5秒后执行pushSecondController这个函数 [self performSelector:@selector(pushSecondController) withObject:nil afterDelay:5.0f]; 比如:在第一个视图出现后5秒就跳转到第二个视图,代码如下: 参考资料:http://blog.csdn.net/chaoyuan899/ar…
此场景适用于移动端百分比布局,背景全屏显示. 在一个没有设置宽高的容器中设置背景,想要背景全屏显示,设置bcakground-size:100%;后还需设置position:absolut; 原因: absolute会脱离normal float, 即该元素会直接以root标签(类似window但不是<html>标签)进行参照,而root标签的高度存在具体数值, 即浏览器视窗高度, 有明确px值. 而relative不会脱离normal float, 他的height会直接依赖直接父元素(em…