thank you Maxim, but I don't have the line at all; can you advice where to put it. Regards,
Date: Wed, 28 Aug 2013 22:06:25 +0700 Subject: Re: out of memory error From: [email protected] To: [email protected] try edit red5.bat and change the line if NOT DEFINED JVM_OPTS set JVM_OPTS=-Xverify:none -XX:+TieredCompilation -XX:+UseBiasedLocking -XX:+UseStringCache -XX:+UseParNewGC -XX:InitialCodeCacheSize=8m -XX:ReservedCodeCacheSize=32m -Dorg.terracotta.quartz.skipUpdateCheck=true to be if NOT DEFINED JVM_OPTS set JVM_OPTS=-Xverify:none -XX:+TieredCompilation -XX:+UseBiasedLocking -XX:+UseStringCache -XX:+UseParNewGC -XX:InitialCodeCacheSize=8m -XX:ReservedCodeCacheSize=32m -Dorg.terracotta.quartz.skipUpdateCheck=true -XX:MaxPermSize=512m On Wed, Aug 28, 2013 at 8:58 PM, Yazeed . <[email protected]> wrote: Hello, the error is on the consoleattached are the logs of openmmetings and Red5 from the time it started until the error, 10 or 15 minutes only. thanks in advance Date: Wed, 28 Aug 2013 13:24:28 +0700 Subject: Re: out of memory error From: [email protected] To: [email protected] Red5.bat wrote error to the console? Or flash client reported out of memory error? On Aug 28, 2013 12:57 PM, "yazeedhs" <[email protected]> wrote: Red5.bat Any recommendation ? Sent from Samsung Mobile -------- Original message -------- From: Maxim Solodovnik <[email protected]> Date: 28/08/2013 06:04 (GMT+02:00) To: Openmeetings user-list <[email protected]> Subject: Re: out of memory error How have you run it (red5.bat, red5-debug.bat, red5-highperf.bat)?Additionally full stacktrace will be helpful :) On Wed, Aug 28, 2013 at 4:07 AM, George Kirkham <[email protected]> wrote: Could you please provide a bit more detail. What version did you download? Where/how did you download it? What instructions did you follow to install OpenMeetings? Thanks, George Kirkham From: Yazeed . [mailto:[email protected]] Sent: Wednesday, 28 August 2013 4:37 AM To: [email protected] Subject: out of memory error Hello,I am new to OpenMeetings; I have downloaded the latest version and installed it on windows server 2008 R2 with 8 GB Ram and 4 cores. But the server hangs and an out of memory error is happening. Any help? Thanks, -- WBR Maxim aka solomax -- WBR Maxim aka solomax
@echo off SETLOCAL if NOT DEFINED RED5_HOME set RED5_HOME=%~dp0 if NOT DEFINED RED5_MAINCLASS set RED5_MAINCLASS=org.red5.server.Bootstrap if NOT DEFINED JAVA_HOME goto err REM JAVA options REM You can set JAVA_OPTS to add additional options if you want REM Set up logging options set LOGGING_OPTS=-Dlogback.ContextSelector=org.red5.logging.LoggingContextSelector -Dcatalina.useNaming=true REM Set up security options REM set SECURITY_OPTS= -Djava.security.debug=failure -Djava.security.manager -Djava.security.policy="%RED5_HOME%/conf/red5.policy" set SECURITY_OPTS=-Djava.security.debug=failure set JAVA_OPTS=%LOGGING_OPTS% %SECURITY_OPTS% %JAVA_OPTS% set JYTHON_OPTS=-Dpython.home=lib set RED5_CLASSPATH=%RED5_HOME%\boot.jar;%RED5_HOME%\conf;%CLASSPATH% if NOT DEFINED RED5_OPTS set RED5_OPTS= goto launchRed5 :launchRed5 echo Starting Red5 "%JAVA_HOME%\bin\java" %JYTHON_OPTS% %JAVA_OPTS% -cp "%RED5_CLASSPATH%" %RED5_MAINCLASS% %RED5_OPTS% goto finally :err echo JAVA_HOME environment variable not set! Take a look at the readme. pause :finally ENDLOCAL
