FollowSymLinks - how to setup - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T06:12:06Z http://stackoverflow.com/feeds/question/86119 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/86119/followsymlinks-how-to-setup 1 FollowSymLinks - how to setup jim 2008-09-17T18:23:08Z 2008-11-26T17:39:53Z <p>I am trying to have Apache follow a symlink to a raid array server that will contain some large data files. I have tried modifying httpd.conf to have an entry like this</p> <p> Options FollowSymLinks AllowOverride all Order allow,deny Allow from all </p> <p>to have Apache follow any sym link in the Sites folder.</p> <p>I keep getting an error return that seems to indicate I don't have any permissions to access the files. The error is: Forbidden</p> <p>You don't have permission to access /~imagine/imageLibraryTest/videoClips/imageLibraryVideos/imageLibraryVideos/Data13/0002RT-1.mov on this server.</p> <p>the sys link file is the last "imageLibraryVideos" in the line with the Data13 being the sub dir on the server containing the file. </p> <p>The 0002RT-1.mov file hase these permissions: -rwxrwxrwx 1 imagine staff 1138757 Sep 15 17:01 0002RT-1.mov and is in this path: cd /Volumes/ImagineProducts-1/Users/imagine/Sites/imageLibraryVideos/Data13 </p> <p>the link points to: lrwxr-xr-x 1 imagine staff 65 Sep 15 16:40 imageLibraryVideos -> /Volumes/ImagineProducts-1/Users/imagine/Sites/imageLibraryVideos</p> http://stackoverflow.com/questions/86119/followsymlinks-how-to-setup/86137#86137 1 Answer by Pi for FollowSymLinks - how to setup Pi 2008-09-17T18:25:41Z 2008-09-17T18:34:22Z <p>Look in the enclosing directories. They need to be at least mode 711. (<code>drwx--x--x</code>)</p> <p>Also, look in <code>/var/log/apache2/error_log</code> (Or whatever the concatenation of <code>ServerRoot</code> and <code>ErrorLog</code> is from the <code>httpd.conf</code>) for a possibly more-detailed error message.</p> <p>Finally, ensure you restart apache after messing with <code>httpd.conf</code>.</p> http://stackoverflow.com/questions/86119/followsymlinks-how-to-setup/86153#86153 0 Answer by Michael Ridley for FollowSymLinks - how to setup Michael Ridley 2008-09-17T18:28:19Z 2008-09-17T18:28:19Z <p>This is a permissions problem where the user that your web server is running under does not have read and/or execute permissions to the necessary directories in the symbolic link path. The quick and easy way to check is to <code>su - web-user</code> (where <code>web-user</code> is the user account that the web server is running under) and then try to cd into the path and view the file. When you come across a directory that you don't have permission to enter, you'll have to change the permissions and/or ownership to make it accessible by the web server user account.</p> http://stackoverflow.com/questions/86119/followsymlinks-how-to-setup/86157#86157 0 Answer by jim for FollowSymLinks - how to setup jim 2008-09-17T18:29:03Z 2008-09-17T18:29:03Z <p>Thanks,</p> <p>I've set the permissions to all the enclosing directories to 755<br /> but Apache cstill cannot access the file.</p> http://stackoverflow.com/questions/86119/followsymlinks-how-to-setup/321530#321530 0 Answer by warren for FollowSymLinks - how to setup warren 2008-11-26T17:39:53Z 2008-11-26T17:39:53Z <p>You should also look at bind mounts rather than symlinks - that would allow you to remount a given path at a new point. The following is an example:</p> <pre><code>mount --rbind /path/to/current/location/somewhere/else /new/mount/point </code></pre> <p>You can also edit your <code>fstab</code> to do this at boot:</p> <pre><code>/path/to/original /new/path bind defaults,bind 0 0 </code></pre>