上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 26 下一页
摘要: Lvs 简介 LVS 的全称是 Linux virtual server,即 Linux 虚拟服务器。之所以是虚拟服 务器,是因为 LVS 自身是个负载均衡器(director),不直接处理请求,而是将请 求转发至位于它后端真正的服务器 realserver 上。 LVS 是四层(传输层 tcp/u 阅读全文
posted @ 2022-08-24 10:22 LB_运维技术 阅读(992) 评论(0) 推荐(0)
摘要: [root@libin network-scripts]# cat ifcfg-eth6 DEVICE="eth6" BOOTPROTO="none" HWADDR="81:5B:12:2F:3A:11" #NM_CONTROLLED="yes" ONBOOT="yes" TYPE="Etherne 阅读全文
posted @ 2022-08-24 10:07 LB_运维技术 阅读(326) 评论(0) 推荐(0)
摘要: Linux 漏洞问题 1、检查登录提示-更改ftp警告Banner [root@localhost libin]# grep ftpd_banne /etc/vsftpd/vsftpd.conf ftpd_banner="Authorized users only. All activity may 阅读全文
posted @ 2022-08-24 09:46 LB_运维技术 阅读(321) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-08-23 20:08 LB_运维技术 阅读(36) 评论(0) 推荐(0)
摘要: 1、Linux 系统查询占用CPU的前十个进程 [root@libin ]# ps aux --sort=pcpu | head -10 2、Linux系统查询可以远程登录的帐号信息 [root@libin ]# awk '/\$1|\$6/{print $1}' /etc/shadow | awk 阅读全文
posted @ 2022-08-23 11:42 LB_运维技术 阅读(116) 评论(0) 推荐(0)
摘要: [22:26:42 root@libin3 libin]# cat libin6 rhcsa rhce rhca hcia libin1 hcip libin2 hcie libin3 [22:26:52 root@libin3 libin]# for i in `cat libin6`;do pi 阅读全文
posted @ 2022-08-22 22:32 LB_运维技术 阅读(61) 评论(0) 推荐(0)
摘要: 1、定义剧本(我这里只输出序列号) [root@libin3]# cat libin.yml - hosts: task gather_facts: no tasks: - name: fetch shell: | awk -F ":" '{ print $1,$7 }' /etc/passwd | 阅读全文
posted @ 2022-08-21 01:24 LB_运维技术 阅读(32) 评论(0) 推荐(0)
摘要: case 命令 case语句与if-then-else语句的区别。 例1:if-then-else语句,比较繁琐 [19:37:32 root@libin3 libin]# usermod -G root student [19:22:33 root@libin3 libin]# vim shell 阅读全文
posted @ 2022-08-20 23:25 LB_运维技术 阅读(269) 评论(0) 推荐(0)
摘要: 12.1 使用 if-then 语句 1、第一种if-then 语句 bash shell的if语句会运行if后面的那个命令。如果该命令的退出状态码是0 (该命令成功运行),位于then部分的命令就会被执行。如果该命令的退出状态码是其他值,then部分的命令就不会被执行,bash shell会继续执 阅读全文
posted @ 2022-08-19 19:13 LB_运维技术 阅读(4675) 评论(0) 推荐(0)
摘要: [root@libin 2022-08-16-ChagePasswd]# cat chagepasswd.yml - hosts: task remote_user: root gather_facts: no tasks: - name: chage passwd1 user: name: 用户名 阅读全文
posted @ 2022-08-17 11:07 LB_运维技术 阅读(58) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 26 下一页