2 May 2005 21:56
3 May 2005 05:00
pure-ftpd with deamon tools
P.V.Anthony <pvantony <at> singnet.com.sg>
2005-05-03 03:00:39 GMT
2005-05-03 03:00:39 GMT
Hi, Has anyone used pure-ftpd with deamon tools? Can this be done? I have tried but it always states that the pure-ftpd is restarting. But the pure-ftpd is working fine. Could it be because it always starts a new server with a new connection? Please advice. P.V.Anthony --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 07:56
Re: auth tls
Frank Denis (Jedi/Sector One <j <at> pureftpd.org>
2005-05-03 05:56:54 GMT
2005-05-03 05:56:54 GMT
On Mon, May 02, 2005 at 03:56:53PM -0400, Michael Da Silva wrote: > 234: AUTH TLS OK. > error:00000000:lib(0):func(0):reason(0) > what does this error mean when trying to connect via tls? Read the FAQ :) --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 07:57
Re: pure-ftpd with deamon tools
Frank Denis (Jedi/Sector One <j <at> pureftpd.org>
2005-05-03 05:57:00 GMT
2005-05-03 05:57:00 GMT
On Tue, May 03, 2005 at 11:00:39AM +0800, P.V.Anthony wrote: > Has anyone used pure-ftpd with deamon tools? Are you talking about the windows daemontools or the djb unix one? --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 07:17
Re: pure-ftpd with deamon tools
Szabo Nandor <medve <at> wenetto.hu>
2005-05-03 05:17:25 GMT
2005-05-03 05:17:25 GMT
> > Has anyone used pure-ftpd with deamon tools? > > Can this be done? > > I have tried but it always states that the pure-ftpd is restarting. But > the pure-ftpd is working fine. > > Could it be because it always starts a new server with a new connection? Don't use the -B ( --daemonize) option. The run script, example: #!/bin/sh exec /usr/local/sbin/pure-ftpd -Oclf:/var/log/pureftpd/pureftpd.log \ -A -j -H -lunix 2>&1 Best regards, Nandor --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 08:44
Re: Re: pure-ftpd with deamon tools
P.V.Anthony <pvantony <at> singnet.com.sg>
2005-05-03 06:44:34 GMT
2005-05-03 06:44:34 GMT
Szabo Nandor wrote: >> >> Has anyone used pure-ftpd with deamon tools? >> Can this be done? >> I have tried but it always states that the pure-ftpd is restarting. >> But the pure-ftpd is working fine. >> Could it be because it always starts a new server with a new connection? > > > Don't use the -B ( --daemonize) option. > The run script, example: > #!/bin/sh > exec /usr/local/sbin/pure-ftpd -Oclf:/var/log/pureftpd/pureftpd.log \ > -A -j -H -lunix 2>&1 > > Best regards, > Nandor > Thanks. I will try it out as well. P.V.Anthony --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 11:42
virtual servers
Mohammad Zohny <mohammad.zohny <at> gmail.com>
2005-05-03 09:42:15 GMT
2005-05-03 09:42:15 GMT
i want your help in making virtual servers: i have done these steps: ifconfig eth0:0 192.168.1.1 <http://192.168.1.1> mkdir /srv/ftp/domain1/ftp ln -s /srv/ftp/domain1/ftp /etc/pure-ftpd /etc/init.d/pure-ftpd restart then, ftp 192.168.1.1 <http://192.168.1.1> and login as anonymous, it still login to "/srv/ftp" directory not to the virtual domain directory "/srv/ftp/domain1/ftp" are this steps true?
3 May 2005 11:47
Re: virtual servers
Frank Denis (Jedi/Sector One <j <at> pureftpd.org>
2005-05-03 09:47:15 GMT
2005-05-03 09:47:15 GMT
On Tue, May 03, 2005 at 12:42:15PM +0300, Mohammad Zohny wrote: > ftp 192.168.1.1 <http://192.168.1.1> > and login as anonymous, it still login to "/srv/ftp" directory not to the > virtual domain directory "/srv/ftp/domain1/ftp" > are this steps true? The ifconfig eth0:0 step is funny (remembers me the good'ol Linux 1.3/2.0 days) but it should still work. How did you install pure-ftpd? If you compiled it yourself, make sure that you enabled virtual hosts at ./configure time. --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 12:22
how to restrict every virtual user 's priviege to write files owned by other virtual users?
John Smith <linux.john <at> gmail.com>
2005-05-03 10:22:24 GMT
2005-05-03 10:22:24 GMT
use -l puredb option the pureftpd server owned by 100 virtual users, and they all own the same upload directory. I set the same uid and gid to these virtual users. as a result, they all can wirte files upload by other virtual users. how can I solve this problem, must I assign each virtual user a dedicated uid? 1000 user means 1000 uid? --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
3 May 2005 08:43
Re: pure-ftpd with deamon tools
P.V.Anthony <pvantony <at> singnet.com.sg>
2005-05-03 06:43:35 GMT
2005-05-03 06:43:35 GMT
Frank Denis (Jedi/Sector One) wrote: > On Tue, May 03, 2005 at 11:00:39AM +0800, P.V.Anthony wrote: > >>Has anyone used pure-ftpd with deamon tools? > > > Are you talking about the windows daemontools or the djb unix one? > I am using the djb unix on linux Fedora Core 1. Thanks for the reply. P.V.Anthony --------------------------------------------------------------------- To post a new message, e-mail: list <at> pureftpd.org To unsubscribe, e-mail: list-unsubscribe <at> pureftpd.org For additional commands, e-mail: list-help <at> pureftpd.org
RSS Feed