0

I have a NFS share mounted on my redhat server but now I need to change the owner so apache can access it.

chown -R apache:apache /folder

doesn't work.

Anyone tips?

DanTheMan
  • 123
  • 2
  • 10

1 Answers1

0

You might have to take look at the below reference

http://www.cyberciti.biz/tips/linux-nfs-storage-for-apache-lighttpd-nginx-webserver.html

and modify your configuration accordingly

ganeshragav
  • 8,695
  • 1
  • 16
  • 13
  • 1
    Thank you very much for this helpfull link. I created the user apache on the NFS server and gave it the right groupid and now he is the owner of the NFS share and it works! – DanTheMan Jul 24 '14 at 14:59