LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   error 403 Forbidden symbolic link not allowed (https://www.linuxquestions.org/questions/linux-software-2/error-403-forbidden-symbolic-link-not-allowed-155908/)

vree13 03-10-2004 12:28 PM

error 403 Forbidden symbolic link not allowed
 
i'm running apache and big brother and after using webmin, i can't view anything in the bb directory. everything else running on apache on my box is fine, but when i go to my bb page it gives me a 403 Forbidden error.

"You don't have permission to access /bb/ on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request."

when i check the httpd error log it says symbolic link not allowed. i do have the bb directory symbolically linked, but all my httpd files say to allow symlinks.

any suggestions? ideas??

thanks!

leobg 04-14-2004 10:49 AM

check does apache has permissions to access this directory

regards
leobg

oberonix 04-16-2004 09:58 AM

Im having the same problem, how do you check if apache has permissions?

leobg 04-16-2004 10:53 AM

check what is the user that httpd runs as. In Redhat it is usually 'apache' (not sure how is in Mandrake - you can find this out in your httpd.conf - directive 'User')
then check permissions of the folder you're trying to access via http - user 'apache' must be able to read/execute it. And not only the current dir, but all it parent dirs too ('execute' is enough for parents - no need of 'read'). For example:

drwxr-xr-x 2 root root 4096 Feb 6 1996 example

you can see the dir is owned by root, but group and others has r-x permissions - so everyone can cd in to 'example' and can read it content.

But if you have it like this:

drwxr-x--- 2 root root 4096 Feb 6 1996 example
or
drwx------ 2 root root 4096 Feb 6 1996 example

apache will not be able to read contents of this dir.

if you change it to be like this:
drwxr-x--- 2 root apache 4096 Feb 6 1996 example
or make the dir owned by apache:
drwx------ 2 apache somegroup 4096 Feb 6 1996 example
apache will be able to access it.
You can also assign apache to the approrative group and make the dir accessible by group members.

regards,
leobg

ncsuapex 01-03-2005 06:52 PM

I'm having a similar problem. I am running Fedora Core 3 and I get several error messages when I try to access a page on my website. The page I'm trying to access has content on my Windows XP box. I created a symbolic link to that DIR (this worked very well on RH9). When I boot up I get an error that says "Invalid line in /etc/fstab" I also get the "Symbolic link not allowed:" not allowed when I try to access the page. I can however access the files on my XP machine from my FC3 box so I know the connection between the two PCs are working. I have set the DIRS of /var/www/html/pics (symbolic link) to r-xr-xrwx and the /mnt/pics to r-x-r-x-rwx. The link in my fstab is as follows:

mount -t smbfs //"ip of windows machine"/pics /mnt/pics -o username="username of account on xp",password="usernames password"

I have changed the info in " " to protect the innocent.

Any Ideas on what to do next?

morrie 02-27-2005 10:48 PM

I experienced the same issue.
It turned out to be selinux that is the cause.
Selinux be default locks down Apache in order to prevent
both malicious behaviour, and to prevent people from
shooting themselves in the foot security wise.

Have a read up on selinux policy settings as you will need
to either modify the way you have BB setup, modify the
standard selinux policies, or disable selinux

The files you want to peruse are under /etc/selinux.

Regards,
Morrie.

paulengel 06-16-2005 12:04 PM

I'm seeing the same thing on SLES9.

I su'ed into wwwrun (using -s /bin/bash to get a shell) and I cannot traverse the link (Permission denied). What's more, if I cd into the link then su the pwd becomes the dereferenced directory.

paulengel 06-18-2005 10:46 AM

Found a workaround.. and maybe an answer
 
I was doing some more searching and found an interesting workaround:

>My work around was I did a loopback device--
>
>mount --bind /var/www/html/htdocs /home/userid
>
>this worked like a charm.

This was related to an FTP issue. The problem was that when someone FTP'd into the server they were chroot'd into their directory and the symbolic link would of taken them out of their jail. I'm not sure why I cannot follow the link when I su into wwwrun, but the workaround works.

dafunks 02-14-2008 08:58 PM

This is the reason why I love this forum. I have been banging my head on the desk trying all sorts of things, 2 minutes to read this thread and the simple idea and the problem was solved. :D


All times are GMT -5. The time now is 07:49 PM.