can not start http server
398203Jul 5 2003 — edited Jul 21 2003start http server powered by apache.I got such message:
'[alert]<5>...:FastCGI:CreateMUtex()failed
Syntax error on line 92 of c:/oracle/ora92/sqlplus/admin/isqlplus.conf:
Failed to create FastCGI application accept mutex'
my isqlplus.conf:
#
# 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/ "C:\oracle\ora92\sqlplus\admin\iplus/"
# Disallow users from trying to access /iplus/ directory listing
<Directory "C:\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(.*) C:\oracle\ora92\bin\isqlplus
ScriptAliasMatch ^/isqlplusdba(.*) C:\oracle\ora92\bin\isqlplus
<Directory "C:\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 C:\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 C:\oracle\ora92\sqlplus\admin\iplusdba.pw
Require valid-user
</Location>
#
# Setup the iSQL*Plus FastCGI application.
#
<IfModule mod_fastcgi.c>
FastCgiServer C:\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>