Permission denied (publickey,gssapi-keyex,gssapi-with-mic)

1、服务器推送的时候出现权限问题Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
在这里插入图片描述
问题说明:典型的权限问题,当然也是好事,证明你服务器的防火墙还是正常工作的!!
2、解决方案

  1. 连接服务器打开sshd_config文件:
sudo vim /etc/ssh/sshd_config
  1. 放开下面的权限操作:
PasswordAuthentication yes # 是否允许密码登录?
PermitRootLogin yes # 是否运行root登录?
PubkeyAuthentication yes # 是否允许公钥登录?
  1. 重启配置文件服务
sudo systemctl restart sshd
service sshd restart

你可能感兴趣的:(Liunx系统,服务器,linux,centos)