Permission denied (publickey,gssapi-with-mic).の原因究明
ssh関連で、192.168.1.3から192.168.1.1へ入ろうとすると、Permission denied (publickey,gssapi-with-mic).が出る。
# slogin 192.168.1.1
Permission denied (publickey,gssapi-with-mic).
いろいろ原因を探ってみたが、その結果、セキュリティーを持たすためにsshd_configで
PasswordAuthentication no
としていたためと判明する。
# vi /etc/ssh/sshd_config
PasswordAuthentication yes
PermitEmptyPasswords no
#PasswordAuthentication no
#PermitRootLogin no
これで、次のように入ることが出来て問題を解決できた。
[root@BackupServer root]# slogin 192.168.1.1
root@192.168.1.1’s password:
Last login: Fri Aug 8 18:27:44 2008 from 192.168.1.2