會員註冊 / 登入  |  電腦版  |  Jump to bottom of page

Developer Forum » How to Setup JForum Development Environment

發表人: andowson
10 年 前
smilie Software Requirements:
1.Java SE JDK 6 Update 26 or later
2.Apache Maven 3.0.3 or later
3.Eclipse IDE for Java EE Developers
4.Eclipse Plugins:
4.1 Subclipse for Subversion 1.6
4.2 Eclipse ResourceBundle Editor
4.3 Maven Integration (m2e)
4.4 FindBugs
5.Apache Tomcat 7.0.19 or later
6.MySQL Community Server 5.5.14 or later
7.Oracle JDBC Driver 10.2.0.4


smilie Installed Path:
(Windows platform)
1.C:\Program Files\Java\jdk1.6.0_26
2.C:\apache-maven-3.0.3
3.C:\eclipse
4.C:\eclipse\plugins
5.C:\apache-tomcat-7.0.19
6.C:\Program Files\MySQL\MySQL Server 5.5
7.%HOMEPATH%\.m2\repository\com\oracle\ojdbc14\10.2.0.4.0

smilie Environment Variables:
JAVA_HOME=C:\Program Files\Java\jdk1.6.0_26

MAVEN_HOME=C:\apache-maven-3.0.3
Path=%JAVA_HOME%\bin;%MAVEN_HOME%\bin;C:\Program Files\MySQL\MySQL Server 5.5\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem


smilie Steps:
1.Launch Eclipse, navigate with Window > Preferences > Java > Installed JREs, remove jre6 first and then add jdk1.6.0_26 with directory C:\Program Files\Java\jdk1.6.0_26
2.Under Installed JREs > Execution Environments > J2SE-1.5, check jdk1.6.0_26 on the Compatible JREs.
3.Do SVN import to get the source code: File > Import ...> SVN > Get Project From SVN
svn://svn.code.sf.net/p/jforum2/code=>trunk=>project name: jforum2-code
4.Install MySQL Server, set the root user's password to 'root'.
5.Create a database with name 'jforum', and a user with name 'jforum' and password as 'jforum' or anything you like.

mysql -u root -p
mysql> CREATE USER 'jforum'@'localhost' IDENTIFIED BY 'jforum';
mysql> CREATE DATABASE jforum DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
mysql> GRANT ALL ON jforum.* TO 'jforum'@'localhost';

6.Run the two mysql database scripts: mysql_db_struct.sql and mysql_data_dump.sql, like the following example:
(Change D:\workspace\jforum2 to where your workspace located)
mysql -u root -p

mysql> use jforum;
mysql> source D:\workspace\jforum2\src\main\config\database\mysql\mysql_db_struct.sql
mysql> source D:\workspace\jforum2\src\main\config\database\mysql\mysql_data_dump.sql

7.You need to download the Oracle Database 10g Release 2 (10.2.0.4) drivers ojdbc14.jar from oracle.com yourself, rename it to ojdbc14-10.2.0.4.0.jar, and then copy it into %HOMEPATH%\.m2\repository\com\oracle\ojdbc14\10.2.0.4.0 directory or use the following command to add it to your Maven local repository:
mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar

8.Right mouse click on the project name, Run As > Maven build > Goals: package > Run
9.Copy jforum.war from the project's target directory to C:\apache-tomcat-7.0.19\webapps
10.Start up Tomcat
11.Open a browser and visit http://localhost:8080/jforum/ to test it.

UPDATE:
1.if you want to use other database for test, you can first install jforum through the web interface or run the two database scripts for your_db: <your_db>_db_struct.sql and <your_db>_data_dump.sql.
2.you can create the jforum-custom.conf file manually under the src/main/config directory, the content can be as follows(just copy from src/main/config/database/<your_db>/<your_db>.properties):

dao.driver=net.jforum.dao.sqlserver.SqlServerDataAccessDriver
database.connection.dbname=jforum
database.connection.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
database.connection.host=localhost
database.connection.implementation=net.jforum.PooledConnection
database.connection.password=jforum
database.connection.pool.max=50
database.connection.pool.min=5
database.connection.pool.timeout=5000
database.connection.port=1433
database.connection.string=jdbc\:sqlserver\://${database.connection.host}\:${database.connection.port};databaseName\=${database.connection.dbname};user\=${database.connection.username};password\=${database.connection.password};selectMethod\=cursor;
database.connection.username=jforum
database.driver.name=sqlserver
database.support.autokeys=true
database.support.subqueries=true
dbencoding=utf-8
i18n.board.default=zh_TW
installed=true

