Find the answer to your Linux question:
Results 1 to 3 of 3
Hello.. After a couple of hours my vsftpd server is working correctly... Atleast I thought, I need to give my FTP user accses to download,upload,remove and create files.. I've tried ...
  1. #1
    Just Joined!
    Join Date
    Oct 2011
    Posts
    2

    vsftpd user accses.

    Hello.. After a couple of hours my vsftpd server is working correctly... Atleast I thought, I need to give my FTP user accses to download,upload,remove and create files.. I've tried giving the user all privileges and I still can't download remove etc.. Anyone who could help me? (:

  2. #2
    Just Joined!
    Join Date
    Sep 2007
    Posts
    51

    Vsftpd server

    1. I think the first thing you should do is send us is a copy of the vsftpd.conf file so we can dissect the configuration file

    2. Could you check the directory in which you are trying to download files to, make sure the directory in which you are trying to download has the correct permissions:

    permissions ID user group size Date Time user
    Code:
    chmod -R 755 /home/user
    chown -R user:group /home/user
    For example:
    Code:
    drwxr-xr-x   2 user   group  4096  2011-07-05 18:33 user

  3. #3
    Just Joined!
    Join Date
    Oct 2011
    Posts
    2
    I tried
    Code:
    chmod -R 755 path
    chown -R USER path
    and work's now.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •