linux 能ping通ssh訪問不了

zmm521發表於2024-11-18

1.檢視ssh服務的狀態

systemctl status sshd

2.異常情況下可以重新安裝

yum -y remove openssh

yum -y install openssh

systemctl start sshd

3.還不行檢查下systemctl status sshd報錯日誌,

journalctl -xe

日誌中提示“Unable to load host key "/etc/ssh/ssh_host_***_key": bad permissions”

處理方式:

檢視ls -al /etc/ssh/sshd_*key,刪除有問題的金鑰,重啟sshd服務,就解決了。

# rm -r /etc/ssh/ssh*key
# systemctl restart sshd

或者使用ssh-keygen命令來手動生成金鑰,不用重啟服務。
# ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key
# ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key
# ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key

相關文章