我的Oracle HTTP Server不能启动,系统提示:
我的Oracle HTTP Server不能启动,系统提示:
[Mon Mar 07 20:40:17 2005] [alert] (5)拒绝访问。: FastCGI: CreateMutex() failed
Syntax error on line 92 of d:/oracle/ora92/sqlplus/admin/isqlplus.conf:
failed to create FastCGI application accept mutex
Note the errors or messages above, and press the <ESC> key to exit. 25...
高手知道为什么?
问题点数:20、回复次数:12Top
1 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-17 15:23:15 得分 0
顶一下.快要沉啦Top
2 楼chanet(牧师)回复于 2005-10-17 20:53:05 得分 10
d:/oracle/ora92/sqlplus/admin/isqlplus.conf
----- 配置文件出错~
把我的copy出来,供你参考一下吧~
#
# Copyright (c) 2001, 2002, Oracle Corporation. All rights reserved.
#
# NAME
# isqlplus.conf
#
# PURPOSE
# Oracle HTTP Server directives for the iSQL*Plus server
#
# USAGE
# This file should be included in the Oracle HTTP Server
# "oracle_apache.conf" file.
#
# Enable handling of all virtual paths beginning with "/iplus/"
#
# Note: only /iplus/ is mapped, /iplus is not being mapped
#
<IfModule mod_alias.c>
Alias /iplus/ "D:\oracle\ora92\sqlplus\admin\iplus/"
# Disallow users from trying to access /iplus/ directory listing
<Directory "D:\oracle\ora92\sqlplus\admin\iplus">
AllowOverride None
Options FollowSymLinks
Order deny,allow
Allow from all
</Directory>
</IfModule>
#
# Maps all virtual paths beginning with "/isqlplus*" to the iSQL*Plus
# FastCGI application
#
<IfModule mod_alias.c>
ScriptAliasMatch ^/isqlplus(.*) D:\oracle\ora92\bin\isqlplus
ScriptAliasMatch ^/isqlplusdba(.*) D:\oracle\ora92\bin\isqlplus
<Directory "D:\oracle\ora92\bin">
AllowOverride None
Options FollowSymLinks
Order deny,allow
Allow from all
</Directory>
</IfModule>
#
# Enable handling of all virtual paths beginning with "/isqlplus"
#
<Location /isqlplus>
SetHandler fastcgi-script
Order deny,allow
# Comment "Allow ..." and uncomment the four lines "AuthType ..."
# to "Require ..." if Oracle HTTP authentication access is required
# for the http://.../isqlplus URL
Allow from all
#AuthType Basic
#AuthName 'iSQL*Plus'
#AuthUserFile D:\oracle\ora92\sqlplus\admin\iplus.pw
#Require valid-user
</Location>
#
# Enable handling of all virtual paths beginning with "/isqlplusdba".
#
# Note: Oracle HTTP authentication access must be configured to
# prevent unauthorized users performing DBA operations on
# the database
#
# Use the HTTP server utility script "htpasswd" to add users to the
# "iplusdba.pw" file.
#
<Location /isqlplusdba>
SetHandler fastcgi-script
Order deny,allow
AuthType Basic
AuthName 'iSQL*Plus DBA'
AuthUserFile D:\oracle\ora92\sqlplus\admin\iplusdba.pw
Require valid-user
</Location>
#
# Setup the iSQL*Plus FastCGI application.
#
<IfModule mod_fastcgi.c>
FastCgiServer D:\oracle\ora92\bin\isqlplus -port 8228 -initial-env iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
</IfModule>
Top
3 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-18 09:11:19 得分 0
谢谢拉.我去试试Top
4 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-18 10:52:41 得分 0
兄弟.还是不能用. 找不到文件了.....我晕哦.Top
5 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-18 14:41:48 得分 0
没人回答了么?Top
6 楼chanet(牧师)回复于 2005-10-19 00:21:47 得分 0
找不到文件?? 错误信息就是找不到文件???
用记事本新建一个(扩展名为.conf),然后把以上内容copy进去~Top
7 楼Asan13(阿才)回复于 2005-10-19 08:46:46 得分 5
治标的方法是把这一段用#注释掉
#<IfModule mod_fastcgi.c>
# FastCgiServer D:\oracle\ora92\bin\isqlplus -port 8228 -initial-env #iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env #iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
#</IfModule>
Top
8 楼Asan13(阿才)回复于 2005-10-19 08:49:19 得分 0
可能是监听器的配置不好,你把那个d:/oracle/ora92/network/admin/tnsnames.ora和d:/oracle/ora92/network/admin/listener.ora里面的内容重新配置一下。Top
9 楼Asan13(阿才)回复于 2005-10-19 08:51:22 得分 0
安装9i的时候最好在安装时就建数据库,不然监听器可能会出错。除非你是用正版的吧。Top
10 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-19 14:08:22 得分 0
我发现一个问题.我装的ORACLE没有ora92的目录。.以前安装都有。提示说的
D:/oracle/ora92/sqlplus/admin/isqlplus.conf
在我的目录下是这样的。
D:/oracle/sqlplus/admin/isqlplus.confTop
11 楼alexfanus(alex)回复于 2005-10-20 09:22:09 得分 5
将isqlplus.conf文件中的
D:/oracle/ora92
替换成D:/oracle/试一下!
估计是你安装时修改了默认的安装目录!Top
12 楼paopao270(泡泡(java追求者j2ee))回复于 2005-10-20 09:35:32 得分 0
但是启动oracle server是重开始菜单里选的呀.我要怎么才能改变他的寻找目录?Top
相关问题
- 怎麼在Oracle Server端提示錯誤
- <求救>新建asp.net应用程序提示:http:/1.1 500 server error
- <求救>新建asp.net应用程序提示:http:/1.1 500 server error
- 救命呀。。。。。。。关于Oracle HTTP Server
- 关于oracle http server服务的问题?
- 初学者请教:为什么独立启动可以用sysdba进,用oracle management server却提示权限不足?
- Oracle错误提示:VTK-1000:无法连接到Management Server yl。请验证您已输入Oracle Management Server 的正确主机名和状态。在线等待!
- 按提交,出错,服务端提示Http web server:lotus notes exception-unable to ...错误
- 求助:Oracle LSM 的提示错信息
- oracle提示错误,请教高手!!!




