Page 1 of 1

Add a FTP-user

PostPosted: 09. September 2009 19:08
by Kottizen
I'm running Ubuntu server 8.04 and need to know how to add so a user get 100% access of one folder (and folders under it). I've recently runned "sudo adduser <username>" to add the user to the system, but how do I add him to the FTPd?

Re: Add a FTP-user

PostPosted: 09. September 2009 19:57
by Nobbie
What tells the FTPd manual?

Re: Add a FTP-user

PostPosted: 10. September 2009 15:18
by Kottizen
I've searched in it, but I can't find any answer... :(

Re: Add a FTP-user

PostPosted: 12. September 2009 04:35
by utan
This is what i use to grant access to a specific folder,
create a user in the user manager of your unix OS,
At the end of the proftpd.conf add this directives.
Code: Select all
<Global>
RequireValidShell off
AllowOverwrite on
AllowRetrieveRestart on
AllowStoreRestart on
Umask            022
DefaultTransferMode ascii
AllowOverwrite on
MaxClients 3
DeleteAbortedStores on
DefaultRoot /opt/lampp/htdocs/"thefolder-you want to have" "theusername-created"
</Global>

access the folder content with filezilla or a program of your linking... use user name and password that you created for that determined user that will have access..
hope this help...