/ 中存储网

在Apache服务器中配置Cognos服务

2013-09-12 18:18:29 来源:itjs.cn
第一次配置安装配置Cognos,同事给了份安装文档。

本来要用IIS的,不过局方给的账户权限问题,装上IIS后一直报Server Unavailable。

无奈,只好考虑其他服务器。看了看原来文档中的配置,也没用到IIS的特性,所以改用Apache试试,还真成功了。

配置很简单,直接在Apache安装目录Apache Software FoundationApache2.2conf下的httped.conf文件后增加虚拟目录即可。

###################################################

Alias /cognos8/help/ "D:/Program Files/cognos/c8/webcontent/documentation"

Options None

AllowOverride None

Order Allow,Deny

Allow from All

ScriptAlias /cognos8/cgi-bin "D:/Program Files/cognos/c8/cgi-bin"

<Directory "D:/Program Files/cognos/c8/cgi-bin">

Options None

AllowOverride None

Order Allow,Deny

Allow from All

</Directory>

Alias /cognos8 "D:/Program Files/cognos/c8/webcontent"

<Directory "D:/Program Files/cognos/c8/webcontent">

Options None

AllowOverride None

Order Allow,Deny

Allow from All

</Directory>

###################################################

还是喜欢直接修改配置文件的,比界面点来点去的快多了。