1、服务器推送的时候出现权限问题Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
问题说明:典型的权限问题,当然也是好事,证明你服务器的防火墙还是正常工作的!!
2、解决方案文章来源地址https://www.toymoban.com/news/detail-512861.html
- 连接服务器打开sshd_config文件:
sudo vim /etc/ssh/sshd_config
- 放开下面的权限操作:
PasswordAuthentication yes # 是否允许密码登录?
PermitRootLogin yes # 是否运行root登录?
PubkeyAuthentication yes # 是否允许公钥登录?
- 重启配置文件服务
sudo systemctl restart sshd
service sshd restart
文章来源:https://www.toymoban.com/news/detail-512861.html
到了这里,关于Permission denied (publickey,gssapi-keyex,gssapi-with-mic)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!