Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Did all the steps as mentioned, but I get this message on Fillezila (mac):
Error: Disconnected: No supported authentication methods available (server sent: publickey) Error: Could not connect to server
Any idea on how I can debug this?
when i try to convert the keys via
"Now, we need to convert the public keys that are currently used to log into the server. If you only have one user, you can use this command:
sudo ssh-keygen -e -f ~username/.ssh/authorized_keys | sudo tee /etc/proftpd/authorized_keys/username"
i get “ssh-keygen: /home/main/.ssh/authorized_keys: No such file or directory”
I have followed all the steps mentioned but get this error. what am i doing wrong ?
@karambahosting: Add the SSH key you want to use to ~username/.ssh/authorized_keys (each one on its own line, usually starting with “ssh-rsa”) and then run that command.
Somewhat new to this but have implemented the above. What I need is to be able to create accounts that are upload only with each account pointing to one file directory only (unique). This while still having admin access through the root account to all folders. How would I go about doing this? Any direction would help me out a lot. Thanks
@Josh: <blockquote>This while still having admin access through the root account to all folders.</blockquote> root has access to everything all the time, no matter what. <blockquote>What I need is to be able to create accounts that are upload only with each account pointing to one file directory only (unique).</blockquote> Check out <a href=“https://www.digitalocean.com/community/articles/how-to-add-and-delete-users-on-ubuntu-12-04-and-centos-6”>https://www.digitalocean.com/community/articles/how-to-add-and-delete-users-on-ubuntu-12-04-and-centos-6</a>.
Hello, while filezilla is trying to connect it gives me an error: Disconnected: No supported authentication methods available (server sent: public key) why it can be? thanks
@foykes: You need to configure filezilla to use your SSH key that you configured PuTTy to use.
After this step: sudo ssh-keygen -e -f ~username/.ssh/authorized_keys | sudo tee /etc/proftpd/authorized_keys/username
I get prompted for my passphrase. Once I enter the password, I get this response: load failed
This is on a brand-new vanilla installation of ubuntu+LAMP
@magness.richard: Try the following command instead: <pre>sudo ssh-keygen -e -f /home/username/.ssh/authorized_keys | sudo tee /etc/proftpd/authorized_keys/username </pre>