root@lm2hdp03 ~]# ps -ef | grep pkla-check-auth polkitd 2008 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> root 7315 2471 0 13:39 pts/19 00:00:00 grep --color=auto pkla-check-auth polkitd 10473 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 10677 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 11591 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 13274 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 19876 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 22282 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 31875 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 43302 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 44546 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct>
时间: 2024-04-28 10:23:51 浏览: 102
根据您提供的信息,可以看到有多个进程状态为`<defunct>`,即僵尸进程,它们的命令名称为`pkla-check-auth`,其父进程为`polkitd`。您可以使用`kill`命令将其杀死,方法如下:
1. 查看`pkla-check-auth`进程的进程ID(PID):`ps -ef | grep pkla-check-auth`
2. 使用`kill`命令将其杀死:`kill -9 PID`(将`PID`替换为实际的进程ID)
注意:不要将`polkitd`进程杀死,否则可能导致系统出现问题。
相关问题
[omm@lm2hdp03 logs]$ ps -A -ostat,ppid,pid,cmd |grep -e '^[Zz]' Z 1367 2008 [pkla-check-auth] <defunct> Z 1367 10473 [pkla-check-auth] <defunct> Z 1367 10677 [pkla-check-auth] <defunct> Z 1367 11591 [pkla-check-auth] <defunct> Z 1367 13274 [pkla-check-auth] <defunct> Z 1367 19876 [pkla-check-auth] <defunct> Z 1367 22282 [pkla-check-auth] <defunct> Z 1367 31875 [pkla-check-auth] <defunct> Z 1367 43302 [pkla-check-auth] <defunct> Z 1367 44546 [pkla-check-auth] <defunct> [omm@lm2hdp03 logs]$ ps -ef|grep 1367 polkitd 1367 1 36 2022 ? 120-11:52:03 /usr/lib/polkit-1/polkitd --no-debug polkitd 2008 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 10473 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 10677 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 11591 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 13274 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> omm 16825 42843 0 09:56 pts/19 00:00:00 grep --color=auto 1367 polkitd 19876 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 22282 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 31875 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 43302 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> polkitd 44546 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct> [omm@lm2hdp03 logs]$ ps -ef|grep 31875 omm 24893 42843 0 09:56 pts/19 00:00:00 grep --color=auto 31875 polkitd 31875 1367 0 2022 ? 00:00:00 [pkla-check-auth] <defunct>
根据您提供的信息,可以看到有多个进程状态为`<defunct>`,即僵尸进程,它们的命令名称为`pkla-check-auth`,其父进程为`polkitd`。您可以使用`kill`命令将其杀死,方法如下:
1. 查看`pkla-check-auth`进程的进程ID(PID):`ps -ef | grep pkla-check-auth`
2. 使用`kill`命令将其杀死:`kill -9 PID`(将`PID`替换为实际的进程ID)
注意:不要将`polkitd`进程杀死,否则可能导致系统出现问题。
[root@lm2hdp01 ~]# ssh lm2hdp03 ssh_exchange_identification: Connection closed by remote host
这个问题可能是由于以下原因导致的:
1. 网络连接问题:请确保您的网络连接正常,尝试重新连接或重启您的网络设备。
2. SSH配置问题:检查您的SSH配置文件,确保正确设置了SSH服务器的地址、端口和身份验证方式。您可以尝试使用其他SSH客户端或在不同的终端上尝试连接。
3. SSH服务器问题:检查目标服务器的SSH服务是否正常运行,确保没有防火墙或其他安全设置阻止了连接。您可以尝试通过其他方式(如物理访问或其他远程管理工具)来验证服务器的可用性。
如果您仍然无法解决问题,请提供更多详细信息,以便我能够帮助您更好地解决这个问题。
阅读全文