How to Make a new account in Proftpd

ahmessam

New Member
Hi
i have proftpd installed in my vps but now i want to add new ftp user account....i dont have any control panel installed...so can anyone tell me how can i add ftp user on particular directory.

Thanks i use this everytime i reinstall the os
Code: yum -y install proftpdnano /etc/shellsAdd this line in /etc/shells file (sudo gedit /etc/shells to open the file) : /bin/falseuseradd userftp -p 'mypass' -d /home -s /bin/falsepasswd userftp/etc/init.d/proftpd startthis is for centos Quote: adduser username
chown -R username /directory/
chmod -R 777 /directory/ For debian Quote: Originally Posted by t3od0r i use this everytime i reinstall the os
Code: yum -y install proftpdnano /etc/shellsAdd this line in /etc/shells file (sudo gedit /etc/shells to open the file) : /bin/falseuseradd userftp -p 'mypass' -d /home -s /bin/falsepasswd userftp/etc/init.d/proftpd startthis is for centos Code: Status: Connecting to 176.102.65.146:21...Status: Connection established, waiting for welcome message...Response: 220 FTP Server ready.Command: USER maheshResponse: 331 Password required for maheshCommand: PASS ********Response: 530 Login incorrect.Error: Critical errorError: Could not connect to serverHi i m trying yours one but i getting abve error
 
Top