日期:2014-05-16  浏览次数:20894 次

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

After installed stellent UCM and Apache, start the admin web page:?

http://dhcp-beijing-cdc-10-182-106-221.cn.oracle.com/idc

It reports the error:

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

?

Fix:

1. Open the $APACHE_HOME/conf/httpd.conf.

?

2. Change the following lines:

?

<IfModule !mpm_netware_module>

#

# If you wish httpd to run as a different user or group, you must run

# httpd as root initially and it will switch.

#

# User/Group: The name (or #number) of the user/group to run httpd as.

# It is usually good practice to create a dedicated user and group for

# running httpd, as with most system services.

#

# User daemon ?--comments this line and the following line.

# Group daemon

# add the 2 lines below:

User oracle

Group root

</IfModule>


add the following lines before the end of file:
LoadModule IdcApacheAuth /home/Oracle/ucm/server/shared/os/linux/lib/IdcApache22Auth.so

IdcUserDB idc /home/Oracle/ucm/server/data/users/userdb.txt

Alias /idc /home/Oracle/ucm/server/weblayout

<Location /idc>
DirectoryIndex portal.htm
IdcSecurity idc
Allow from all
</Location>

3. restart ucm and httpd.