论坛首页 入门技术论坛

Howto: 如何使用war包在tomcat中安装liferay

浏览 8728 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2006-12-21  

有时我们无法使用预集成的liferay(比如在已有的tomcat上再部署)。这时候就可以使用war包进行部署安装。

我们将使用apache-tomcat-5.5.17,liferay-portal-4.1.3.war进行试验。为了化简复杂度,我们将会把war部署在根context下,也就是 /

在部署之前首先需要创建liferay所需数据库(http://liferay.iteye.com/group/topic/338)。并且寻找到数据库jdbc驱动和portlet.jar文件。
jdbc可以从所使用数据库厂商网站下载
portlet.jar文件可以从
http://www.jcp.org/en/jsr/detail?id=168下载。你也可以在预集成的liferay tomcat bundle中找到

数据库创建后,我们可以使用war包进行部署了。

在部署过程中我们将会重起tomcat,所以请确保不会影响生产。

1,将下载liferay-portal-4.1.3.war 放到tomcat目录下,启动tomcat对war解压,解压完成后停止tomcat
2,将解压后的目录liferay-portal-4.1.3改名为ROOT,删除原始的 liferay-portal-4.1.3.war 文件
3,修改 ${tomca_home}\conf\catalina.properties 在common.loade上新增${catalina.home}/common/lib/ext/*.jar,并且在$ {catalina.home}/common/lib下创建ext目录
4,将liferay解压后WEB-INF/lib中的activation.jar、jms.jar、jta.jar、mail.jar、portal-kernel.jar移动到${catalina.home}/common/lib/ext下。
将jdbc驱动和portlet.jar拷贝到${catalina.home}/common/lib/ext下。

5,在${tomca_home}\conf下新建文件jaas.config,其中内容为
PortalRealm {
com.liferay.portal.kernel.security.jaas.PortalLoginModule required;
};
该文件也可以在预集成的liferay tomcat bundle中找到
6,在${tomca_home}\conf\Catalina\localhost下新建文件ROOT.xml其中内容类似
<context path=""></context>

xml 代码
 
  1. <Context path="">  
  2.     <Resource  
  3.         name="jdbc/LiferayPool"  
  4.         auth="Container"  
  5.         type="javax.sql.DataSource"  
  6.         driverClassName="org.hsqldb.jdbcDriver"  
  7.         url="jdbc:hsqldb:test"  
  8.         username="sa"  
  9.         password=""  
  10.         maxActive="20"  
  11.     />  
  12.     <Resource  
  13.         name="mail/MailSession"  
  14.         auth="Container"  
  15.         type="javax.mail.Session"  
  16.         mail.transport.protocol="smtp"  
  17.         mail.smtp.host="localhost"  
  18.     />  
  19.     <Realm    
  20.         className="org.apache.catalina.realm.JAASRealm"  
  21.         appName="PortalRealm"  
  22.         userClassNames="com.liferay.portal.security.jaas.PortalPrincipal"  
  23.         roleClassNames="com.liferay.portal.security.jaas.PortalRole"  
  24.         debug="99"  
  25.         useContextClassLoader="false"  
  26.     />  
  27. <!---->Context>  

请修改jdbc/LiferayPool和mail/MailSession中配置。
该文件也可以在预集成的liferay tomcat bundle中找到。
7,修改${tomca_home}/bin/catalina.bat,在
rem ----- Execute The Requested Command -----------------------------------
下方添加
set JAVA_OPTS=-Xms128m -Xmx512m -Dfile.encoding=UTF8 -Duser.timezone=GMT -Djava.security.auth.login.config=%CATALINA_HOME%/conf/jaas.config
该步骤将影响全局jvm系统参数,请修改后测试该tomcat上其他应用是否出现问题,可能会出现的问题有中文乱码以及时间错乱问题。

重新启动tomcat liferay应该能够正确运行了

   发表时间:2007-08-01  
to pikachu:
我照着这个步骤配置,启动TOMCAT时候有这个错误:
02:31:28,078 ERROR [MainServlet:142] com.liferay.portal.struts.ActionException:
com.liferay.portal.struts.ActionException: com.liferay.portal.SystemException: o
rg.springframework.beans.factory.BeanCreationException: Error creating bean with
 name 'com.liferay.portal.service.spring.ReleaseLocalServiceFactory' defined in
class path resource [META-INF/portal-spring-professional.xml]: Cannot resolve re
ference to bean 'com.liferay.portal.service.spring.ReleaseLocalService.transacti
on' while setting bean property 'service'; nested exception is org.springframewo
rk.beans.factory.BeanCreationException: Error creating bean with name 'com.lifer
ay.portal.service.spring.ReleaseLocalService.transaction' defined in class path
resource [META-INF/portal-spring-professional.xml]: Cannot resolve reference to
bean 'liferayTransactionManager' while setting bean property 'transactionManager
'; nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'liferayTransactionManager' defined in class path
resource [META-INF/counter-spring-professional.xml]: Cannot resolve reference to
 bean 'liferaySessionFactory' while setting bean property 'sessionFactory'; nest
ed exception is org.springframework.beans.factory.BeanCreationException: Error c
reating bean with name 'liferaySessionFactory' defined in class path resource [M
ETA-INF/counter-spring-professional.xml]: Initialization of bean failed; nested
exception is java.lang.AbstractMethodError: COM.ibm.db2.jdbc.app.DB2DatabaseMeta
Data.getDatabaseMajorVersion()I

后面还跟着好几个类似的错误。
还有数据库的问题,http://liferay.group.iteye.com/group/topic/338这篇文章已经被移走了,可否给个新链接?
我知道liferay在配置数据库的时候需要修改一个hibernate.dialect=org.hibernate.dialect.DB2Dialect,但我不知道war里该怎么修改。
希望能答复,谢谢
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics