79169506

Date: 2024-11-08 09:52:13
Score: 2
Natty:
Report link

To resolve the issue of "No supported authentication methods available (server sent: publickey)" with FireZilla, I was able to solve it by modifying the SSH daemon configuration on the server. Here's what worked for me:

Open the SSH daemon configuration file, typically located at

"/etc/ssh/sshd_config"

Add or modify the following lines:

"

PubkeyAuthentication yes

PubkeyAcceptedKeyTypes=+ssh-rsa

"

Save the changes and restart the SSH service using:

"sudo systemctl restart sshd"

This ensures that public key authentication is enabled and that ssh-rsa is explicitly accepted as a key type, resolving compatibility issues that could arise due to key type restrictions. I hope this helps anyone facing similar issues!

Thanks me later !!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): hope this helps
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Low reputation (1):
Posted by: Taukir Katava