Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
See original GitHub issue steps:
- name: Install SSH key
uses: shimataro/ssh-key-action@v1
with:
name: id_rsa-prod
private-key: ${{ secrets.RSA_KEY }}
known-hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
config: |
Host prod
HostName ${{ secrets.SERVER_IP }}
Port ${{ secrets.SERVER_PORT }}
User ${{ secrets.SERVER_USER }}
- name: Publish
run: |
ssh prod -tt -i ~/.ssh/id_rsa-prod
output
Run ssh prod -tt -i ~/.ssh/id_rsa-prod
***@***: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
##[error]Process completed with exit code 255.
my sshd_config
PasswordAuthentication no
RSAAuthentication yes
PubkeyAuthentication yes
How can i do?
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
How to Fix SSH Failed Permission Denied (publickey,gssapi ...
The SSH Permission Denied (publickey,gssapi-keyex,gssapi-with-mic) appears on SSH login. This tutorial features the steps to fix the error.
Read more >ssh : Permission denied (publickey,gssapi-with-mic)
Login to your server using console and open /etc/ssh/sshd_config file with an editor with root user and look for line PasswordAuthentication ...
Read more >SSH: Permission denied (publickey,gssapi-with-mic,password)
The username and password you are trying are not accepted by the host. That means either you are connecting to the wrong server,...
Read more >ERROR MESSAGE: Permission denied (publickey,gssapi...
ERROR MESSAGE: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password) · Generate public and private SSH keys on the Ambari Server ...
Read more >"Permission denied (publickey,gssapi-keyex,gssapi-with-mic ...
Trying to ssh without using the username. $ ssh -vvv -i ~/.ssh/aws.pem 52.88.251.23 Error message: Permission denied (publickey,gssapi-keyex, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for your patience, I can work after changing the RSA encryption file
I’m also facing this issue, may you elaborate on how to fix this issue?