- 论坛徽章:
- 0
|
原帖由 linaren 于 2006-7-31 21:26 发表
yes,
$CATALINA_HOME/server/lib/servlets-cgi.renametojar 改了
CGI程序也都chmod 755 了,
也重起了tomcat,配置如下(片段)
===================================================
<servlet>
...
firstly try to use default setting from tomcat and see what happens.
there is no problem in my linuxbox!
web.xml
<servlet>
<servlet-name>cgi</servlet-name>
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<init-param>
<param-name>cgiPathPrefix</param-name>
<param-value>WEB-INF/cgi</param-value>
</init-param>
<load-on-startup>5</load-on-startup>
</servlet>
<!-- The mapping for the CGI Gateway servlet -->
<servlet-mapping>
<servlet-name>cgi</servlet-name>
<url-pattern>/cgi-bin/*</url-pattern>
</servlet-mapping>
put hello.cgi in $CATALINA_HOME/webapps/test/WEB-INF/cgi/hello.cgi and set mode 755
point browser to localhost:8080/test/cgi-bin/hello.cgi
I see cgi output correctly.
try again. |
|