您的位置:首页 > 运维架构 > Tomcat

让apache-tomcat支持php

2016-08-31 17:52 281 查看
原环境为 Apache-tomcat-7.0,现在需要支持php 先装一个扩展wget http://ftp.gnu.org/gnu/libiconv/libiconv-1.14.tar.gz tar -zxf libiconv-1.14.tar.gzcd
libiconv-1.14./configure
--prefix=/usr/local/libiconv make && make install 编译php./configure
--prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc
--with-openssl --enable-cli --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd
--with-iconv=/usr/local/libiconv --with-freetype-dir --enable-maintainer-zts
--with-zlib --enable-xml --enable-rpath --enable-bcmath --enable-shmop
--enable-sysvsem --enable-inline-optimization --with-curl --enable-exif
--enable-mbregex --enable-fpm --enable-mbstring
--with-gd --enable-gd-native-ttf --with-mhash --enable-pcntl
--enable-sockets --with-xmlrpc --enable-zip --enable-soap
--with-mcrypt=/usr/local --enable-force-cgi-redirect --enable-cgi &&
make ZEND_EXTRA_LIBS='-liconv' && make install 修改Tomcat 配置Web.xml<servlet>
<servlet-name>php</servlet-name>
<servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class> <init-param>
<param-name>clientInputTimeout</param-name>
<param-value>200</param-value> </init-param> <init-param>
<param-name>debug</param-name> <param-value>0</param-value> </init-param> <init-param>
<param-name>executable</param-name>
<param-value>/usr/local/php/bin/php-cgi</param-value> </init-param> <init-param>
<param-name>passShellEnvironment</param-name>
<param-value>true</param-value> </init-param> <init-param>
<param-name>cgiPathPrefix</param-name> <param-value>/</param-value> </init-param>
<load-on-startup>5</load-on-startup></servlet> <servlet-mapping>
<servlet-name>php</servlet-name>
<url-pattern>*.php</url-pattern></servlet-mapping> <welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.php</welcome-file></welcome-file-list>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  tomcat php