- Dec 22, 2001
- 544
- 0
- 0
Originally posted by: IcePhoenix
Thanks for the responses. I downloaded GProFTPD and it installs and loads up just fine. When I try and turn the server to ONLINE, the console reports
proftpd: no process killed
sh: line 1: proftpd: command not found
and it doesn't turn on. Any idea why?
Also, when I try and run proftpd, I get
- no such group 'nogroup'
- Fatal: Group: Unknown group 'nogroup'.
Do you think these two are related?
Originally posted by: n0cmonkey
Originally posted by: IcePhoenix
Thanks for the responses. I downloaded GProFTPD and it installs and loads up just fine. When I try and turn the server to ONLINE, the console reports
proftpd: no process killed
sh: line 1: proftpd: command not found
and it doesn't turn on. Any idea why?
Also, when I try and run proftpd, I get
- no such group 'nogroup'
- Fatal: Group: Unknown group 'nogroup'.
Do you think these two are related?
Create a group called "nogroup". The error is self explanatory. And whats up with a "graphical" ftp server?
Originally posted by: Sunner
"groupadd nogroup"
There's another way??? :QI have a nasty habit of learning from trial and error.
Originally posted by: IcePhoenix
Alright. I toughed it out with FAQs and MAN pages, and I got the server running. Even got NTFS readable by users other then root
But I cannot. For the LIFE of me, find out how to limit access. ie, how to deny permissions to certain folders. Do I use normal linux permissions, or can I set them in proftpd (I gave up on GUI, the daemon is fine )
Originally posted by: n0cmonkey
Originally posted by: IcePhoenix
Alright. I toughed it out with FAQs and MAN pages, and I got the server running. Even got NTFS readable by users other then root
But I cannot. For the LIFE of me, find out how to limit access. ie, how to deny permissions to certain folders. Do I use normal linux permissions, or can I set them in proftpd (I gave up on GUI, the daemon is fine )
ftpd should not be run as root, so using a user like "ftpd" or "nobody" would be a better idea. You should be able to use linux permissions to block access, if there are no utilities to do that in proftpd (check the man page). Look into chrooting your ftp server too.
Originally posted by: Need4Speed
youre best bet is the read some example con files or do a search for my username...there should be a post where i went into all of that.
proftpd uses a combination of linux file permssions with directives in the prodtpd.conf file. for example, if you have a folder thas read/write only for root and you set the directive in the conf file to read/write for all ftp users it wont work since the file system has presedence...in that example the folder would have to have OS read/write permssions.
persmissions in the conf file are set up using <limit> and <directory> directives...here is a quick example:
<Directory /var/ftp/linux/*>
<Limit READ>
AllowUser activeftp
DenyUser uploadftp
</Limit>
<Limit APPE DELE MKD RMD RNTO RNFR STOR XMKD XRMD>
DenyAll
</Limit>
</Directory>
this would allow users activeftp and uploadftp to read the /var/ftp/linux directory, but not write to it.
Originally posted by: Mucman
No one gives pure-ftpd any love! It has a GUI front end if you really really really really want one... but It has
just one config file so I don't see why a GUI would be necessary. Pureftpd is also very secure, and very configurable...
</end advertisement>
Originally posted by: n0cmonkey
Originally posted by: Mucman
No one gives pure-ftpd any love! It has a GUI front end if you really really really really want one... but It has
just one config file so I don't see why a GUI would be necessary. Pureftpd is also very secure, and very configurable...
</end advertisement>
Id probably play with pureftp based on reputation if I liked ftp enough to run it.
Originally posted by: Mucman
Originally posted by: n0cmonkey
Originally posted by: Mucman
No one gives pure-ftpd any love! It has a GUI front end if you really really really really want one... but It has
just one config file so I don't see why a GUI would be necessary. Pureftpd is also very secure, and very configurable...
</end advertisement>
Id probably play with pureftp based on reputation if I liked ftp enough to run it.
There's not much to play with... edit the config file once, and the thing just works... in fact it's rather boring
Originally posted by: Mucman
Originally posted by: n0cmonkey
Originally posted by: Mucman
No one gives pure-ftpd any love! It has a GUI front end if you really really really really want one... but It has
just one config file so I don't see why a GUI would be necessary. Pureftpd is also very secure, and very configurable...
</end advertisement>
Id probably play with pureftp based on reputation if I liked ftp enough to run it.
There's not much to play with... edit the config file once, and the thing just works... in fact it's rather boring