I am trying to set up FTP on Amazon Cloud Server, but without luck... I search over net and there is no concrete steps how to do it...

Since there is no steps on web, can someone help me finding it or write it here?

I usually use dedicated server or shared hosting, but I am not that good with those Cloud servers...

I found those commands to run:

$ yum install vsftpd
$ ec2-authorize default -p 20-21
$ ec2-authorize default -p 1024-1048
$ vi /etc/vsftpd/vsftpd.conf
#<em>---Add following lines at the end of file---</em>
    pasv_enable=YES
    pasv_min_port=1024
    pasv_max_port=1048
    pasv_address=<Public IP of your instance>
$ /etc/init.d/vsftpd restart

But I don't know where to write them...

Help?

link|improve this question

This question should be migrated to serverfault.com. – JVerstry Aug 13 '11 at 20:46
feedback

1 Answer

To enable passive ftp on an EC2 server, you need to configure the ports that your ftp server should use for inbound connections, then open a list of available ports for the ftp client data connections.

I'm not that familiar with linux, but the commands you posted are the steps to install the ftp server, configure the ec2 firewall rules (through the AWS API), then configure the ftp server to use the ports you allowed on the ec2 firewall.

So this step installs the ftp client (VSFTP)

> yum install vsftpd

These steps configure the ftp client

> vi /etc/vsftpd/vsftpd.conf
--    Add following lines at the end of file --
     pasv_enable=YES
     pasv_min_port=1024
     pasv_max_port=1048
     pasv_address=<Public IP of your instance> 
> /etc/init.d/vsftpd restart

but the other two steps are easier done through the amazon console under EC2 Security groups. There you need to configure the security group that is assigned to your server to allow connections on ports 20,21, and 1024-1048

link|improve this answer
I know what those lines means, but I don't know where to type them... That's the problem... – SharkTheDark Aug 13 '11 at 21:18
at the command line on the server that you're installing the ftp server onto? – jaminto Aug 13 '11 at 22:20
How to find command line? – SharkTheDark Aug 14 '11 at 8:14
Connect to your server via SSH: blog.taggesell.de/index.php?/archives/… – jaminto Aug 14 '11 at 13:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.