Install problems on centos 5.2

137 views
Skip to first unread message

Tom Eagles

unread,
Feb 11, 2011, 2:13:41 PM2/11/11
to OpenMeetings User
Maybe I am going crazy but everytime i try to install openmeetings it
crashes at would be step 2 and i recieve host not found error.

the mysql server is on the same box

my hibernate.cfg.xml is as follows

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate
Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-
configuration-3.0.dtd">

<!-- Generated file - Do not edit! -->

<hibernate-configuration>

<!-- a SessionFactory instance listed as /jndi/name -->
<session-factory>

<!-- User / Password -->
<property name="connection.username">meeting</property>
<property name="connection.password">time2talk</property>

<!-- Database Settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</
property>
<!-- for performance reasons changed to MyISAM from
org.hibernate.dialect.MySQLInnoDBDialect -->
<property name="dialect">org.hibernate.dialect.MySQLMyISAMDialect</
property>
<property name="connection.url">jdbc:mysql://HOSTIPADDRESS/
openmeetings?
autoReconnect=true&useUnicode=true&createDatabaseIfNotExist=true&characterEncoding=utf-8</
property>

<property name="hibernate.connection.CharSet">utf8</property>
<property name="hibernate.connection.characterEncoding">utf8</
property>
<property name="hibernate.connection.useUnicode">true</property>


<!-- Database Scheme Auto Update -->
<property name="hbm2ddl.auto">update</property>

<!-- properties -->

<property name="show_sql">false</property>
<property name="use_outer_join">false</property>
<property
name="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</
property>
<property
name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</
property>
<!--
<property name="connection.provider_class
">org.hibernate.connection.C3P0ConnectionProvider</property>
-->
<property
name="hibernate.cache.provider_class">org.hibernate.cache.NoCacheProvider</
property>
<property name="hibernate.cache.use_query_cache">false</
property>
<property name="hibernate.cache.use_second_level_cache">false</
property>
<property name="hibernate.generate_statistics">false</
property>
<property name="hibernate.cache.use_structured_entries">false</
property>


<property name="c3p0.max_size">20</property>
<property name="c3p0.min_size">2</property>
<property name="c3p0.idle_test_period">100</property>
<property name="c3p0.max_statements">100</property>
<property name="c3p0.timeout">100</property>

<!-- mapping files -->
<mapping resource="org/openmeetings/app/hibernate/beans/adresses/
Adresses.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/adresses/
States.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
Configuration.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
ErrorType.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
ErrorValues.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
LdapConfig.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
Naviglobal.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
Navimain.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
Navisub.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
OmTimeZone.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
SOAPLogin.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/basic/
Sessiondata.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/calendar/
Appointment.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/calendar/
AppointmentCategory.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/calendar/
AppointmentReminderTyps.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/calendar/
MeetingMember.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/domain/
Organisation.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/domain/
Organisation_Users.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/flvrecord/
FlvRecording.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/flvrecord/
FlvRecordingLog.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/flvrecord/
FlvRecordingMetaData.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/flvrecord/
FlvRecordingMetaDelta.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/invitation/
Invitations.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/lang/
FieldLanguage.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/lang/
Fieldlanguagesvalues.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/lang/
Fieldvalues.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/logs/
ConferenceLog.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/logs/
ConferenceLogType.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
ChatvaluesEvent.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
Recording.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
RecordingClient.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
RecordingConversionJob.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
RoomClient.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
RoomRecording.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
RoomStream.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/recording/
WhiteBoardEvent.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/rooms/
RoomModerators.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/rooms/
RoomTypes.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/rooms/
Rooms.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/rooms/
Rooms_Organisation.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/sip/
OpenXGReturnObject.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
PrivateMessages.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
PrivateMessageFolder.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Salutations.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
UserContacts.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
UserSipData.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Userdata.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Usergroups.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Userlevel.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Users.hbm.xml"/>
<mapping resource="org/openmeetings/app/hibernate/beans/user/
Users_Usergroups.hbm.xml"/>

</session-factory>

</hibernate-configuration>

when i run the installer after fillign in step 1 it hangs for a while
then i get in the address bar the step2 page but unable to connect to
host.

i check the mysql table and no tables are added its just the table i
manually created.

all red5 demo's work and my php and mysql pages work

