摘要:
适用于: 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 # 配 阅读全文
摘要:
#!/bin/bash # 接受信号2(ctrl+C) # 关闭fd 6的绑定 # 注意:绑定时可以用 exec <> fifofile; # 但关闭时必须分开写:exec 6>&-和exec 6<&- 是关闭fd6 trap "exec 6>&-; exec 6<&-; exit 0" 2 # 管 阅读全文
摘要:
环境 系统:Windows 10 企业版 软件:VMware® Workstation 15 Pro 网卡:VMnet8(NAT模式) 问题 在虚拟机上ping外部主机时,出现大量(DUP!) # ping 172.168.1.111 PING 172.168.1.111 (172.168.1.11 阅读全文
摘要:
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 阅读全文
摘要:
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/ 阅读全文
摘要:
**第一步:**在网址栏输入chrome://flags/#enable-parallel-downloading **第二步:**第一条设置右边选择enabled *第三步:*重启浏览器,之前下载只有几KBps的速度,在设置后提高到几百KBps,效果还是很明显的 阅读全文
摘要:
目的 通过引用变量的方式,在watcher 邮件通知中添加触发警告的相关信息,以便收到邮件后能快速定位问题。 示例 环境:CentOS Linux release 7.7.1908 (Core)、[Elasticsearch Watcher 2.4]、[Elasticsearch Reference 阅读全文
摘要:
elasticsearch各节点操作 # 安装邮件发送客户端工具mailx yum install -y mailx # elasticsearch.yml 添加以下配置 xpack.notification.email.account: work: profile: standard email_ 阅读全文
摘要:
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 阅读全文