3.for SQL Server developers, you need to copy the sqljdbc4.jar into %JAVA_HOME%\jre\lib\ext directory to avoid the No suitable driver exception.

發表人: Shivern
10 年 前
Really good guide Andowson.

I normally use NetBeans, so i'll try to make it work with that smilie

Edit: and PostgreSQL.

發表人: Helton
10 年 前
Hi Andowson!
I'm trying to follow these steps and I'm getting a lot of errors...

Can you help me out here?

Thank you very much one more time!!!


12:23:13,758 INFO [StdSchedulerFactory ] Quartz scheduler 'JForumScheduler' initialized from the specified file : '/Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/quartz-jforum.properties'
12:23:13,758 INFO [StdSchedulerFactory ] Quartz scheduler version: 2.0.2
12:23:13,769 INFO [SummaryScheduler ] Starting quartz summary expression 0 30 12 ? * MON
12:23:13,769 INFO [QuartzScheduler ] Scheduler JForumScheduler_$_NON_CLUSTERED started.
12:23:13,770 DEBUG [QuartzSchedulerThread] batch acquisition of 0 triggers
12:23:13,770 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:13,771 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.properties ...
12:23:13,771 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/generic/generic_queries.sql ...
12:23:13,772 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.sql ...
12:23:13,772 INFO [ConfigLoader ] Loading JDBC driver net.jforum.dao.mysql.MysqlDataAccessDriver
12:23:13,777 DEBUG [DynamicPooledDataSourceManagerMBean] MBean: com.mchange.v2.c3p0:type=PooledDataSource[1hge1578hk2qlsv93l3i4|7366c3a0] registered.
12:23:13,778 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/quartz-jforum.properties ...
12:23:13,789 DEBUG [BasicResourcePool ] incremented pending_acquires: 1
12:23:13,789 DEBUG [BasicResourcePool ] incremented pending_acquires: 2
12:23:13,789 DEBUG [BasicResourcePool ] incremented pending_acquires: 3
12:23:13,789 DEBUG [BasicResourcePool ] incremented pending_acquires: 4
12:23:13,789 DEBUG [BasicResourcePool ] incremented pending_acquires: 5
12:23:13,789 DEBUG [BasicResourcePool ] com.mchange.v2.resourcepool.BasicResourcePool@64f007ad config: [start -> 3; min -> 5; max -> 50; inc -> 3; num_acq_attempts -> 30; acq_attempt_delay -> 1000; check_idle_resources_delay -> 3600000; mox_resource_age -> 0; max_idle_time -> 0; excess_max_idle_time -> 0; destroy_unreturned_resc_time -> 180000; expiration_enforcement_delay -> 45000; break_on_acquisition_failure -> false; debug_store_checkout_exceptions -> false]
12:23:13,790 INFO [AbstractPoolBackedDataSource] Initializing c3p0 pool... com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIncrement -> 3, acquireRetryAttempts -> 30, acquireRetryDelay -> 1000, autoCommitOnClose -> false, automaticTestTable -> null, breakAfterAcquireFailure -> false, checkoutTimeout -> 120000, connectionCustomizerClassName -> null, connectionTesterClassName -> com.mchange.v2.c3p0.impl.DefaultConnectionTester, dataSourceName -> 1hge1578hk2qlsv93l3i4|7366c3a0, debugUnreturnedConnectionStackTraces -> false, description -> null, driverClass -> com.mysql.jdbc.Driver, factoryClassLocation -> null, forceIgnoreUnresolvedTransactions -> false, identityToken -> 1hge1578hk2qlsv93l3i4|7366c3a0, idleConnectionTestPeriod -> 3600, initialPoolSize -> 3, jdbcUrl -> jdbc:mysql://localhost:3306/jforum?user=root&password=root&autoReconnect=true&useUnicode=true&characterEncoding=utf8&useNewIO=false&zeroDateTimeBehavior=convertToNull&useServerPrepStmts=false&dumpQueriesOnException=true&jdbcCompliantTruncation=false, maxAdministrativeTaskTime -> 0, maxConnectionAge -> 0, maxIdleTime -> 0, maxIdleTimeExcessConnections -> 0, maxPoolSize -> 50, maxStatements -> 0, maxStatementsPerConnection -> 0, minPoolSize -> 5, numHelperThreads -> 3, numThreadsAwaitingCheckoutDefaultUser -> 0, preferredTestQuery -> null, properties -> {}, propertyCycle -> 0, testConnectionOnCheckin -> false, testConnectionOnCheckout -> false, unreturnedConnectionTimeout -> 180, usesTraditionalReflectiveProxies -> false ]
12:23:13,790 DEBUG [BasicResourcePool ] acquire test -- pool size: 0; target_pool_size: 5; desired target? 1
12:23:13,790 DEBUG [BasicResourcePool ] awaitAvailable(): [unknown]
12:23:13,790 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 0, unused: 0, excluded: 0]
12:23:13,798 DEBUG [C3P0PooledConnectionPool] com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@24cc17f1.acquireResource() returning.
12:23:13,798 DEBUG [C3P0PooledConnectionPool] com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@24cc17f1.acquireResource() returning.
12:23:13,798 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 1, unused: 1, excluded: 0]
12:23:13,798 DEBUG [BasicResourcePool ] decremented pending_acquires: 4
12:23:13,798 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 2, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@32e0c07c)
12:23:13,798 DEBUG [BasicResourcePool ] decremented pending_acquires: 3
12:23:13,798 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 2, unused: 1, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@32e0c07c)
12:23:13,799 DEBUG [C3P0PooledConnectionPool] com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@24cc17f1.acquireResource() returning.
12:23:13,799 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 3, unused: 2, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@32e0c07c)
12:23:13,799 DEBUG [BasicResourcePool ] decremented pending_acquires: 2
12:23:13,800 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:13,801 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.properties ...
12:23:13,801 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/generic/generic_queries.sql ...
12:23:13,802 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.sql ...
12:23:13,802 INFO [ConfigLoader ] Loading JDBC driver net.jforum.dao.mysql.MysqlDataAccessDriver
12:23:13,807 DEBUG [C3P0PooledConnectionPool] com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@24cc17f1.acquireResource() returning.
12:23:13,807 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 4, unused: 3, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@32e0c07c)
12:23:13,807 DEBUG [BasicResourcePool ] decremented pending_acquires: 1
12:23:13,807 DEBUG [DynamicPooledDataSourceManagerMBean] MBean: com.mchange.v2.c3p0:type=PooledDataSource[1hge1578hk2qlsv93l3i4|3d0bc85] registered.
12:23:13,808 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/quartz-jforum.properties ...
12:23:13,808 DEBUG [C3P0PooledConnectionPool] com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool$1PooledConnectionResourcePoolManager@24cc17f1.acquireResource() returning.
12:23:13,808 DEBUG [BasicResourcePool ] trace com.mchange.v2.resourcepool.BasicResourcePool@64f007ad [managed: 5, unused: 4, excluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@32e0c07c)
12:23:13,808 DEBUG [BasicResourcePool ] decremented pending_acquires: 0
12:23:13,810 INFO [SummaryModel ] Sending Weekly summary...
12:23:13,815 DEBUG [cache ] Could not find template in cache, creating new one; id=["mail/en_US/summaryMessage.txt"["en_US",UTF-8,parsed] ]
12:23:13,816 DEBUG [cache ] Compiling FreeMarker template "mail/en_US/summaryMessage.txt"["en_US",UTF-8,parsed] from "/Matrix/workspace64/jforum2/target/jforum/templates/mail/en_US/summaryMessage.txt"
12:23:14,756 DEBUG [UpdateChecker ] Checking for available updated version of Quartz...
12:23:14,862 DEBUG [Spammer ] Sending mail to: jforumtest@andowson.com
12:23:18,503 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:18,503 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.properties ...
12:23:18,504 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/generic/generic_queries.sql ...
12:23:18,512 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/database/mysql/mysql.sql ...
12:23:18,512 INFO [ConfigLoader ] Loading JDBC driver net.jforum.dao.mysql.MysqlDataAccessDriver
12:23:18,518 DEBUG [DynamicPooledDataSourceManagerMBean] MBean: com.mchange.v2.c3p0:type=PooledDataSource[1hge1578hk2qlsv93l3i4|1453ecec] registered.
12:23:18,519 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/quartz-jforum.properties ...
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.82 sec
Running net.jforum.util.I18nTest
12:23:18,526 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:18,527 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:23:18,565 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:23:18,565 INFO [JChannel ] JGroups version: 2.12.1.Final
12:23:18,566 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:23:18,566 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:23:18,569 WARN [Configurator ] FD property shun was deprecated and is ignored
12:23:18,571 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:23:18,586 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@1d209d56 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:18,586 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@4839880a was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-29292, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:62481
-------------------------------------------------------------------
12:23:18,647 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,647 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,647 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,651 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,651 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,664 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|5] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292]
12:23:18,665 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:23:18,667 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:23:28,668 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:28,669 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:23:28,712 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:23:28,712 INFO [JChannel ] JGroups version: 2.12.1.Final
12:23:28,713 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:23:28,713 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:23:28,716 WARN [Configurator ] FD property shun was deprecated and is ignored
12:23:28,719 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:23:28,732 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@4aad8dbc was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:28,733 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@483457f1 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-11869, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:52796
-------------------------------------------------------------------
12:23:28,793 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,793 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,793 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,796 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,797 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,799 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,809 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|6] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869]
12:23:28,810 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:23:28,812 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:23:38,811 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:38,812 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:23:38,854 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:23:38,854 INFO [JChannel ] JGroups version: 2.12.1.Final
12:23:38,855 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:23:38,855 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:23:38,858 WARN [Configurator ] FD property shun was deprecated and is ignored
12:23:38,860 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:23:38,876 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@174487c8 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:38,876 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@65de41c3 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-25560, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51308
-------------------------------------------------------------------
12:23:38,941 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,941 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,942 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,942 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,943 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,948 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,956 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,967 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|7] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560]
12:23:38,970 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:23:38,972 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:23:40,678 DEBUG [QuartzSchedulerThread] batch acquisition of 0 triggers
12:23:48,970 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:48,971 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:23:49,009 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:23:49,009 INFO [JChannel ] JGroups version: 2.12.1.Final
12:23:49,010 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:23:49,010 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:23:49,013 WARN [Configurator ] FD property shun was deprecated and is ignored
12:23:49,015 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:23:49,028 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@2e6a54f9 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:49,028 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@46f0bf3d was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-19529, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51309
-------------------------------------------------------------------
12:23:49,095 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,095 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,095 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,100 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,100 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,101 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,104 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,107 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,118 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|8] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529]
12:23:49,121 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:23:49,121 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:23:59,121 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:23:59,122 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:23:59,157 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:23:59,157 INFO [JChannel ] JGroups version: 2.12.1.Final
12:23:59,157 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:23:59,158 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:23:59,160 WARN [Configurator ] FD property shun was deprecated and is ignored
12:23:59,162 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:23:59,175 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@60891a0 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:59,175 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@1c90a278 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-11277, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51310
-------------------------------------------------------------------
12:23:59,179 WARN [UDP ] heltonsouza-11277: no physical address for heltonsouza-37782, dropping message
12:23:59,541 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,542 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,543 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,544 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,545 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,547 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,548 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,549 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,554 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,563 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|9] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277]
12:23:59,564 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:23:59,568 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:09,565 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:09,566 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:09,597 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:09,598 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:09,598 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:09,598 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:09,601 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:09,603 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:09,616 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@3429dbb8 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:09,616 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@281827c9 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-46580, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51311
-------------------------------------------------------------------
12:24:09,674 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,674 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,683 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,683 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,686 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,686 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,686 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,696 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,696 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,702 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,707 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|10] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580]
12:24:09,708 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:09,710 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:09,838 DEBUG [QuartzSchedulerThread] batch acquisition of 0 triggers
12:24:19,710 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:19,710 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:19,744 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:19,744 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:19,745 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:19,745 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:19,748 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:19,749 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:19,763 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@32be8e12 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:19,763 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@7c6159c4 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-56845, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51312
-------------------------------------------------------------------
12:24:19,767 WARN [UDP ] heltonsouza-56845: no physical address for heltonsouza-37782, dropping message
12:24:20,131 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,131 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,134 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,135 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,137 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,138 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,143 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,144 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,147 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,147 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,151 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,160 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|11] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845]
12:24:20,163 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:20,164 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:30,163 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:30,164 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:30,197 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:30,198 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:30,198 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:30,198 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:30,201 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:30,202 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:30,215 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@17ab5d6d was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:30,215 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@7382ab3e was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-46875, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51313
-------------------------------------------------------------------
12:24:30,280 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,280 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,282 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,282 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,283 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,283 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,285 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,285 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,286 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,291 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,291 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,295 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,305 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|12] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875]
12:24:30,309 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:30,309 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:35,130 DEBUG [QuartzSchedulerThread] batch acquisition of 0 triggers
12:24:40,308 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:40,314 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:40,344 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:40,344 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:40,344 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:40,344 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:40,347 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:40,349 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:40,361 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@179b3d1b was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:40,362 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@50c8c3b8 was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-2316, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51314
-------------------------------------------------------------------
12:24:40,364 WARN [UDP ] heltonsouza-2316: no physical address for heltonsouza-37782, dropping message
12:24:40,724 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,724 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,726 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,726 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,731 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,732 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,733 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,734 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,736 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,737 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,738 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,740 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,753 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,760 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|13] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316]
12:24:40,761 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:40,766 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:50,763 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:50,763 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:50,789 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:50,789 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:50,790 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:50,790 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:50,792 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:50,794 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:50,807 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@b4aa453 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:50,807 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@516a4aef was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

