cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco in liferay portal using Jboss server

amgad_mosleh
Champ in-the-making
Champ in-the-making
Hi every one
My Environment:
WinXP
Jboss AS version
liferay 4.1.1
alfresco 1.3 and tested alfresco ODF1.4
JDK 1.5.0_08
Mysql 5.0.24
mysql connector mysql-connector-java-3.1.12-bin.jar

I am trying to deploy alfresco as a portelt in liferay 4.1.0 or 4.1.1 using Jboss server (Jboss 4). I followed all the steps inside this page
http://wiki.alfresco.com/wiki/Deploying_WAR_Liferay

Also I put the dll files (Win32NetBIOS.dll and Win32NetBIOSx64.dll) in the system32 directory

I updated the jsf libraries in  jbossweb-tomcat55.sar\jsf-libs  to be the same as the alfresco libraries

The alfresco db is updated -> no problem with that.
I tested liferay before deploying alfresco -> no problem

But the following is happening when I deploy alfresco:
the following message appears :

 06:45:17,016 INFO  [STDOUT] 06:45:17,016 INFO  [SQLErrorCodesFactory] SQLErrorCodes loaded: [DB2, HSQL, MS-SQL, MySQL, Oracle, Informix, PostgreSQL, S
ybase]

and nothing will happpen after that in the console . also the log file's size will keep increasing up to gigas.
also I cannot open the portal.

any help will be appreciated. Thanks in advance
2 REPLIES 2

lrdev
Champ in-the-making
Champ in-the-making
I have exactly the same error, so please if you solve it, tell me!!

Thanks.

kevinr
Star Contributor
Star Contributor
The logging by default in JBoss is crazy - you can modify your log4j.xml file to disable 99% of the pointless logging and then we will be able to see the errors properly. It is even possible there is so much logging that the server would infact start if you turned it down! Edit this section in the \jboss\server\default\conf\log4j.xml file as follows:

<!– ======================= –>
<!– Setup the Root category –>
<!– ======================= –>
<root>
<priority value="INFO" />
<appender-ref ref="CONSOLE"/>
<appender-ref ref="FILE"/>
</root>

Also make sure both your FILE and CONSOLE appenders are set to:
<param name="Threshold" value="INFO"/>

Thanks,

Kevin