sar
日志查询命令sar -s 22\:40\:00 -e 22\:43\:00 -A -f sa07 | more
tcpdump
抓包tcpdump -iany host 10.225.156.67 -w 255.pcap
grep
命令 cat ./pod.txt | grep -E "flink|matrix" > pod1.txt
nvme
设备管理命令此命令常用来,进行nvme设备管理
nvme smart-log /dev/nvme0n1; nvme intel smart-log-add /dev/nvme0n1;
kubectl get pods --all-namespaces -owide | grep sp4-cknode-1970
iptable
网络防火墙nsenter -n -t $pid # 将进程pid ip table 加载到宿主机中
磁盘清理流程:
找到对应目录之后 find . -name “.log”-mtime +5 | xargs rm -rf |
perf stat -e L1-dcache-load-misses,L1-dcache-loads,L1-dcache-stores,L1-icache-load-misses,L1-icache-loads,LLC-loads,LLC-load-misses,LLC-stores,LLC-store-misses,LLC-prefetch-misses
# 1. 检查模块已被静态编译到内核中:
grep -e ipvs -e nf_conntrack_ipv4 /lib/modules/$(uname -r)/modules.builtin
# 2. 查询可加载内核模块
find /lib/modules/$(uname -r) -type f -name '*.ko*'
# 3. 加载内核模块
insmod /lib/modules/4.18.0-305.3.1.el8.x86_64/extra/openvswitch.ko
# 4. 展示内核模块
lsmod | grep openvswitch