library/roles/orientdb: Add the configuration files management.
This commit is contained in:
parent
4b5303dad5
commit
36e589b826
|
@ -6,3 +6,7 @@ orientdb_tar_file: '{{ orientdb_dir }}-{{ orientdb_version }}.tar.gz'
|
|||
orientdb_binary_distribution_url: 'http://orientdb.com/download.php?file={{ orientdb_tar_file }}'
|
||||
orientdb_user: orientdb
|
||||
orientdb_home_prefix: /home
|
||||
orientdb_configuration_files:
|
||||
- orientdb-server-log.properties
|
||||
- orientdb-server-config.xml
|
||||
- hazelcast.xml
|
||||
|
|
|
@ -18,5 +18,16 @@
|
|||
become_user: '{{ orientdb_user }}'
|
||||
file: src={{ orientdb_dir }}-{{ orientdb_version }} dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }} state=link
|
||||
|
||||
- name: Install the orientdb startup script
|
||||
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
|
||||
file: /var/log/orientdb state=directory owner={{ orientdb_user }} group={{ orientdb_user }} mode=0755
|
||||
|
||||
- name: Install the orientdb configuration files
|
||||
become: True
|
||||
become_user: '{{ orientdb_user }}'
|
||||
template: src={{ item }}.j2 dest={{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}/{{ item }} mode=0444
|
||||
|
||||
tags: orientdb
|
||||
when: orientdb_install
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- ~ Copyright (c) 2008-2012, Hazel Bilisim Ltd. All Rights Reserved. ~
|
||||
~ Licensed 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
|
||||
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">
|
||||
<group>
|
||||
<name>orientdb</name>
|
||||
<password>orientdb</password>
|
||||
</group>
|
||||
<network>
|
||||
<port auto-increment="true">2434</port>
|
||||
<join>
|
||||
<multicast enabled="true">
|
||||
<multicast-group>235.1.1.1</multicast-group>
|
||||
<multicast-port>2434</multicast-port>
|
||||
</multicast>
|
||||
</join>
|
||||
</network>
|
||||
<executor-service>
|
||||
<pool-size>16</pool-size>
|
||||
</executor-service>
|
||||
</hazelcast>
|
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<orient-server>
|
||||
<handlers>
|
||||
<handler class="com.orientechnologies.orient.graph.handler.OGraphServerHandler">
|
||||
<parameters>
|
||||
<parameter value="true" name="enabled"/>
|
||||
<parameter value="50" name="graph.pool.max"/>
|
||||
</parameters>
|
||||
</handler>
|
||||
<handler class="com.orientechnologies.orient.server.hazelcast.OHazelcastPlugin">
|
||||
<parameters>
|
||||
<parameter value="${distributed}" name="enabled"/>
|
||||
<parameter value="${ORIENTDB_HOME}/config/default-distributed-db-config.json" name="configuration.db.default"/>
|
||||
<parameter value="${ORIENTDB_HOME}/config/hazelcast.xml" name="configuration.hazelcast"/>
|
||||
</parameters>
|
||||
</handler>
|
||||
<handler class="com.orientechnologies.orient.server.handler.OJMXPlugin">
|
||||
<parameters>
|
||||
<parameter value="false" name="enabled"/>
|
||||
<parameter value="true" name="profilerManaged"/>
|
||||
</parameters>
|
||||
</handler>
|
||||
<handler class="com.orientechnologies.orient.server.handler.OAutomaticBackup">
|
||||
<parameters>
|
||||
<parameter value="false" name="enabled"/>
|
||||
<parameter value="${ORIENTDB_HOME}/config/automatic-backup.json" name="config"/>
|
||||
</parameters>
|
||||
</handler>
|
||||
<handler class="com.orientechnologies.orient.server.handler.OServerSideScriptInterpreter">
|
||||
<parameters>
|
||||
<parameter value="true" name="enabled"/>
|
||||
<parameter value="SQL" name="allowedLanguages"/>
|
||||
</parameters>
|
||||
</handler>
|
||||
</handlers>
|
||||
<network>
|
||||
<sockets>
|
||||
<socket implementation="com.orientechnologies.orient.server.network.OServerTLSSocketFactory" name="ssl">
|
||||
<parameters>
|
||||
<parameter value="false" name="network.ssl.clientAuth"/>
|
||||
<parameter value="config/cert/orientdb.ks" name="network.ssl.keyStore"/>
|
||||
<parameter value="password" name="network.ssl.keyStorePassword"/>
|
||||
<parameter value="config/cert/orientdb.ks" name="network.ssl.trustStore"/>
|
||||
<parameter value="password" name="network.ssl.trustStorePassword"/>
|
||||
</parameters>
|
||||
</socket>
|
||||
<socket implementation="com.orientechnologies.orient.server.network.OServerTLSSocketFactory" name="https">
|
||||
<parameters>
|
||||
<parameter value="false" name="network.ssl.clientAuth"/>
|
||||
<parameter value="config/cert/orientdb.ks" name="network.ssl.keyStore"/>
|
||||
<parameter value="password" name="network.ssl.keyStorePassword"/>
|
||||
<parameter value="config/cert/orientdb.ks" name="network.ssl.trustStore"/>
|
||||
<parameter value="password" name="network.ssl.trustStorePassword"/>
|
||||
</parameters>
|
||||
</socket>
|
||||
</sockets>
|
||||
<protocols>
|
||||
<protocol implementation="com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary" name="binary"/>
|
||||
<protocol implementation="com.orientechnologies.orient.server.network.protocol.http.ONetworkProtocolHttpDb" name="http"/>
|
||||
</protocols>
|
||||
<listeners>
|
||||
<listener protocol="binary" socket="default" port-range="2424-2430" ip-address="0.0.0.0"/>
|
||||
<listener protocol="http" socket="default" port-range="2480-2490" ip-address="0.0.0.0">
|
||||
<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">
|
||||
<parameters>
|
||||
<entry value="Cache-Control: no-cache, no-store, max-age=0, must-revalidate\r\nPragma: no-cache" name="http.cache:*.htm *.html"/>
|
||||
<entry value="Cache-Control: max-age=120" name="http.cache:default"/>
|
||||
</parameters>
|
||||
</command>
|
||||
<command implementation="com.orientechnologies.orient.graph.server.command.OServerCommandGetGephi" pattern="GET|gephi/*" stateful="false"/>
|
||||
</commands>
|
||||
<parameters>
|
||||
<parameter value="utf-8" name="network.http.charset"/>
|
||||
<parameter value="true" name="network.http.jsonResponseError"/>
|
||||
</parameters>
|
||||
</listener>
|
||||
</listeners>
|
||||
</network>
|
||||
<storages/>
|
||||
<users>
|
||||
<user resources="*" password="iePoog9o" name="root"/>
|
||||
<user resources="connect,server.listDatabases,server.dblist" password="{PBKDF2WithHmacSHA256}0F37A00B86DCF9F3B76D38ACE382F41D28C881C1F6628CC7:C9FBA67AE4A549B5E6F25D14350FDAE712B37B870C9DE697:65536" name="guest"/>
|
||||
</users>
|
||||
<properties>
|
||||
<entry value="1" name="db.pool.min"/>
|
||||
<entry value="50" name="db.pool.max"/>
|
||||
<entry value="true" name="profiler.enabled"/>
|
||||
</properties>
|
||||
<isAfterFirstTime>true</isAfterFirstTime>
|
||||
</orient-server>
|
|
@ -0,0 +1,46 @@
|
|||
#
|
||||
# /*
|
||||
# * Copyright 2014 Orient Technologies LTD (info(at)orientechnologies.com)
|
||||
# *
|
||||
# * Licensed 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.
|
||||
# *
|
||||
# * For more information: http://www.orientechnologies.com
|
||||
# */
|
||||
#
|
||||
|
||||
# Specify the handlers to create in the root logger
|
||||
# (all loggers are children of the root logger)
|
||||
# The following creates two handlers
|
||||
handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler
|
||||
|
||||
# Set the default logging level for the root logger
|
||||
.level = INFO
|
||||
com.orientechnologies.level = INFO
|
||||
com.orientechnologies.orient.server.distributed.level = INFO
|
||||
|
||||
# Set the default logging level for new ConsoleHandler instances
|
||||
java.util.logging.ConsoleHandler.level = INFO
|
||||
# Set the default formatter for new ConsoleHandler instances
|
||||
java.util.logging.ConsoleHandler.formatter = com.orientechnologies.common.log.OAnsiLogFormatter
|
||||
|
||||
# Set the default logging level for new FileHandler instances
|
||||
java.util.logging.FileHandler.level = INFO
|
||||
# Naming style for the output file
|
||||
java.util.logging.FileHandler.pattern=../log/orient-server.log
|
||||
# Set the default formatter for new FileHandler instances
|
||||
java.util.logging.FileHandler.formatter = com.orientechnologies.common.log.OLogFormatter
|
||||
# Limiting size of output file in bytes:
|
||||
java.util.logging.FileHandler.limit=10000000
|
||||
# Number of output files to cycle through, by appending an
|
||||
# integer to the base file name:
|
||||
java.util.logging.FileHandler.count=10
|
|
@ -0,0 +1,79 @@
|
|||
#!/bin/sh
|
||||
# OrientDB service script
|
||||
#
|
||||
# Copyright (c) Orient Technologies LTD (http://www.orientechnologies.com)
|
||||
|
||||
# chkconfig: 2345 20 80
|
||||
# description: OrientDb init script
|
||||
# processname: orientdb.sh
|
||||
|
||||
# You have to SET the OrientDB installation directory here
|
||||
ORIENTDB_DIR="{{ orientdb_home_prefix }}/{{ orientdb_user }}/{{ orientdb_dir }}"
|
||||
ORIENTDB_USER="{{ orientdb_user }}"
|
||||
|
||||
usage() {
|
||||
echo "Usage: `basename $0`: <start|stop|status>"
|
||||
exit 1
|
||||
}
|
||||
|
||||
start() {
|
||||
status
|
||||
if [ $PID -gt 0 ]
|
||||
then
|
||||
echo "OrientDB server daemon was already started. PID: $PID"
|
||||
return $PID
|
||||
fi
|
||||
echo "Starting OrientDB server daemon..."
|
||||
cd "$ORIENTDB_DIR/bin"
|
||||
su $ORIENTDB_USER -c "cd \"$ORIENTDB_DIR/bin\"; /usr/bin/nohup ./server.sh 1>../log/orientdb.log 2>../log/orientdb.err &"
|
||||
}
|
||||
|
||||
stop() {
|
||||
status
|
||||
if [ $PID -eq 0 ]
|
||||
then
|
||||
echo "OrientDB server daemon is already not running"
|
||||
return 0
|
||||
fi
|
||||
echo "Stopping OrientDB server daemon..."
|
||||
cd "$ORIENTDB_DIR/bin"
|
||||
su $ORIENTDB_USER -c "cd \"$ORIENTDB_DIR/bin\"; /usr/bin/nohup ./shutdown.sh 1>>../log/orientdb.log 2>>../log/orientdb.err &"
|
||||
}
|
||||
|
||||
status() {
|
||||
PID=` ps auxw | grep 'orientdb.www.path' | grep java | grep -v grep | awk '{print $2}'`
|
||||
if [ "x$PID" = "x" ]
|
||||
then
|
||||
PID=0
|
||||
fi
|
||||
|
||||
# if PID is greater than 0 then OrientDB is running, else it is not
|
||||
return $PID
|
||||
}
|
||||
|
||||
if [ "x$1" = "xstart" ]
|
||||
then
|
||||
start
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "x$1" = "xstop" ]
|
||||
then
|
||||
stop
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "x$1" = "xstatus" ]
|
||||
then
|
||||
status
|
||||
if [ $PID -gt 0 ]
|
||||
then
|
||||
echo "OrientDB server daemon is running with PID: $PID"
|
||||
exit 0
|
||||
else
|
||||
echo "OrientDB server daemon is NOT running"
|
||||
exit 3
|
||||
fi
|
||||
fi
|
||||
|
||||
usage
|
Loading…
Reference in New Issue