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!
The title & contents of this article should be changed to <b>What is FTP and [WHY] It [Should NEVER be] Used?</b>
We would like to use SFTP on Transmit 4. Is this possible? We can’t seem to get it working as we normally would.
Never mind. We just had the wrong password. Works perfectly with transmit and I assume all other FTP clients.
To add to my previous post:
A viable and (more) secure alternative to FTP is SFTP: <a href=“https://www.digitalocean.com/community/articles/how-to-use-filezilla-to-transfer-and-manage-files-securely-on-your-vps”>How To Use Filezilla to Transfer and Manage Files Securely on your VPS</a>.
I have a droplet running Ubuntu 14.04. One of my site uses “FTP” for Registered Users for file uploads and downloads through scripts on the site (means requests are generated internally through server only and not for outside direct FTP). Can I use ProFTPD or VSFTPD on my droplet? Is there any link to ready to use instructions?
@saurabh.vashist: You can install ProFTPd: How To Set Up ProFTPD on Ubuntu 12.04. The package in 14.04 is called proftpd-basic instead of just proftpd.
To make it accessible internally only, edit the configuration file:
sudo nano /etc/proftpd/proftpd.conf
Add DefaultAddress 127.0.0.1 after Port 21 and restart ProFTPd:
sudo service proftpd restart
Make sure the configuration change took effect (the output should be 127.0.0.1:21):
sudo netstat -plutn | grep -i ftp
I already create new user to reguler access. When I tried to upload using filezilla, to my /var/www , i got
Response: 550 index.html: Permission denied
Error: Critical file transfer error
Response: 550 style.css: Permission denied
Error: Critical file transfer error
I already change my owner of file to user that I created before, with this command :
sudo chown -R $user:$user /var/www/mysite.com/
But, I still get the erorr
This comment has been deleted