resin3.1+apache2.2.8 整合(笔记)

  今天整合了一下apache2 resin3.1
  配置过程有一二个注意事项。做一下小笔记。

   resin3.0开始支持PHP 如果在整合当中apache老是提示配置文件错误,那么就是resin配置不当。
 
   注意事项一:
apache配置文件更改为:
LoadModule caucho_module /usr/local/apache2/modules/mod_caucho.so
ResinConfigServer localhost 6802
CauchoConfigCacheDirectory /tmp
<Location /caucho-status>
  SetHandler caucho-status
</Location>
 
   注意事项二:
resin.conf配置文件
    <cluster>
<srun server-id="" host="127.0.0.1" port="6802"/>
</cluster>
这里的port 与apache配置文件的port要一致。

  注意事项三:
整合后apache无法访问php。取消resin对php的支持
../conf/app-default.xml
  <servlet-mapping url-pattern="*.jsp" servlet-name="resin-jsp"/>
  <servlet-mapping url-pattern="*.jspf" servlet-name="resin-jsp"/>
  <servlet-mapping url-pattern="*.jspx" servlet-name="resin-jspx"/>
  <!--
  <servlet-mapping url-pattern="*.php" servlet-name="resin-php"/>
  -->
  <servlet-mapping url-pattern="/" servlet-name="resin-file"/>

如上,注释掉PHP选项。

启动服务。
 
  注意事项四:
  resin 3.0 resin3.1和resin2 在数据库连接驱动名称方面各不一样。
  会出现无法连接数据库的情况。最好是到官方查找相应版本(小版本也要一致)的配置。

你可能感兴趣的:(apache,linux,resin,职场,休闲)