Hi, I’m Dung Huynh Duc . Nice to meet you.

About Me

I’m a full stack developer. I’m a fast learner and self-taught coder. I often take my time for researching and learning about hot and trending technology.

SSH
Digital Ocean

#TIL 12 - Fix the SSH issue with droplet on Digital Ocean

blog_hero_#TIL 12 - Fix the SSH issue with droplet on Digital Ocean

I have sent an email to Digital Ocean for support but not much help for me. Luckly, I found out the way after reading a comment from the community question.

(Ubuntu 18.04):

    sudo nano /etc/ssh/sshd_config
    PermitRootLogin prohibit-password to PermitRootLogin yes
    PasswordAuthentication no to PasswordAuthentication yes

then, restart ssh service:

    sudo service ssh restart