PDA

View Full Version : ftp


lvc
22nd August 2005, 11:33 AM
i'm using FC3 and i want to create an ftp account...how do i do this in command-line and/or desktop?

your help will be highly appreciated!!!

Jman
22nd August 2005, 08:47 PM
You want a ftp server?

yum install vsftpd

enaille
23rd August 2005, 03:05 AM

i'm using FC3 and i want to create an ftp account...how do i do this in command-line and/or desktop?

your help will be highly appreciated!!!

Create a user account:
useradd "username"
passwd "username" (add or change password)

lvc
23rd August 2005, 05:05 PM
but I already have FTP that comes with FC3 installed...
do i have to install again

user11
23rd August 2005, 05:38 PM
but I already have FTP that comes with FC3 installed...
do i have to install again

No, just do as enaille said and try to log in with that username/password.
Make sure your vstpd is running:

As root:
$ chkconfig --level 5 vsfptd on
$ services vsfptd start

lvc
26th August 2005, 08:39 AM
No, just do as enaille said and try to log in with that username/password.
Make sure your vstpd is running:

As root:
$ chkconfig --level 5 vsfptd on
$ services vsfptd start

But this is the system user account,isn't is? or that the same way the ftp account is created?