Fork me on GitHub
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: 1、grep 帮助 grep --help 2、通过grep 过滤出grep帮助 grep --help |grep '\-q' -q, --quiet, --silent suppress all normal output 3、通过判断是否为0,是0则表示上一个命令是成功的 ( grep -q 阅读全文
posted @ 2021-05-21 10:06 Alex-Lzy 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 一、保存规则 1、ipvsadm-save,直接将IPvsadm规则打印在屏幕上 1 [02:03:59 root@lvs ~]#ipvsadm-save 2 -A -t lvs:http -s rr 3 -a -t lvs:http -r 192.168.1.5:http -m -w 1 4 -a 阅读全文
posted @ 2021-05-20 17:17 Alex-Lzy 阅读(2001) 评论(0) 推荐(0) 编辑
摘要: DR模型需要LVS服务器和RS服务器必须在一个网段,中间必须是交换机,不能是路由器,DR模型也可也叫直接路由 DR需要在所有的主机上都需要配置VIP 解决地址冲突的方式有三种 (1) 在前端网关做静态绑定(2) 在各RS使用arptables(3) 在各RS修改内核参数,来限制arp响应和通告的级别 阅读全文
posted @ 2021-05-18 17:37 Alex-Lzy 阅读(127) 评论(0) 推荐(0) 编辑
摘要: VS=虚拟服务器、调度器,负载均衡器 RS=真实访问的服务器 CIP:客户端IP地址 VIP: Virtual serve IP VS外网的IP DIP=内网的IP,主要用于和内网主机通讯 RIP=真正的服务器IP 一、搭建两台RS服务器(以下步骤两台RS服务器都需要执行) 1、安装http的服务 阅读全文
posted @ 2021-05-17 19:34 Alex-Lzy 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1、启动ipvsadm 服务报错如下: Job for ipvsadm.service failed because the control process exited with error code. See "systemctl status ipvsadm.service" and "jou 阅读全文
posted @ 2021-05-17 16:37 Alex-Lzy 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 1、以模块方式连接数据库,在RS服务器上安装php模块和php连接MySQL的包 yum install php-fpm php-mysql -y 2、在数据库服务器上安装mariadb数据库 yum install mariadb-server -y 3、在数据库服务器上启动数据库 systemc 阅读全文
posted @ 2021-05-14 17:10 Alex-Lzy 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 两大部分,一环境,二LVS规则 一、环境 1、两台服务器上安装httpd 服务 yum install httpd -y 2、开启服务,并设置为开机自启 systemctl start httpd systemctl enable httpd 3、新建页面 1)、在RS1 服务器上新建页面RS1 e 阅读全文
posted @ 2021-05-13 19:35 Alex-Lzy 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1、修改配置 vim /boot/grub2/grub.cfg 2、定位到如下这段 if [ x$feature_timeout_style = xy ] ; then set timeout_style=menu set timeout=5 # Fallback normal timeout co 阅读全文
posted @ 2021-05-13 12:32 Alex-Lzy 阅读(583) 评论(0) 推荐(0) 编辑
摘要: Ubuntu默认不能直接通过root用户远程登录 如xshell登录,密码正确,提示如下: 这是因为在sshd_config中定义了 1、修改配置: vi /etc/ssh/sshd_config 2、通过/输入PermitRootLogin 快速定位到要修改的行 3、将#PermitRootLog 阅读全文
posted @ 2021-05-12 13:43 Alex-Lzy 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 1、打开Ubuntu登录安装时候创建的用户,默认输入密码登录不进去 2、重置root密码,必须得输入安装时创建的用户的密码,用户密码正确后,输入两遍新密码 3、切换root用户,输入刚刚重置的密码 su root 阅读全文
posted @ 2021-05-12 12:41 Alex-Lzy 阅读(628) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页