Report this

What is the reason for this report?

File Ownership (Apache+FTP)

Posted on February 9, 2014
dor

By dor

Hi there, I am running a server using CentOS 6.5 x64, and i followed the following tutorials: https://www.digitalocean.com/community/articles/how-to-configure-vsftpd-to-use-ssl-tls-on-a-centos-vps https://www.digitalocean.com/community/articles/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6

And when i connect to the FTP, the files owner is Apache and the FTP doesnt let me upload/edit/delete the files because of the the files aren’t my FTP user, but if i change the ownership to my user, apache can’t run it.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Change the ownership to your user and then run the following commands: <br><pre>sudo chgrp -R apache /path/to/your/files <br>sudo chown -R g+w /path/to/your/files</pre>

can you explain the commands?

The first command sets the group ownership to the group that’s called “apache”. The second command adds write permissions to members of the group that owns the files (which is apache in this case). This allows apache to write to the files.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.