Hey, I have a problem. I installed pure-ftpd, and it compiled fine, and if I say "sudo pure-ftpd &" it works, but that's not what I want... I want xinetd to control it.
So... I edit the /etc/xinetd.d/ftp file to:
service ftp
{
socket_type = stream
server = /usr/local/sbin/pure-ftpd
server_args = -s -a 80 -c 5 -C 2 -E -K -R
protocol = tcp
user = root
wait = no
disable = no
}
So, we have a couple of problems.
First of all, xinetd isn't even running. Woah. Only inetd is. I thought inetd was no longer supposed to be used in 10.2 ... ?
oh, and here is /etc/xinetd.conf for good measure:
# man xinetd.conf for more information
defaults
{
instances = 60
log_type = SYSLOG daemon
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
Any ideas what's wrong? And why xinetd isn't running? It was, after all, installed by jag.
So... I edit the /etc/xinetd.d/ftp file to:
service ftp
{
socket_type = stream
server = /usr/local/sbin/pure-ftpd
server_args = -s -a 80 -c 5 -C 2 -E -K -R
protocol = tcp
user = root
wait = no
disable = no
}
So, we have a couple of problems.
First of all, xinetd isn't even running. Woah. Only inetd is. I thought inetd was no longer supposed to be used in 10.2 ... ?
oh, and here is /etc/xinetd.conf for good measure:
# man xinetd.conf for more information
defaults
{
instances = 60
log_type = SYSLOG daemon
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
Any ideas what's wrong? And why xinetd isn't running? It was, after all, installed by jag.