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 separate file.
and to my proftpd.conf as the documentation of profdtp ( was already set):
ServerType inetd
Then I restarted the xineted service and no errors to see, but proftpd is still not starting/launching. I searched a lot on google, but everywhere they say to do what i did above, nothing more. Did I miss something ?