-------------------------------------------------------------------
GMS: address=heltonsouza-23646, cluster=JBossCache-Cluster, physical address=fe80:0:0:0:e2f8:47ff:fe0c:c80e%6:51315
-------------------------------------------------------------------
12:24:50,864 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,864 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,867 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,867 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,867 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,870 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,871 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,873 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,875 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,878 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,878 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,880 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,885 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,890 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,899 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-37782|14] [heltonsouza-37782, heltonsouza-25649, heltonsouza-45782, heltonsouza-30842, heltonsouza-24975, heltonsouza-29292, heltonsouza-11869, heltonsouza-25560, heltonsouza-19529, heltonsouza-11277, heltonsouza-46580, heltonsouza-56845, heltonsouza-46875, heltonsouza-2316, heltonsouza-23646]
12:24:50,904 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:50,904 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
Tests run: 10, Failures: 0, Errors: 10, Skipped: 0, Time elapsed: 102.377 sec <<< FAILURE!
Running net.jforum.util.preferences.SystemGlobalsTest
12:25:00,908 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/test-classes/config/SystemGlobalsTest.properties ...
12:25:00,908 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/test-classes/config/SystemGlobalsTest.properties ...
12:25:00,909 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/test-classes/config/SystemGlobalsTest.properties ...
12:25:00,909 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/test-classes/config/userDefaultsTest.properties ...
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running net.jforum.util.preferences.VariableExpanderTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running net.jforum.util.SafeHtmlTest
12:25:00,913 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:25:00,917 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:25:00,918 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:25:00,918 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running net.jforum.util.URLNormalizerTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec

