How do I give apache access to a samba share?

10,998

You need to change your samba mount configuration so that you give permission to the www-data user and group to write to it. You may or may not have the ability to set specific directory permissions, but if not you'll have to set the entire drive the write access (which is bad for security).

I would personally advise using nfs instead of samba shares for networked storage and the use of ext3 or other fully featured file system.

http://www.cyberciti.biz/tips/how-do-i-set-permissions-to-samba-shares.html

https://help.ubuntu.com/community/Samba/SambaClientGuide

http://www.mattvanstone.com/2006/06/automatically_mounting_smb_sha/

Share:
10,998

Related videos on Youtube

Kevin
Author by

Kevin

Faith + Family! Next, doing whatever it takes to make the #webawesome as the CEO of Robojuice. If you are really winning you are working a plan. Say fired up 🔥

Updated on September 17, 2022

Comments

  • Kevin
    Kevin over 1 year

    I'm running a web server and the public_html folder is in a windows network drive shared by samba on Ubuntu Server 10.04.

    I have apache2 VH set to point to the folder and it works great. However, when my Drupal 6 install tries to create its default files it can not write to the locations required.

    Now, because this is only a dev machine; I have added www-data user and group to the visudo with ALL=(ALL) ALL

    I have also gone and changed the httpd.conf file to have the following:

    <Directory /media/samba>
          Order Allow,Deny
          Allow from all
    </Directory>
    

    When I change the envvars username to username with admin privileges it works just fine. Is there something i need to do with chmod to get www-data to work?