Ubuntu xinetd configuration for proftpd 5
When you "sudo apt-get install proftpd" on Ubuntu, debconf will tell you that if you're using xinetd then you're on your own. Here is what you need to put in /etc/xinetd.d/proftpd to make it work:
# default: on
# description: ProFTPD FTP server
service ftp
{
flags = REUSE
socket_type = stream
instances = 50
wait = no
user = root
server = /usr/sbin/proftpd
}
Then just do "sudo /etc/init.d/xinetd restart", and you're all set.
Trackbacks
Use the following link to trackback from your own site:
http://blog.wilf.me.uk/trackbacks?article_id=ubuntu-xinetd-configuration-for-proftpd&day=04&month=10&year=2006
That for the tip. Very usefull!
Thanks for the tip. Very usefull!
Just what I needed. Thanks!
Thanks just perfect. :-)
This is an up to date information provided in the blog. For a long time been looking for such posts. Thanks to the person who has written this.