Results :

Tests in error:
testAnonymousCount(net.jforum.OnlineUsersTest)
test2Anymous1Logged(net.jforum.OnlineUsersTest)
testAnonymousThenLogged(net.jforum.OnlineUsersTest)
test3LoggedThen1Logout(net.jforum.OnlineUsersTest)
testLoad(net.jforum.util.I18nTest)
testDefaultKeys(net.jforum.util.I18nTest)
testLoadCheese(net.jforum.util.I18nTest)
testCheeseKeys(net.jforum.util.I18nTest)
testLoadOrange(net.jforum.util.I18nTest)
testOrangeKeys(net.jforum.util.I18nTest)
testGetMessageWithLocale(net.jforum.util.I18nTest)
testRest(net.jforum.util.I18nTest)
testMergeCheeseOrange(net.jforum.util.I18nTest)
testOrangeIsDefault(net.jforum.util.I18nTest)

Tests run: 62, Failures: 0, Errors: 14, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2:37.835s
[INFO] Finished at: Wed Jul 20 12:25:01 EDT 2011
[INFO] Final Memory: 13M/81M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.7.1:test (default-test) on project jforum: There are test failures.
[ERROR]
[ERROR] Please refer to /Matrix/workspace64/jforum2/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

發表人: andowson
10 年 前
Hi Helton,

