Debian 8 + vsftpd server

The question is the following - I have a user user that is in the user group:

id user uid=1000(user) gid=1000(user) groups=1000(user) 

And I have a folder folder owned by the user:

 ls -l drwxr-xr-x 13 user user 4096 Mar 18 05:50 folder 

However, on ftp (vsftpd is the default setting) with the credentials of this user, I cannot write a file to this directory:

 Ответ: 550 Permission denied. 

What am I doing wrong?

    1 answer 1

    It is necessary to uncomment the line in the vsftpd config

     write_enable=YES 

    and restart the service.