1
In〜/ .ssh/authorized_keys我添加了一個想要連接到服務器的用戶的公鑰。權限被拒絕,但在服務器上添加了publickey?
當該用戶嘗試連接時,他會得到一個Permission denied(publickey)錯誤。錯誤日誌:
input_userauth_request: invalid user USERNAME [preauth]
在我的配置(在/ etc/SSH/sshd_config中)文件我有:
AllowUsers USERNAME
在我的配置(/~.ssh/config),我有:
Host hostname
User root
User USERNAME
HostName IP address
IdentityFile ~/.ssh/id_rsa
PubKeyAuthentication yes
爲什麼他不能登錄到服務器?