I guess it is due to lack of resource in your Linux TCP max buffer size setting, see line 68-69:
[code=plain; first-line:68]12:23:18,586 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@1d209d56 was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:23:18,586 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@4839880a was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)[/code]

You can try to enlarge the setting by doing the following to avoid a reboot:
echo 33554432 > /proc/sys/net/core/rmem_max


You can try to enlarge the setting in /etc/sysctl.conf permanently:
//32 MB
net.core.rmem_max = 33554432


發表人: Helton
10 年 前
Hi again!

I've changed the configs that you suggested.

I'm still getting some errors and not having the jforum.war been generated.

Any idea what is going wrong?


12:24:07,054 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-18472|1] [heltonsouza-18472, heltonsouza-38376]
12:24:07,057 INFO [RPCManagerImpl ] Received new cluster view: [heltonsouza-18472|1] [heltonsouza-18472, heltonsouza-38376]
12:24:07,062 WARN [STREAMING_STATE_TRANSFER] State reader socket thread spawned abnormaly
java.net.NoRouteToHostException: No route to host
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:432)
at java.net.Socket.connect(Socket.java:529)
at org.jgroups.util.Util.connect(Util.java:276)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.connectToStateProvider(STREAMING_STATE_TRANSFER.java:510)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.handleStateRsp(STREAMING_STATE_TRANSFER.java:462)
at org.jgroups.protocols.pbcast.STREAMING_STATE_TRANSFER.up(STREAMING_STATE_TRANSFER.java:223)
at org.jgroups.protocols.FRAG2.up(FRAG2.java:189)
at org.jgroups.protocols.pbcast.GMS.up(GMS.java:891)
at org.jgroups.protocols.pbcast.STABLE.up(STABLE.java:246)
at org.jgroups.protocols.UNICAST.handleDataReceived(UNICAST.java:613)
at org.jgroups.protocols.UNICAST.up(UNICAST.java:294)
at org.jgroups.protocols.pbcast.NAKACK.up(NAKACK.java:703)
at org.jgroups.protocols.VERIFY_SUSPECT.up(VERIFY_SUSPECT.java:133)
at org.jgroups.protocols.FD.up(FD.java:275)
at org.jgroups.protocols.FD_SOCK.up(FD_SOCK.java:275)
at org.jgroups.protocols.MERGE2.up(MERGE2.java:209)
at org.jgroups.protocols.Discovery.up(Discovery.java:293)
at org.jgroups.protocols.PING.up(PING.java:69)
at org.jgroups.protocols.TP.passMessageUp(TP.java:1109)
at org.jgroups.protocols.TP$IncomingPacket.handleMyMessage(TP.java:1665)
at org.jgroups.protocols.TP$IncomingPacket.run(TP.java:1647)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:680)
12:24:07,063 WARN [STREAMING_STATE_TRANSFER] Could not connect to state provider. Closing socket...
12:24:17,072 INFO [SystemGlobals ] Loading /Matrix/workspace64/jforum2/target/jforum/WEB-INF/config/SystemGlobals.properties ...
12:24:17,072 INFO [ConfigLoader ] Using cache engine: net.jforum.cache.JBossCacheEngine
12:24:17,138 INFO [PlatformMBeanServerRegistration] JBossCache MBeans were successfully registered to the platform mbean server.
12:24:17,138 INFO [JChannel ] JGroups version: 2.12.1.Final
12:24:17,139 WARN [Configurator ] UDP property use_incoming_packet_handler was deprecated and is ignored
12:24:17,139 WARN [Configurator ] UDP property use_concurrent_stack was deprecated and is ignored
12:24:17,147 WARN [Configurator ] FD property shun was deprecated and is ignored
12:24:17,152 WARN [Configurator ] GMS property shun was deprecated and is ignored
12:24:17,191 WARN [UDP ] receive buffer of socket java.net.DatagramSocket@58c3d9ac was set to 20MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)
12:24:17,191 WARN [UDP ] receive buffer of socket java.net.MulticastSocket@2207d8bb was set to 25MB, but the OS only allocated 65.51KB. This might lead to performance problems. Please set your max receive buffer in the OS correctly (e.g. net.core.rmem_max on Linux)

