摘要: 适用于: Oracle Linux 7.9.x、Centos Linux 7.9.x、Redhat Linux 7.9.x 一、用户环境变量 # 禁止DNS解析,提高ssh连接速度 sed -i 's/^#UseDNS yes/UseDNS no/' /etc/ssh/sshd_config # 配 阅读全文
posted @ 2022-05-21 17:43 bigtree2pingping 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # 接受信号2(ctrl+C) # 关闭fd 6的绑定 # 注意:绑定时可以用 exec <> fifofile; # 但关闭时必须分开写:exec 6>&-和exec 6<&- 是关闭fd6 trap "exec 6>&-; exec 6<&-; exit 0" 2 # 管 阅读全文
posted @ 2020-11-16 17:04 bigtree2pingping 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 环境 系统:Windows 10 企业版 软件:VMware® Workstation 15 Pro 网卡:VMnet8(NAT模式) 问题 在虚拟机上ping外部主机时,出现大量(DUP!) # ping 172.168.1.111 PING 172.168.1.111 (172.168.1.11 阅读全文
posted @ 2020-08-11 15:44 bigtree2pingping 阅读(1942) 评论(0) 推荐(0) 编辑
摘要: data: a|b|c,d1,e1,f3|d| e|f|g1,g1|h| 期望结果: a|b|f3|d| a|b|c|d| a|b|d1|d| a|b|e1|d| e|f|g1|h| e|f|g1|h| View Code awk -F '|' 'BEGIN{OFS="|"} {split($3,a 阅读全文
posted @ 2020-08-04 20:20 bigtree2pingping 阅读(365) 评论(0) 推荐(0) 编辑
摘要: file: Hello World This is line 2 This is not var \$var scripts: var="Hello" sed -n 's/$var/Hi/p' file # result: This is not var \Hi sed -n "s/$var/Hi/ 阅读全文
posted @ 2020-07-24 15:08 bigtree2pingping 阅读(240) 评论(0) 推荐(0) 编辑
摘要: **第一步:**在网址栏输入chrome://flags/#enable-parallel-downloading **第二步:**第一条设置右边选择enabled *第三步:*重启浏览器,之前下载只有几KBps的速度,在设置后提高到几百KBps,效果还是很明显的 阅读全文
posted @ 2020-07-08 22:59 bigtree2pingping 阅读(1354) 评论(0) 推荐(0) 编辑
摘要: 目的 通过引用变量的方式,在watcher 邮件通知中添加触发警告的相关信息,以便收到邮件后能快速定位问题。 示例 环境:CentOS Linux release 7.7.1908 (Core)、[Elasticsearch Watcher 2.4]、[Elasticsearch Reference 阅读全文
posted @ 2020-06-18 10:43 bigtree2pingping 阅读(358) 评论(0) 推荐(0) 编辑
摘要: elasticsearch各节点操作 # 安装邮件发送客户端工具mailx yum install -y mailx # elasticsearch.yml 添加以下配置 xpack.notification.email.account: work: profile: standard email_ 阅读全文
posted @ 2020-06-17 15:00 bigtree2pingping 阅读(905) 评论(0) 推荐(0) 编辑
摘要: data1: a b c d aa bb cc dd data2: 1 2 3 4 5 6 7 11 22 33 44 55 66 77 111 222 333 444 555 666 777 期望结果: 把data1的最后2列合并到data2的最后2列之后 6 7 c d 6 7 cc dd 66 阅读全文
posted @ 2020-06-09 14:41 bigtree2pingping 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 重点:如何生成随机数? 1. num=$(date +%s%N) 2. num=$RANDOM 3. num=$(head -200 /dev/urandom | cksum | cut -f1 -d" ") 4. num=$(cat /proc/sys/kernel/random/uuid| ck 阅读全文
posted @ 2020-06-04 23:57 bigtree2pingping 阅读(125) 评论(0) 推荐(0) 编辑