Portal Home > Knowledgebase > Articles Database > proftpd or vsftp ? and how ?
proftpd or vsftp ? and how ?
Posted by mixmox, 02-08-2012, 05:03 PM |
hello
how can i compile and create proftp or vsftp on centos?
and creat user.
to only store our backup.
no need extra service like exim or ....
|
Posted by rds100, 02-08-2012, 05:09 PM |
Compile? Why?
yum install vsftpd
chkconfig vsftpd on
service vsftpd start
|
Posted by BlackOctet, 02-08-2012, 05:16 PM |
Then, create your users with the following command:
useradd -s /sbin/nologin -d /BACKUP_LOCATION USERNAME
|
Posted by barbus, 02-09-2012, 03:50 PM |
Yes, you don't need to compile what are already compiled. Installation of proftpd is easy as well.
|
Posted by mixmox, 02-15-2012, 03:36 PM |
dude authenticate is deny.
what should i do
|
Posted by mathev, 02-15-2012, 03:56 PM |
Can you paste the output which you are executing to examin
|
Posted by rds100, 02-15-2012, 03:57 PM |
Check logs. If this doesn't help - hire an admin.
|
Posted by jaylinux, 02-15-2012, 07:55 PM |
You can install vsftpd using yum and then create a ftp user and password
1. yum install vsftpd
2. useradd -s /sbin/nologin -d /LOCATION USERNAME
3. passwd USERNAME
|
Posted by dareORdie, 02-15-2012, 08:04 PM |
Go to vsftpd download site and scroll down to download the latest version of the vsftpd. Or use wget to download it directly on your server.
# wget ftp://vsftpd.beasts.org/users/cevans...d-2.3.2.tar.gz
Compile the vsftpd source
# tar xvfz vsftpd-2.3.2.tar.gz
# cd vsftpd-2.3.2
# make
After the make command executes successfully, you’ll see vsftpd file getting created in the current directory.
# ls -l vsftpd
|
Add to Favourites Print this Article
Also Read