EVOLUTION-MANAGER
Edit File: hazelcast.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <hazelcast xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.hazelcast.com/schema/config" xsi:schemaLocation="http://www.hazelcast.com/schema/config https://hazelcast.com/schema/config/hazelcast-config-3.9.xsd" > <map name="ONLINE_USERS_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="ROOMS_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="UID_BY_SID_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="WBS_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="STREAM_CLIENT_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="SERVERS_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <map name="INSTANT_TOKENS_KEY"> <near-cache> <eviction eviction-policy="NONE"/> <in-memory-format>OBJECT</in-memory-format> <cache-local-entries>true</cache-local-entries> </near-cache> </map> <instance-name>server-1</instance-name><!-- MAKE SURE THIS ONE IS UNIQUE --> <member-attributes> <attribute name="name">server-1</attribute><!-- MAKE SURE THIS ONE IS SAME AS ABOVE --> <attribute name="server.url">https://127.0.0.1:5443/openmeetings</attribute><!-- MAKE SURE THIS PUBLIC SERVER ADDRESS, USE IP with care: certificate may be not valid for IP --> </member-attributes> <network> <join> <multicast enabled="false"/> <tcp-ip enabled="false"/> <aws enabled="false"/> </join> </network> <!--network> <join> <multicast enabled="true"> <multicast-group>224.0.0.0</multicast-group> <multicast-port>54327</multicast-port> <multicast-time-to-live>32</multicast-time-to-live> <multicast-timeout-seconds>2</multicast-timeout-seconds> </multicast> </join> <interfaces enabled="true"> <interface>192.168.1.*</interface> </interfaces> </network--> <properties> <property name="hazelcast.logging.type">slf4j</property> </properties> </hazelcast>