Auto Start of Proftpd on OpenSuse Linux
Posted
by
a_ak
on Server Fault
See other posts from Server Fault
or by a_ak
Published on 2011-06-08T18:25:13Z
Indexed on
2011/06/25
0:24 UTC
Read the original article
Hit count: 545
I´m trying to activate the Ftpservice on my Root Server, i have OpenSuse installed, and I´m using the xinetd method ..
i added this to my xineted.conf:
service ftp
{
flags = REUSE
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/sbin/in.proftpd
disable = no
}
I´m not sure about this "server = /usr/sbin/in.proftpd" .. i added the code directly in the xinetd.config and not in a seperate file..
and to my proftpd.conf as the documentation of profdtp ( was already setted) :
ServerType inetd
Then I restarted the xineted service .. and no errors to see, but the proftpd ist still not statrting/launching .. I searched alot on google, but everywhere they say to do what i did abouve, nothing more.. did i miss something ?
© Server Fault or respective owner