Skip to content

Cart

Your cart is empty

Can not connect to Jetson via SSH.


Question: I’m having trouble connecting to the Jetson device via SSH. How can I fix it?

Sometimes, issues with SSH can be resolved by reinstalling the OpenSSH server.
Follow these steps:
    Remove existing OpenSSH packages and clean up related files:
sudo apt remove --purge openssh*  
sudo apt autoremove  
sudo apt clean  

    Reinstall the OpenSSH server:
sudo apt install openssh-server  

After reinstalling, try connecting via SSH again.