Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msarsha/816e75059d7db3416fd9abf40af665cf to your computer and use it in GitHub Desktop.
Save msarsha/816e75059d7db3416fd9abf40af665cf to your computer and use it in GitHub Desktop.
How to SSH into a Proxmox container

Proxmox

So if you're using Proxmox you need to open up ssh and run the following commands:

  1. Setup a root password
sudo passwd root
  1. Enable ssh
nano /etc/ssh/sshd_config
  1. Change the following line:
PermitRootLogin without-password

to

PermitRootLogin yes
  1. Restart ssh
systemctl restart sshd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment