From: Thomas Weber (x_at_4t2.com)
Date: Fri 02 Aug 2002 - 22:15:56 BST
On Fri, Aug 02, 2002 at 01:25:07PM -0700, Ian Douglas wrote:
> Anyhow, I have my server, and on it, one virtual server to poke around and
> learn about it before adding another handful of vservers, and have noticed
> that while you've got v_httpd, v_sendmail, v_sshd, v_named, etc., there's no
> v_ftpd service.
cat /etc/init.d/v_named | sed -e 's|named|ftpd|' > /etc/init.d/v_ftpd
there you got it :-)
> Did I miss something in the docs about a 'wrapper' application or something
> of that nature that I can wrap around ProFTPD to work here? I tried to just
> "service proftpd start" the daemon, but it failed 'cause port 21 was already
> in use on the main server.
because the ftpd in the main server has bound to that ip+port already.
use the script above to start it only on the main servers ip.
Tom