上一页 1 2 3 4 5 6 ··· 22 下一页
摘要: 问题: Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add this host 阅读全文
posted @ 2024-09-12 10:35 LB_运维技术 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2024-09-11 15:49 LB_运维技术 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 请确保 sar 已经安装并正在记录数据。你可以通过以下步骤确保 sar 正在运行:服务是sysstat 查看 CPU 使用情况: sar -u -s 00:00:00 -e 06:00:00 查看内存使用情况: sar -r -s 00:00:00 -e 06:00:00 查看 I/O 和传输速率: 阅读全文
posted @ 2024-07-05 09:10 LB_运维技术 阅读(65) 评论(0) 推荐(0) 编辑
摘要: cat /etc/passwd | egrep '^hnoa3|^huxianghui|^zhousichong' |awk -F: '{print $1}' | xargs -I {} sh -c 'echo "User: {}"; id {}; echo " "'cat /etc/passwd 阅读全文
posted @ 2024-06-20 09:14 LB_运维技术 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 修改vsftp回显信息 ansible -i hosts task -m shell -a "grep 'ftpd_banner' /etc/vsftpd/vsftpd.conf" sed -i '/ftpd_banner/s/^/#/g' /etc/vsftpd/vsftpd.conf ansib 阅读全文
posted @ 2024-06-06 09:04 LB_运维技术 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 临时解决方案: #service postfix status#service sendmail status#service postfix stop[root@wign ~]# ps -ef|grep sendmail|wc -l3038[root@wign ~]# ps -ef|grep po 阅读全文
posted @ 2024-05-24 10:15 LB_运维技术 阅读(222) 评论(0) 推荐(0) 编辑
摘要: linux系统查找占用swap空间最多的10个进程(1)ps -eo pid,user,comm,pmem,vsz --sort=-vsz | head -n 11(2)for i in $(cd /proc;ls | grep "^[0-9]"|awk '$0 >100');do awk '/Sw 阅读全文
posted @ 2024-05-15 17:01 LB_运维技术 阅读(961) 评论(0) 推荐(0) 编辑
摘要: cat /sys/devices/system/cpu/smt/active 该命令将显示一个数字,表示当前SMT的状态。通常情况下: 如果该文件中的值为1,则表示SMT已启用。 如果该文件中的值为0,则表示SMT已禁用。 请注意,更改该文件的内容可能需要root权限。如果您希望启用或禁用SMT,您 阅读全文
posted @ 2024-05-15 14:17 LB_运维技术 阅读(202) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # 获取所有僵尸进程的PID zombie_pids=$(ps -A -o stat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print $3}') # 遍历每个僵尸进程的PID并杀死它们 for pid in $zombie_pids; 阅读全文
posted @ 2024-05-14 09:33 LB_运维技术 阅读(151) 评论(0) 推荐(0) 编辑
摘要: chage -d `date '+%F'` 用户 阅读全文
posted @ 2024-05-13 16:22 LB_运维技术 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 22 下一页