the early version only works in lines have been commented out.

all ports checked and unblocked whatever i do its like openmeetings
simply cant connect to the mysql database.

does anyone have any ideas? I am fast running out of time and may have
to deploy a commercial package instead

Tom Eagles

unread,
Feb 11, 2011, 2:13:42 PM2/11/11
to OpenMeetings User

Tom Eagles

unread,
Feb 12, 2011, 10:38:35 AM2/12/11
to OpenMeetings User

Tom Eagles

unread,
Feb 12, 2011, 10:41:16 AM2/12/11
to OpenMeetings User
error log:

seeing lots of delimter errors
2011-02-12 10:46:04,627 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableRmiAdapter' being accessed! Ambiguous write methods found next
to actually used [public void
org.red5.server.jmx.JMXAgent.setEnableRmiAdapter(java.lang.String)]:
[public void
org.red5.server.jmx.JMXAgent.setEnableRmiAdapter(boolean)]
2011-02-12 10:46:04,627 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableSsl' being accessed! Ambiguous write methods found next to
actually used [public void
org.red5.server.jmx.JMXAgent.setEnableSsl(java.lang.String)]: [public
void org.red5.server.jmx.JMXAgent.setEnableSsl(boolean)]
2011-02-12 10:46:04,628 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableMinaMonitor' being accessed! Ambiguous write methods found next
to actually used [public void
org.red5.server.jmx.JMXAgent.setEnableMinaMonitor(java.lang.String)]:
[public void
org.red5.server.jmx.JMXAgent.setEnableMinaMonitor(boolean)]
2011-02-12 10:46:06,159 [main] WARN o.s.b.f.c.CustomEditorConfigurer
- Passing PropertyEditor instances into CustomEditorConfigurer is
deprecated: use PropertyEditorRegistrars or PropertyEditor class names
instead. Offending key [java.net.SocketAddress; offending editor
instance:
org.apache.mina.integration.beans.InetSocketAddressEditor@387b1641
2011-02-12 10:46:14,430 [main] WARN o.a.c.core.NamingContextListener
- Failed to register in JMX: javax.naming.NamingException: Could not
create resource factory instance [Root exception is
java.lang.ClassNotFoundException:
org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory]
2011-02-12 10:46:20,563 [Launcher:/openmeetings] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,634 [Red5_Scheduler_Worker-1] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,641 [Red5_Scheduler_Worker-3] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,650 [Red5_Scheduler_Worker-2] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.


Tom Eagles

unread,
Feb 12, 2011, 10:42:47 AM2/12/11
to OpenMeetings User
red5 log

2011-02-12 10:46:03,398 [main] INFO org.red5.server.Launcher - Red5
Server 0.9.1 $Rev: 4059 $ (http://code.google.com/p/red5/)
2011-02-12 10:46:03,487 [main] INFO
o.s.c.s.FileSystemXmlApplicationContext - Refreshing
org.springframework.context.support.FileSystemXmlApplicationContext@2e5bbd6:
startup date [Sat Feb 12 10:46:03 EST 2011]; root of context hierarchy
2011-02-12 10:46:04,305 [main] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
class path resource [red5.properties]
2011-02-12 10:46:04,321 [main] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@3ad3c6a3:
defining beans
[placeholderConfig,red5.common,red5.core,context.loader,pluginLauncher,tomcat.server];
root of factory hierarchy
2011-02-12 10:46:04,352 [main] INFO
o.s.c.s.FileSystemXmlApplicationContext - Refreshing
org.springframework.context.support.FileSystemXmlApplicationContext@6c3c9c31:
startup date [Sat Feb 12 10:46:04 EST 2011]; root of context hierarchy
2011-02-12 10:46:04,517 [main] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
class path resource [red5.properties]
2011-02-12 10:46:04,525 [main] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@3c3ac93e:
defining beans
[placeholderConfig,red5.server,jmxFactory,jmxAgent,serializer,deserializer,statusObjectService,rtmpCodecFactory,rtmptCodecFactory,remotingCodecFactory,streamableFileFactory,filePersistenceThread,sharedObjectService,streamService,providerService,consumerService,bandwidthFilter,schedulingService,warDeployService,remotingClient,object.cache,keyframe.cache,flv.impl,flvreader.impl,mp4reader.impl,mp3reader.impl,org.springframework.beans.factory.config.MethodInvokingFactoryBean#0,org.springframework.beans.factory.config.MethodInvokingFactoryBean#1,streamExecutor,playlistSubscriberStream,clientBroadcastStream];
root of factory hierarchy
2011-02-12 10:46:04,627 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableRmiAdapter' being accessed! Ambiguous write methods found next
to actually used [public void
org.red5.server.jmx.JMXAgent.setEnableRmiAdapter(java.lang.String)]:
[public void
org.red5.server.jmx.JMXAgent.setEnableRmiAdapter(boolean)]
2011-02-12 10:46:04,627 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableSsl' being accessed! Ambiguous write methods found next to
actually used [public void
org.red5.server.jmx.JMXAgent.setEnableSsl(java.lang.String)]: [public
void org.red5.server.jmx.JMXAgent.setEnableSsl(boolean)]
2011-02-12 10:46:04,628 [main] WARN
o.s.b.GenericTypeAwarePropertyDescriptor - Invalid JavaBean property
'enableMinaMonitor' being accessed! Ambiguous write methods found next
to actually used [public void
org.red5.server.jmx.JMXAgent.setEnableMinaMonitor(java.lang.String)]:
[public void
org.red5.server.jmx.JMXAgent.setEnableMinaMonitor(boolean)]
2011-02-12 10:46:05,412 [main] INFO
org.red5.server.service.WarDeployer - War deployer service created
2011-02-12 10:46:05,910 [main] INFO
o.s.c.s.FileSystemXmlApplicationContext - Refreshing
org.springframework.context.support.FileSystemXmlApplicationContext@8429c19:
startup date [Sat Feb 12 10:46:05 EST 2011]; parent:
ApplicationContext 'red5.common'
2011-02-12 10:46:06,151 [main] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
class path resource [red5.properties]
2011-02-12 10:46:06,159 [main] WARN o.s.b.f.c.CustomEditorConfigurer
- Passing PropertyEditor instances into CustomEditorConfigurer is
deprecated: use PropertyEditorRegistrars or PropertyEditor class names
instead. Offending key [java.net.SocketAddress; offending editor
instance:
org.apache.mina.integration.beans.InetSocketAddressEditor@387b1641
2011-02-12 10:46:06,163 [main] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@49594a88:
defining beans
[customEditorConfigurer,placeholderConfig,rtmpMinaConnManager,rtmpHandler,rtmpMinaIoHandler,rtmpTransport,rtmpMinaConnection,rtmptConnManager,rtmptHandler,rtmptServlet,rtmptConnection,rtmpsMinaIoHandler,rtmpsTransport];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@3c3ac93e
2011-02-12 10:46:06,181 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- RTMP Mina Transport bound to /0.0.0.0:1935
2011-02-12 10:46:06,181 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- RTMP Mina Transport Settings
2011-02-12 10:46:06,181 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Connection Threads: 4
2011-02-12 10:46:06,182 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- I/O Threads: 16
2011-02-12 10:46:06,273 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- TCP No Delay: true
2011-02-12 10:46:06,273 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Receive Buffer Size: 65536
2011-02-12 10:46:06,273 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Send Buffer Size: 271360
2011-02-12 10:46:06,313 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- RTMP Mina Transport bound to /0.0.0.0:8443
2011-02-12 10:46:06,314 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- RTMP Mina Transport Settings
2011-02-12 10:46:06,314 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Connection Threads: 4
2011-02-12 10:46:06,314 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- I/O Threads: 16
2011-02-12 10:46:06,315 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- TCP No Delay: true
2011-02-12 10:46:06,315 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Receive Buffer Size: 65536
2011-02-12 10:46:06,315 [main] INFO o.r.s.net.rtmp.RTMPMinaTransport
- Send Buffer Size: 271360
2011-02-12 10:46:06,325 [main] INFO
o.s.c.s.FileSystemXmlApplicationContext - Refreshing
org.springframework.context.support.FileSystemXmlApplicationContext@ba8402c:
startup date [Sat Feb 12 10:46:06 EST 2011]; parent:
ApplicationContext 'red5.common'
2011-02-12 10:46:06,369 [main] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6:
defining beans
[global.clientRegistry,global.serviceInvoker,global.mappingStrategy,global.context,global.handler,global.scope,red5.scopeResolver];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@3c3ac93e
2011-02-12 10:46:06,498 [main] INFO o.a.c.core.AprLifecycleListener -
The APR based Apache Tomcat Native library which allows optimal
performance in production environments was not found on the
java.library.path: /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/
lib/amd64/server:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/
lib/amd64:/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/../lib/
amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
2011-02-12 10:46:06,560 [main] INFO
org.red5.server.tomcat.TomcatLoader - Setting connector:
org.apache.catalina.connector.Connector
2011-02-12 10:46:06,560 [main] INFO
org.red5.server.tomcat.TomcatLoader - Address to bind: /0.0.0.0:5080
2011-02-12 10:46:06,560 [main] INFO
org.red5.server.tomcat.TomcatLoader - Loading tomcat context
2011-02-12 10:46:06,560 [main] INFO
org.red5.server.tomcat.TomcatLoader - Server root: /usr/local/red5
2011-02-12 10:46:06,561 [main] INFO
org.red5.server.tomcat.TomcatLoader - Config root: /usr/local/red5/
conf
2011-02-12 10:46:06,581 [main] INFO
org.red5.server.tomcat.TomcatLoader - Application root: /usr/local/
red5/webapps
2011-02-12 10:46:06,731 [main] INFO
org.red5.server.tomcat.TomcatLoader - Starting Tomcat servlet engine
2011-02-12 10:46:06,732 [main] INFO
o.apache.catalina.startup.Embedded - Starting tomcat server
2011-02-12 10:46:07,631 [main] INFO o.a.catalina.core.StandardEngine
- Starting Servlet Engine: Apache Tomcat/6.0.24
2011-02-12 10:46:14,430 [main] WARN o.a.c.core.NamingContextListener
- Failed to register in JMX: javax.naming.NamingException: Could not
create resource factory instance [Root exception is
java.lang.ClassNotFoundException:
org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory]
2011-02-12 10:46:14,549 [main] INFO o.a.coyote.http11.Http11Protocol
- Initializing Coyote HTTP/1.1 on http-0.0.0.0-5080
2011-02-12 10:46:14,566 [main] INFO o.a.coyote.http11.Http11Protocol
- Starting Coyote HTTP/1.1 on http-0.0.0.0-5080
2011-02-12 10:46:14,603 [main] INFO
org.red5.server.tomcat.TomcatLoader - Dedicated RTMPT server
configuration was not specified
2011-02-12 10:46:14,603 [main] INFO
org.red5.server.tomcat.TomcatLoader - Dedicated RTMPS server
configuration was not specified
2011-02-12 10:46:14,803 [Launcher:/dump] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@a2ba05:
defining beans []; parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:14,960 [Launcher:/] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:15,010 [Launcher:/installer] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:15,021 [Launcher:/SOSample] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:15,043 [Launcher:/installer] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@530ce397:
defining beans
[placeholderConfig,web.context,web.scope,web.handler,installer.service];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:15,076 [Launcher:/oflaDemo] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:15,093 [Launcher:/oflaDemo] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@50c3d062:
defining beans
[placeholderConfig,web.context,web.scope,web.handler,demoService.service];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:15,133 [Launcher:/] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@9ad5d46:
defining beans [placeholderConfig,web.context,web.scope]; parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:15,540 [Launcher:/installer] INFO
org.red5.server.service.Installer - Installer service created
2011-02-12 10:46:15,141 [Launcher:/SOSample] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@4fc4a198:
defining beans [placeholderConfig,web.context,web.scope,web.handler];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:15,646 [Launcher:/admin] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:15,650 [Launcher:/admin] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@3e40f7a8:
defining beans
[userCache,passwordEncoder,saltSource,userDetailsService,dataSource,daoAuthenticationProvider,authenticationManager,userDatabase,placeholderConfig,authClientRegistry,web.context,web.scope,web.handler];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:20,234 [Launcher:/openmeetings] INFO
o.s.b.f.c.PropertyPlaceholderConfigurer - Loading properties file from
ServletContext resource [/WEB-INF/red5-web.properties]
2011-02-12 10:46:20,253 [Launcher:/openmeetings] INFO
o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in
org.springframework.beans.factory.support.DefaultListableBeanFactory@44c6b80e:
defining beans
[placeholderConfig,web.context,web.scope,web.handler,openmeetings.ClientListManager,openmeetings.EmoticonsManager,openmeetings.WhiteBoardObjectListManager,appointmentcategoryservice.service,appointmentreminderservice.service,calendarservice.service,meetingmemberservice.service,fileservice.service,conferenceservice.service,openmeetings.Roommanagement,userservice.service,openmeetings.UsersDaoImpl,organisationservice.service,configservice.service,openmeetings.Configurationmanagement,errorservice.service,pollservice.service,xmlcrm.service,issueservice.service,languageservice.service,chatservice.service,streamservice.service,invitationservice.service,whiteboardservice.service,printservice.service,flvrecorderservice.service,openmeetings.FlvRecordingDaoImpl,openmeetings.FlvRecordingMetaDataDaoImpl,openmeetings.FlvRecordingLogDaoImpl,openmeetings.FlvRecordingMetaDeltaDaoImpl,openmeetings.TaskExecutor,openmeetings.FlvRecorderConverterTask,openmeetings.FlvInterviewConverterTask,openmeetings.FlvInterviewReConverterTask,openmeetings.FlvInterviewConverter,openmeetings.FlvRecorderConverter,openmeetings.FlvInterviewReConverter,ldapconfigservice.service,openmeetings.LdapConfigDaoImpl];
parent:
org.springframework.beans.factory.support.DefaultListableBeanFactory@72f6f1b6
2011-02-12 10:46:20,340 [Launcher:/openmeetings] INFO
o.s.s.c.ThreadPoolTaskExecutor - Initializing ExecutorService
'openmeetings.TaskExecutor'
2011-02-12 10:46:20,563 [Launcher:/openmeetings] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,634 [Red5_Scheduler_Worker-1] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,641 [Red5_Scheduler_Worker-3] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:46:20,650 [Red5_Scheduler_Worker-2] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:48:00,591 [Red5_Scheduler_Worker-3] ERROR
org.hibernate.util.XMLHelper - Error parsing XML: /usr/local/red5/
webapps/openmeetings/conf/hibernate.cfg.xml(15) The reference to
entity "useUnicode" must end with the ';' delimiter.
2011-02-12 10:48:12,641 [Red5_Scheduler_Worker-7] WARN
o.r.server.net.rtmp.RTMPConnection - Closing RTMPMinaConnection from
208.116.53.148 : 49517 to null (in: 0 out 0 ), with id 1315341191 due
to long handshake

Sebastian Wagner

unread,
Feb 13, 2011, 5:42:41 AM2/13/11
to openmeet...@googlegroups.com
you need to set the default-character-set=utf8 in the mysql configuration, restart mysql, delete the database and run the installer again.

Sebastian
Message has been deleted

Tom Eagles

unread,
Feb 13, 2011, 9:21:52 AM2/13/11
to OpenMeetings User
and MySQL charset: UTF-8 Unicode (utf8)

still crashing after clicking installl and no tables created

On Feb 13, 3:20 pm, Tom Eagles <tom.eag...@gmail.com> wrote:
> hi sebastian
>
> in phpmyadmin the panel shows this
>
> MySQL localhost
>
>     *
>       MySQL connection collation: MySQL charset:  MySQL charset:
> UTF-8 Unicode (utf8)
Message has been deleted

seba....@gmail.com

unread,
Feb 13, 2011, 9:43:20 AM2/13/11
to openmeet...@googlegroups.com
*still crashing after clicking installl and no tables created*
=> in your earlier posts you did say that your tables have been created?!?!?!

If no tables are created your mysql user/path is either wrong and/or mysql does not listen on TCP/IP connections for that host. What is the hostname in the my.cnf ? It has to at least listen to 127.0.0.1 to be able to connect from the same server to it.

Sebastian

2011/2/13 Tom Eagles <tom.e...@gmail.com>


On Feb 13, 3:20 pm, Tom Eagles <tom.eag...@gmail.com> wrote:
> hi sebastian
>
> in phpmyadmin the panel shows this
>
> MySQL localhost
>
>     *
>       MySQL connection collation:  UTF-8 Unicode (utf8)
:  

MySQL charset:
> UTF-8 Unicode (utf8)
> On Feb 13, 11:42 am, Sebastian Wagner <seba.wag...@gmail.com> wrote:
>
>
>
--
You received this message because you are subscribed to the Google Groups "OpenMeetings User" group.
To post to this group, send email to openmeet...@googlegroups.com.
To unsubscribe from this group, send email to openmeetings-u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/openmeetings-user?hl=en.




--
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba....@gmail.com

Tom Eagles

unread,
Feb 13, 2011, 9:54:16 AM2/13/11
to OpenMeetings User
ok here is problem but have no idea how to fix it

character set client utf8
(Global value) latin1
character set connection utf8
(Global value) latin1
character set database latin1
character set filesystem binary
character set results utf8
(Global value) latin1
character set server latin1
character set system utf8
character sets dir /usr/share/mysql/charsets/
collation connection utf8_unicode_ci
(Global value) latin1_swedish_ci

on the centospanel i opened up my.cnf

here is the contents

[mysqld]
max_connections = 300
key_buffer = 16M
myisam_sort_buffer_size = 32M
join_buffer_size = 2M
read_buffer_size = 2M
sort_buffer_size = 4M
table_cache = 1024
thread_cache_size = 286
interactive_timeout = 25
wait_timeout = 1000
connect_timeout = 10
max_allowed_packet = 16M
max_connect_errors = 10
query_cache_limit = 1M
query_cache_size = 16M
query_cache_type = 1
tmp_table_size = 16M
[mysqld_safe]
open_files_limit = 8192
[mysqldump]
quick
max_allowed_packet = 16M
[myisamchk]
key_buffer = 32M
sort_buffer = 32M
read_buffer = 16M
write_buffer = 16M
[mysqlhotcopy]
interactive-timeout
bind-address = 127.0.0.1
character_set_server = utf8_unicode_ci

other than that i have no idea what to do

seba....@gmail.com

unread,
Feb 13, 2011, 10:06:58 AM2/13/11
to openmeet...@googlegroups.com
Tom,

the name of the parameter is:
default-character-set=utf8
and I don't see anything like that in your config.

Anyhow, if no tables are created at all its a connection problem, either with the auth or with the connection itself / host config.

You should contact some service team, if your are not familiar with CentOS you might destroy more then you are able to fix afterwards.

Sebastian

2011/2/13 Tom Eagles <tom.e...@gmail.com>
ok here is problem but have no idea how to fix it
--
You received this message because you are subscribed to the Google Groups "OpenMeetings User" group.
To post to this group, send email to openmeet...@googlegroups.com.
To unsubscribe from this group, send email to openmeetings-u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/openmeetings-user?hl=en.

Tom Eagles

unread,
Feb 13, 2011, 11:19:09 AM2/13/11
to openmeet...@googlegroups.com

Hi sebastian,

Basically the host team gave up trying to get openmeetings to work and left me to play with the test server i have full root access but am totally lost, i have read through all the threads and through your replies to others.

 

as you said my experience is amlost 0 on centos, but even ther sys admins cant understand why its not working, its a rather large company but no one seems to know why its ot working or how to configure it.

 

:(

seba....@gmail.com

unread,
Feb 13, 2011, 11:53:26 AM2/13/11
to openmeet...@googlegroups.com
*Basically the host team gave up *
=> that is a little bit confusing as we have done number of CentOS installations and other users here on this list too. I think there are even links to howto's for CentOS from users contributed in the internet.

If you need to, we charge 10 hours á 50 Euro (so 500 Euro in total) for an installation (no matter what OS). But we would prefer if you could reset the host machine to its initial status by resetting the server or taking a fresh VBox.

Lee Archer

unread,
Feb 14, 2011, 3:40:30 AM2/14/11
to openmeet...@googlegroups.com

Hi, I had written an install how-to for centos 5.5.

 

http://code.google.com/p/openmeetings/wiki/InstallationCentOS5

 

Regards

 

Lee

Luis Blasco de la Cruz

unread,
Feb 14, 2011, 4:40:08 AM2/14/11
to openmeet...@googlegroups.com

Is it possible an install how to-for Windows ?

 

 

 

Luis Blasco

Reply all
Reply to author
Forward
0 new messages