setup FTP server

bigu_c

New Member
I'm using webmin, and then go to tab: Server >> ProFTPD Server, then get:

The ProFTPD server /usr/sbin/proftpd could not be found on your system. Maybe it is not installed, or your module configuration is incorrect.

The ProFTPd package can be automatically installed by Webmin. Click here to have it downloaded and installed using YUM.

Click to install then get:

Installing package(s) with command yum -y install proftpd ..

Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Nothing to do

.. install complete.

What's happen?

Please help me!
 
Sorry for i a newbie...

Webmin is not a full control panel by any means. If you are a newbee it is impretive for your sake and for the stability of your VPS that you purchase Plesk/CPanel/Directadmin for an additional $5/month.
 
CentOS does not provide proftpd in its reprository, you have to manually install it or an easier way is to add the repo location where proftpd is updated, follow my instructions:

go in /etc/yum.repos.d and open the file CentOS-Base.repo and add this to the bottom of the file:

Code:
[utterramblings]
name=Jason's Utter Ramblings Repo
baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
The first repo utterrambling is from jasonlitka.com/yum-repository, the guy maintaining this is cool to setup this and provide us with last apache 2.2.6 php 5.2.5 for example :)

The second one is a redhat one compatible with CentOS wich as much more updated stuffs. (this one has proftpd 1.3.1)

Import GPG keys to check packages validity

Code:
[B]rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt[/B]  
[B]rpm --import [/B][B]http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka[/B]
Then simply type yum install proftpd and it will automatically install the last version, I'd recommand you to yum update, this will update automaticaly mysql apache php to your latest version, make sure theses packages are not in the exclusion list of your yum.conf so.

Hope it helps, I'm doing this on my VPS, works like a charm, remember webmin does not install packages, you must install them with yum first and then webmin helps a lot configuring them.

I will do a full post because this is interesting instructions I have found on the web.

//edit: made a full post there http://forums.knownhost.com/showthread.php?t=1143 if you want to bookmark it as a reminder you're welcome :)
 
Top