d4science-ghn-cluster: New variabiles to cover the orientdb configuration.
library/roles/iptables/templates/iptables-rules.v4.j2: rule to support orientdb multicast configuration. library/roles/orientdb: Template all the configuration files. Move the database and log directory out of the distribution.
This commit is contained in:
parent
55f2c70e52
commit
86b510e7d5
|
@ -179,6 +179,11 @@
|
||||||
-A INPUT -d {{ tomcat_cluster_multicast_net }} -j ACCEPT
|
-A INPUT -d {{ tomcat_cluster_multicast_net }} -j ACCEPT
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if orientdb_hazelcast_multicast_enabled is defined and orientdb_hazelcast_multicast_enabled %}
|
||||||
|
# orientdb hazelcast multicast rules
|
||||||
|
-A INPUT -m pkttype --pkt-type multicast -d {{ orientdb_hazelcast_multicast_group }} -j ACCEPT
|
||||||
|
-A INPUT -m state --state NEW -p tcp -m tcp --dport {{ orientdb_hazelcast_multicast_port }} -j ACCEPT
|
||||||
|
{% endif %}
|
||||||
{% if ganglia_enabled is defined %}
|
{% if ganglia_enabled is defined %}
|
||||||
{% if ganglia_enabled %}
|
{% if ganglia_enabled %}
|
||||||
{% if ganglia_gmond_cluster_port is defined %}
|
{% if ganglia_gmond_cluster_port is defined %}
|
||||||
|
|
|
@ -1,12 +1,41 @@
|
||||||
---
|
---
|
||||||
orientdb_install: False
|
orientdb_install: False
|
||||||
|
orientdb_enabled: True
|
||||||
orientdb_version: 2.2.10
|
orientdb_version: 2.2.10
|
||||||
orientdb_dir: 'orientdb-community'
|
orientdb_dir: 'orientdb-community'
|
||||||
orientdb_tar_file: '{{ orientdb_dir }}-{{ orientdb_version }}.tar.gz'
|
orientdb_tar_file: '{{ orientdb_dir }}-{{ orientdb_version }}.tar.gz'
|
||||||
orientdb_binary_distribution_url: 'http://orientdb.com/download.php?file={{ orientdb_tar_file }}'
|
orientdb_binary_distribution_url: 'http://orientdb.com/download.php?file={{ orientdb_tar_file }}'
|
||||||
orientdb_user: orientdb
|
orientdb_user: orientdb
|
||||||
|
orientdb_log_dir: /var/log/orientdb
|
||||||
|
orientdb_log_level: INFO
|
||||||
orientdb_home_prefix: /home
|
orientdb_home_prefix: /home
|
||||||
|
orientdb_data_dir: '{{ orientdb_home_prefix }}/{{ orientdb_user }}/databases'
|
||||||
orientdb_configuration_files:
|
orientdb_configuration_files:
|
||||||
- orientdb-server-log.properties
|
- orientdb-server-log.properties
|
||||||
- orientdb-server-config.xml
|
- orientdb-server-config.xml
|
||||||
|
- default-distributed-db-config.json
|
||||||
- hazelcast.xml
|
- hazelcast.xml
|
||||||
|
|
||||||
|
orientdb_letsencrypt_ssl_enabled: False
|
||||||
|
|
||||||
|
orientdb_hooks_classes:
|
||||||
|
- { name: 'org.gcube.informationsystem.hooks.DocumentHook', position: 'REGULAR' }
|
||||||
|
- { name: 'org.gcube.informationsystem.hooks.RecordHook', position: 'REGULAR' }
|
||||||
|
|
||||||
|
orientdb_binary_protocol_lower_port: 2424
|
||||||
|
orientdb_binary_protocol_higher_port: 2430
|
||||||
|
orientdb_http_protocol_lower_port: 2480
|
||||||
|
orientdb_http_protocol_higher_port: 2490
|
||||||
|
|
||||||
|
orientdb_distributed: False
|
||||||
|
orientdb_distributed_autodeploy: true
|
||||||
|
orientdb_distributed_writequorum: 'majority'
|
||||||
|
orientdb_distributed_readquorum: 1
|
||||||
|
orientdb_distributed_readyourwrites: true
|
||||||
|
orientdb_distributed_executionmode: 'undefined'
|
||||||
|
orientdb_hazelcast_group_name: orientdb
|
||||||
|
orientdb_hazelcast_group_password: orientdb
|
||||||
|
orientbd_hazelcast_encryption: False
|
||||||
|
orientdb_hazelcast_multicast_enabled: True
|
||||||
|
orientdb_hazelcast_multicast_group: 235.1.1.1
|
||||||
|
orientdb_hazelcast_multicast_port: 2434
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
- name: Restart orientdb
|
||||||
|
service: name=orientdb state=restarted
|
||||||
|
when: orientdb_enabled
|
|
@ -3,9 +3,6 @@
|
||||||
- name: Create the orientdb user
|
- name: Create the orientdb user
|
||||||
user: name={{ orientdb_user }} home={{ orientdb_home_prefix }}/{{ orientdb_user }} createhome=yes shell=/bin/bash
|
user: name={{ orientdb_user }} home={{ orientdb_home_prefix }}/{{ orientdb_user }} createhome=yes shell=/bin/bash
|
||||||
|
|
||||||
# - name: Get the orientdb distribution
|
|
||||||
# get_url: url={{ orientdb_binary_distribution_url }} dest=/srv/{{ orientdb_tar_file }} validate_certs=False
|
|
||||||
|
|
||||||
- name: Unpack the orientdb distribution
|
- name: Unpack the orientdb distribution
|
||||||
become: True
|
become: True
|
||||||
become_user: '{{ orientdb_user }}'
|
become_user: '{{ orientdb_user }}'
|
||||||
|
@ -22,12 +19,38 @@
|
||||||
template: src=orientdb.init.j2 dest=/etc/init.d/orientdb owner=root group=root mode=0755
|
template: src=orientdb.init.j2 dest=/etc/init.d/orientdb owner=root group=root mode=0755
|
||||||
|
|
||||||
- name: Create a orientdb log directory out of the distribution directory
|
- name: Create a orientdb log directory out of the distribution directory
|
||||||
file: /var/log/orientdb state=directory owner={{ orientdb_user }} group={{ orientdb_user }} mode=0755
|
file: dest={{ orientdb_log_dir }} state=directory owner={{ orientdb_user }} group={{ orientdb_user }} mode=0755
|
||||||
|
|
||||||
- name: Install the orientdb configuration files
|
- name: Link the log directory inside the orientdb user home
|
||||||
become: True
|
become: True
|
||||||
become_user: '{{ orientdb_user }}'
|
become_user: '{{ orientdb_user }}'
|
||||||
template: src={{ item }}.j2 dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}/{{ item }} mode=0444
|
file: dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/logs src={{ orientdb_log_dir }} state=link
|
||||||
|
|
||||||
|
- name: Create the databases directory inside the orientdb user home
|
||||||
|
become: True
|
||||||
|
become_user: '{{ orientdb_user }}'
|
||||||
|
file: dest={{ orientdb_data_dir }} state=directory mode=0750
|
||||||
|
|
||||||
|
- name: Install the orientdb configuration files
|
||||||
|
template: src={{ item }}.j2 dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}/config/{{ item }} owner={{ orientdb_user }} group={{ orientdb_user }} mode=0440
|
||||||
|
with_items: '{{ orientdb_configuration_files }}'
|
||||||
|
notify: Restart orientdb
|
||||||
|
|
||||||
|
- name: Ensure that the service is enabled and running
|
||||||
|
service: name=orientdb state=started enabled=yes
|
||||||
|
when: orientdb_enabled
|
||||||
|
|
||||||
tags: orientdb
|
tags: orientdb
|
||||||
when: orientdb_install
|
when: orientdb_install
|
||||||
|
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: Ensure that the service is disabled and stopped
|
||||||
|
service: name=orientdb state=stopped enabled=no
|
||||||
|
|
||||||
|
- name: Remove the link to the orientdb distribution
|
||||||
|
file: dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }} state=absent
|
||||||
|
|
||||||
|
tags: orientdb
|
||||||
|
when: not orientdb_install
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"autoDeploy": {{ orientdb_distributed_autodeploy }},
|
||||||
|
"readQuorum": {{ orientdb_distributed_readquorum }},
|
||||||
|
"writeQuorum": "{{ orientdb_distributed_writequorum }}",
|
||||||
|
"executionMode": "{{ orientdb_distributed_executionmode }}",
|
||||||
|
"readYourWrites": {{ orientdb_distributed_readyourwrites }},
|
||||||
|
"servers": {
|
||||||
|
"*": "master"
|
||||||
|
},
|
||||||
|
"clusters": {
|
||||||
|
"internal": {
|
||||||
|
},
|
||||||
|
"*": {
|
||||||
|
"servers": ["<NEW_NODE>"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,17 +12,25 @@
|
||||||
xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.3.xsd"
|
xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.3.xsd"
|
||||||
xmlns="http://www.hazelcast.com/schema/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns="http://www.hazelcast.com/schema/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<group>
|
<group>
|
||||||
<name>orientdb</name>
|
<name>{{ orientdb_hazelcast_group_name }}</name>
|
||||||
<password>orientdb</password>
|
<password>{{ orientdb_hazelcast_group_password }}</password>
|
||||||
</group>
|
</group>
|
||||||
<network>
|
<network>
|
||||||
<port auto-increment="true">2434</port>
|
<port auto-increment="true">2434</port>
|
||||||
<join>
|
<join>
|
||||||
<multicast enabled="true">
|
<multicast enabled="{{ orientdb_hazelcast_multicast_enabled | ternary('true','false') }}">
|
||||||
<multicast-group>235.1.1.1</multicast-group>
|
<multicast-group>{{ orientdb_hazelcast_multicast_group }}</multicast-group>
|
||||||
<multicast-port>2434</multicast-port>
|
<multicast-port>{{ orientdb_hazelcast_multicast_port }}</multicast-port>
|
||||||
</multicast>
|
</multicast>
|
||||||
</join>
|
</join>
|
||||||
|
{% if orientbd_hazelcast_encryption %}
|
||||||
|
<symmetric-encryption enabled="true">
|
||||||
|
<algorithm>Blowfish</algorithm>
|
||||||
|
<salt>{{ orientdb_hazelcast_salt }}</salt>
|
||||||
|
<password>{{ orientdb_hazelcast_pwd }}</password>
|
||||||
|
<iteration-count>19</iteration-count>
|
||||||
|
</symmetric-encryption>
|
||||||
|
{% endif %}
|
||||||
</network>
|
</network>
|
||||||
<executor-service>
|
<executor-service>
|
||||||
<pool-size>16</pool-size>
|
<pool-size>16</pool-size>
|
||||||
|
|
|
@ -9,7 +9,12 @@
|
||||||
</handler>
|
</handler>
|
||||||
<handler class="com.orientechnologies.orient.server.hazelcast.OHazelcastPlugin">
|
<handler class="com.orientechnologies.orient.server.hazelcast.OHazelcastPlugin">
|
||||||
<parameters>
|
<parameters>
|
||||||
<parameter value="${distributed}" name="enabled"/>
|
{% if orientdb_distributed %}
|
||||||
|
<parameter value="true" name="enabled"/>
|
||||||
|
{% else %}
|
||||||
|
<parameter value="false" name="enabled"/>
|
||||||
|
{% endif %}
|
||||||
|
<parameter value="nodeName" name="{{ ansible_fqdn }}"/>
|
||||||
<parameter value="${ORIENTDB_HOME}/config/default-distributed-db-config.json" name="configuration.db.default"/>
|
<parameter value="${ORIENTDB_HOME}/config/default-distributed-db-config.json" name="configuration.db.default"/>
|
||||||
<parameter value="${ORIENTDB_HOME}/config/hazelcast.xml" name="configuration.hazelcast"/>
|
<parameter value="${ORIENTDB_HOME}/config/hazelcast.xml" name="configuration.hazelcast"/>
|
||||||
</parameters>
|
</parameters>
|
||||||
|
@ -59,8 +64,8 @@
|
||||||
<protocol implementation="com.orientechnologies.orient.server.network.protocol.http.ONetworkProtocolHttpDb" name="http"/>
|
<protocol implementation="com.orientechnologies.orient.server.network.protocol.http.ONetworkProtocolHttpDb" name="http"/>
|
||||||
</protocols>
|
</protocols>
|
||||||
<listeners>
|
<listeners>
|
||||||
<listener protocol="binary" socket="default" port-range="2424-2430" ip-address="0.0.0.0"/>
|
<listener protocol="binary" socket="default" port-range="{{ orientdb_binary_protocol_lower_port }}-{{ orientdb_binary_protocol_higher_port }}" ip-address="0.0.0.0"/>
|
||||||
<listener protocol="http" socket="default" port-range="2480-2490" ip-address="0.0.0.0">
|
<listener protocol="http" socket="default" port-range="{{ orientdb_http_protocol_lower_port }}-{{ orientdb_http_protocol_higher_port }}" ip-address="0.0.0.0">
|
||||||
<commands>
|
<commands>
|
||||||
<command implementation="com.orientechnologies.orient.server.network.protocol.http.command.get.OServerCommandGetStaticContent" pattern="GET|www GET|studio/ GET| GET|*.htm GET|*.html GET|*.xml GET|*.jpeg GET|*.jpg GET|*.png GET|*.gif GET|*.js GET|*.css GET|*.swf GET|*.ico GET|*.txt GET|*.otf GET|*.pjs GET|*.svg GET|*.json GET|*.woff GET|*.woff2 GET|*.ttf GET|*.svgz" stateful="false">
|
<command implementation="com.orientechnologies.orient.server.network.protocol.http.command.get.OServerCommandGetStaticContent" pattern="GET|www GET|studio/ GET| GET|*.htm GET|*.html GET|*.xml GET|*.jpeg GET|*.jpg GET|*.png GET|*.gif GET|*.js GET|*.css GET|*.swf GET|*.ico GET|*.txt GET|*.otf GET|*.pjs GET|*.svg GET|*.json GET|*.woff GET|*.woff2 GET|*.ttf GET|*.svgz" stateful="false">
|
||||||
<parameters>
|
<parameters>
|
||||||
|
@ -79,13 +84,18 @@
|
||||||
</network>
|
</network>
|
||||||
<storages/>
|
<storages/>
|
||||||
<users>
|
<users>
|
||||||
<user resources="*" password="iePoog9o" name="root"/>
|
<user resources="*" password="{{ orientdb_root_pwd }}" name="root"/>
|
||||||
<user resources="connect,server.listDatabases,server.dblist" password="{PBKDF2WithHmacSHA256}0F37A00B86DCF9F3B76D38ACE382F41D28C881C1F6628CC7:C9FBA67AE4A549B5E6F25D14350FDAE712B37B870C9DE697:65536" name="guest"/>
|
|
||||||
</users>
|
</users>
|
||||||
<properties>
|
<properties>
|
||||||
<entry value="1" name="db.pool.min"/>
|
<entry value="1" name="db.pool.min"/>
|
||||||
<entry value="50" name="db.pool.max"/>
|
<entry value="50" name="db.pool.max"/>
|
||||||
<entry value="true" name="profiler.enabled"/>
|
<entry value="true" name="profiler.enabled"/>
|
||||||
|
<entry value="{{ orientdb_data_dir }}" name="server.database.path" />
|
||||||
</properties>
|
</properties>
|
||||||
|
<hooks>
|
||||||
|
{% for class in orientdb_hooks_classes %}
|
||||||
|
<hook class="{{ class.name }}" position="{{ class.position }}"/>
|
||||||
|
{% endfor %}
|
||||||
|
</hooks>
|
||||||
<isAfterFirstTime>true</isAfterFirstTime>
|
<isAfterFirstTime>true</isAfterFirstTime>
|
||||||
</orient-server>
|
</orient-server>
|
||||||
|
|
|
@ -24,19 +24,19 @@
|
||||||
handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler
|
handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler
|
||||||
|
|
||||||
# Set the default logging level for the root logger
|
# Set the default logging level for the root logger
|
||||||
.level = INFO
|
.level = {{ orientdb_log_level }}
|
||||||
com.orientechnologies.level = INFO
|
com.orientechnologies.level = {{ orientdb_log_level }}
|
||||||
com.orientechnologies.orient.server.distributed.level = INFO
|
com.orientechnologies.orient.server.distributed.level = {{ orientdb_log_level }}
|
||||||
|
|
||||||
# Set the default logging level for new ConsoleHandler instances
|
# Set the default logging level for new ConsoleHandler instances
|
||||||
java.util.logging.ConsoleHandler.level = INFO
|
java.util.logging.ConsoleHandler.level = {{ orientdb_log_level }}
|
||||||
# Set the default formatter for new ConsoleHandler instances
|
# Set the default formatter for new ConsoleHandler instances
|
||||||
java.util.logging.ConsoleHandler.formatter = com.orientechnologies.common.log.OAnsiLogFormatter
|
java.util.logging.ConsoleHandler.formatter = com.orientechnologies.common.log.OAnsiLogFormatter
|
||||||
|
|
||||||
# Set the default logging level for new FileHandler instances
|
# Set the default logging level for new FileHandler instances
|
||||||
java.util.logging.FileHandler.level = INFO
|
java.util.logging.FileHandler.level = {{ orientdb_log_level }}
|
||||||
# Naming style for the output file
|
# Naming style for the output file
|
||||||
java.util.logging.FileHandler.pattern=../log/orient-server.log
|
java.util.logging.FileHandler.pattern={{ orientdb_log_dir }}/orient-server.log
|
||||||
# Set the default formatter for new FileHandler instances
|
# Set the default formatter for new FileHandler instances
|
||||||
java.util.logging.FileHandler.formatter = com.orientechnologies.common.log.OLogFormatter
|
java.util.logging.FileHandler.formatter = com.orientechnologies.common.log.OLogFormatter
|
||||||
# Limiting size of output file in bytes:
|
# Limiting size of output file in bytes:
|
||||||
|
|
Loading…
Reference in New Issue