How to Make a new account in Proftpd

Status
Not open for further replies.

Sushant

Active Member
265
2009
38
0
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
 
4 comments
i use this everytime i reinstall the os
Code:
yum -y install proftpd
nano /etc/shells
Add this line in /etc/shells file (sudo gedit /etc/shells to open the file) : /bin/false
useradd userftp -p 'mypass' -d /home -s /bin/false
passwd userftp
/etc/init.d/proftpd start
this is for centos
 
i use this everytime i reinstall the os
Code:
yum -y install proftpd
nano /etc/shells
Add this line in /etc/shells file (sudo gedit /etc/shells to open the file) : /bin/false
useradd userftp -p 'mypass' -d /home -s /bin/false
passwd userftp
/etc/init.d/proftpd start
this 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 mahesh
Response: 331 Password required for mahesh
Command: PASS  ********
Response: 530 Login incorrect.
Error: Critical error
Error:  Could not connect to server

Hi i m trying yours one but i getting abve error
 
This is means your password is wrong. change it and try again.

i read before that if you want to add FTP user. you need to add new User account in LinuxOS and providing privileges to the account to login through FTP:21.

above are correct commands, try using your Root account.
 
Status
Not open for further replies.
Back
Top