How to set up an FTP user on UBUNTU 9 server using vsftpd utility?

Posted by Pavel on Server Fault See other posts from Server Fault or by Pavel
Published on 2011-02-11T13:03:03Z Indexed on 2011/02/11 15:26 UTC
Read the original article Hit count: 345

Filed under:
|
|

Hi guys. I'm kinda new to this so bear with me. I've set up a server and now I need to create ftp user for it. I'm doing this by typing:

useradd pavel
passwd pavel

And then I'm running

iptables -I INPUT 1 -p tcp --dport 21 -j ACCEPT
iptables-save > /etc/iptables.rules

in order to open ftp ports and lastly, I'm changing the usermod by:

usermod -s /bin/sh pavel

So now tell me - what I'm doing wrong here? I just want to connect using FTP protocol. Please help...

© Server Fault or respective owner

Related posts about linux

Related posts about ubuntu