發表人: andowson
10 年 前
You can modify the cache.engine.implementation setting in SystemGlobals.properties to
cache.engine.implementation = ${cache.engine.default}

and try again.

發表人: Helton
10 年 前
Hi Andowson!

Thank you very much for your help!
I just got it working!!!

Congratulations again for the nice job!

Let's keep it alive!

Helton Souza.

發表人: cloph
10 年 前
 
andowson wrote:smilie Software Requirements:
6.MySQL Community Server 5.5.14 or later

If you don't want / can not install mysql, you can disable running the tests that are performed as part of the build process instead.

To do so, add the property maven.test.skip.exec with value true to the run/build configuration to only skip execution of tests (but still compile them), or check the "[x] skip tests" checkbox to disable tests completely.

發表人: andowson
10 年 前
Thanks for cloph's comment.
To do so, you can modify the bottom part of pom.xml as follows:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.test.skip.exec>true</maven.test.skip.exec>
</properties>


發表人: cloph
10 年 前
When using eclipse, you don't need to modify the pom - you can also configure the run configuration instead (Run → Run configurations) - see screenshot

[Thumb - jforum_no-tests.png]
檔案名稱 jforum_no-tests.png
描述 run configurations dialog in eclipse
檔案大小 79 Kbytes
下載次數 41294 次
[Disk] 下載


發表人: andowson
10 年 前
Thank you for sharing this.
I used to check the "Skip Tests" checkbox in the build option.

發表人: keithphw
10 年 前
Here's a short and hacky guide on how to set up jforum for development using NetBeans.

It's quite messy and can definitely do with improvements, but i'm posting it here regardless so that java EE n00bs like me have a starting point.

As I find improvements I'll make changes. Please suggest changes too smilie

By the way, thanks to Andowson Chang and Rafael Steil for their heroic efforts. I'm so glad that I can have a forum written in java and not ugly php.



Setting up jforum in Netbeans. Works in netbeans 7.0.1.
This is meant to complement Andowson's excellent guide for eclipse: http://jforum.andowson.com/posts/list/3.page

1. Download netbeans for Java EE (enterprise edition) from http://netbeans.org/downloads/
Install.

Note that you can use the servlet container 'GlassFish' that comes with netbeans instead of tomcat. If you are ok using glassfish, skip the next two steps.
2. Download xampp for your operating system from http://www.apachefriends.org/en/xampp.html
Install.

3. Register Tomcat (bundled with xampp) as a server in NetBeans.
In NetBeans, find the Menu: Tools -> Servers.
Select 'Add server'
Select 'Apache Tomcat' then click Next
In the 'Server location', click browse and find the tomcat directory in the xampp directory. For example: C:\JavaFiles\xampp-win32-1.7.7-VC9\xampp\tomcat
Type a username and password, making sure that they are the same as those used when installing xampp.
etc.

4. Download the latest jforum code from the repository using subversion.
In NetBeans, Team -> Subversion -> checkout
In the repository URL type: https://jforum2.googlecode.com/svn
Then click Next.
Half-way down the next dialog, in the 'Specify local folder to checkout folders into', choose a folder to save the files to.
Click Finish.
Netbeans will download all of the source files and you can see the progress in the bottom right 'checking out...' status of the netbeans window.

5. Create a new project in netbeans.
File -> new project
For category choose 'Java Web'and for project choose 'Web Application'.
Give the project any name, let's use 'myjforumproject'.
For server, choose Apache Tomcat.
Then click Finish.

6. Insert data into the project.
Find the folders downloaded by subversion using your file browser (WindowsExplorer).

Go to trunk/src/main/java and copy the 'net' folder.
Paste it into myjforumproject/src/java.

Go to trunk/src/main/webapp and copy all files and folders. There should be 6 folders and 3 files.
Paste it into myjforumproject/web. Overwrite and replace all existing files and folders.

Go to trunk/src/main/resources and copy the 'templates' folder.
Paste it into myjforumproject/web.

Go to trunk/src/main and copy the 'config' folder.
Paste it into myjforumproject/web/WEB-INF

6. Add the dependancy jar files.
Download jforum-2.3.3.war from http://code.google.com/p/jforum2/downloads/list
Unzip the war file using winzip or 7zip.
Go to jforum-2.3.3/WEB-INF/lib and copy all files except for jforum-2.3.3.jar. We don;t need that one since that's what we're actually building from the source code (.java files).
Create a new directory in your project folder, such as myjforumproject/dependancyLibs.
Paste the jar files into this folder.
In the NetBeans window, on the left hand side in the 'Projects' or 'Files' tab,
right click 'myjforumproject' and click 'Properties'.
In 'categories', select 'Libararies'.
In the right hand side of the dialog, select add jar/folder. Navigate to myjforumproject/dependancyLibs and select all of the jar files then click OK.


7. Now we're nearly there. For some reason the net.jforum.context.web.WebRequestContext.java file is missing a method, so add the following code to that file.

/**

* Returns an <code>Enumeration</code> of <code>String</code> objects containing the names
* of the parameters contained in this request. If the request has no parameters, the method
* returns an empty <code>Enumeration</code>.
*
* @return an <code>Enumeration</code> of <code>String</code> objects, each
* <code>String</code> containing the name of a request parameter; or an empty
* <code>Enumeration</code> if the request has no parameters
*/
public Enumeration getParameterNames() {
final WebRequestContext wrc = this;
return new Enumeration() {

Iterator<?> names = wrc.getRequest().getParameterMap().keySet().iterator();

public boolean hasMoreElements() {
return names.hasNext();
}

public Object nextElement() {
return names.next();
}
};
}


8. Final steps
Clean and build the project.
Then Run the project.
Your browser should take you to the installation page if everything is working.
If it isn't working, check that Tomcat (or Glassfish) is working by browsing to 'localhost:8080'. If that shows nothing then tomcat is not working or is not registed with netbeans properly.
If the NetEBans output window says: Starting of Tomcat failed, the server port 8080 is already in use., that is probably because you started tomcat in xampp's control panel, so make sure you stop tomcat in xampp then try again starting it in netbeans.
Note that you can stop the Tomcat server in NetBeans by selecting Window -> Services then expand the Servers node, then right click Apache Tomcat and select stop.

9. Final deployment
To deploy the application locally, navigate to myjforumproject/dist and unzip the myjforumproject.war file. Copy the unzipped war file directory 'myjforumproject' and paste it into the directory .../xampp/tomcat/webapps.
Then start up the xampp control panel (C:\JavaFiles\xampp-win32-1.7.7-VC9\xampp\xampp-control-3-beta.exe), and start tomcat.
Then browse to the address: http://localhost:8080/myjforumproject and hopefully the installation page shows.

發表人: keithphw
10 年 前
I've noticed something strange.

If i follow the above process, and name the web application project 'myjforumproject' for example, then when I run the project the browser is navigated to http://localhost:8080/myjforumproject/install.jsp

But if I make a new web application project 'jforum', then when I run the project the browser is navigated to http://localhost:8080/jforum/forums/list.page, and displays error messages in the browser and netbeans console, even though I haven't gone through the install process yet. I think it has something to do with the installation-detection code in index.jsp and the fact that the database tables are preceded by 'jforum_', which is the same name as the web application. Anyway, this is not really a bug since if you navigate to http://localhost:8080/jforum/install.page then you can install jforum and then there are no troubles after installing. But if you don;t realise that you have to navigate there, it can be very annoying since errors are thrown.


發表人: Raskolnikov
10 年 前
Hello!

First of all, thank you for this guide! smilie
I'm having the following problem when i try to run as "Maven build":

[ERROR] Failed to execute goal on project jforum: Could not resolve dependencies for project net.jforum:jforum:war:2.3.5-snapshot: Failure to find com.oracle:ojdbc14:jar:10.2.0.4.0 in https://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss has elapsed or updates are forced -> [Help 1]

I'm new with Maven and Eclipse (only used Netbeans) so i dont know how to solve this. I search in the repository and its true that this archive doesn't exists.

Thanks again for your help and excuse my bad english! smilie


發表人: andowson
10 年 前
Please make sure that you have followed the step 7.
7.You need to download the Oracle Database 10g Release 2 (10.2.0.4) drivers ojdbc14.jar from oracle.com yourself, rename it to ojdbc14-10.2.0.4.0.jar, and then copy it into %HOMEPATH%\.m2\repository\com\oracle\ojdbc14\10.2.0.4.0 directory or use the following command to add it to your Maven local repository:
mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.4.0 -Dpackaging=jar





會員註冊 / 登入  |  電腦版  |  Jump to top of page