Ubuntu 10.04 with vsftpd: Can't chown /var/www?

2

For the life of me, I can't seem to chown my /var/www folder on my server. i want to:

chown -R ftpuser /var/www

And it returns Invalid Argument on every file change attempt. I've tried sudo with the same result. I'm logged in as user ubuntu while trying to do this, and ubuntu currently owns the /var/www folder.

I'm doing all this to try to get vsftpd working, and so far I can log in via ftp and list the folders, but I cannot write files, and I believe it's because of the permission issue above.

Any ideas how I can get this working?

bmilesp

Posted 2011-10-03T17:58:48.070

Reputation:

So if ftpuser owns the www folder, how is Apache supposed to be able to do anything in there? Don't change ownership... just add ftpuser to a common group with Apache and chgrp the dirs/files. – None – 2011-10-03T18:02:10.300

ok, so i tried adding ftpuser to ubuntu (the current owner/group). i still get '553 Could not create file' in Filezilla when trying to upload a file? – None – 2011-10-03T18:08:39.473

What are the perms on /var/www? – None – 2011-10-03T18:09:49.910

the permissions are set to 775 on var/www and recursive dirs – None – 2011-10-03T18:12:14.513

No answers