summaryrefslogtreecommitdiff
path: root/MPE/arangodb/conf
diff options
context:
space:
mode:
Diffstat (limited to 'MPE/arangodb/conf')
-rw-r--r--MPE/arangodb/conf/arango-dfdb.conf28
-rw-r--r--MPE/arangodb/conf/arango-init-database.conf10
-rw-r--r--MPE/arangodb/conf/arango-secure-installation.conf10
-rw-r--r--MPE/arangodb/conf/arangobench.conf13
-rw-r--r--MPE/arangodb/conf/arangod.conf94
-rw-r--r--MPE/arangodb/conf/arangodump.conf12
-rw-r--r--MPE/arangodb/conf/arangoexport.conf10
-rw-r--r--MPE/arangodb/conf/arangoimport.conf10
-rw-r--r--MPE/arangodb/conf/arangoinspect.conf14
-rw-r--r--MPE/arangodb/conf/arangorestore.conf12
-rw-r--r--MPE/arangodb/conf/arangosh.conf14
-rw-r--r--MPE/arangodb/conf/arangovpack.conf0
-rw-r--r--MPE/arangodb/conf/bak_arangod.conf94
-rw-r--r--MPE/arangodb/conf/foxx-manager.conf15
14 files changed, 336 insertions, 0 deletions
diff --git a/MPE/arangodb/conf/arango-dfdb.conf b/MPE/arangodb/conf/arango-dfdb.conf
new file mode 100644
index 0000000..2a7a0a0
--- /dev/null
+++ b/MPE/arangodb/conf/arango-dfdb.conf
@@ -0,0 +1,28 @@
+# config file for arango-dfdb
+
+[database]
+auto-upgrade = false
+upgrade-check = false
+directory= /var/lib/arangodb3
+
+[server]
+rest-server = false
+authentication = true
+# username = root
+# password =
+uid = arangodb
+
+statistics = false
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
+app-path = /var/lib/arangodb3-apps
+script = /usr/share/arangodb3/js/server/arango-dfdb.js
+v8-contexts = 1
+
+[foxx]
+queues = false
+
+[log]
+level = info
+file = -
diff --git a/MPE/arangodb/conf/arango-init-database.conf b/MPE/arangodb/conf/arango-init-database.conf
new file mode 100644
index 0000000..53afd4b
--- /dev/null
+++ b/MPE/arangodb/conf/arango-init-database.conf
@@ -0,0 +1,10 @@
+@include arangod
+
+[server]
+rest-server = false
+
+[log]
+level = error
+
+[database]
+init-database = true
diff --git a/MPE/arangodb/conf/arango-secure-installation.conf b/MPE/arangodb/conf/arango-secure-installation.conf
new file mode 100644
index 0000000..130a683
--- /dev/null
+++ b/MPE/arangodb/conf/arango-secure-installation.conf
@@ -0,0 +1,10 @@
+@include arangod
+
+[server]
+rest-server = false
+
+[log]
+level = error
+
+[database]
+restore-admin = true
diff --git a/MPE/arangodb/conf/arangobench.conf b/MPE/arangodb/conf/arangobench.conf
new file mode 100644
index 0000000..5972078
--- /dev/null
+++ b/MPE/arangodb/conf/arangobench.conf
@@ -0,0 +1,13 @@
+# config file for arangobench
+
+keep-alive = true
+progress = true
+
+[log]
+file = -
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
diff --git a/MPE/arangodb/conf/arangod.conf b/MPE/arangodb/conf/arangod.conf
new file mode 100644
index 0000000..c6d54d3
--- /dev/null
+++ b/MPE/arangodb/conf/arangod.conf
@@ -0,0 +1,94 @@
+# ArangoDB configuration file
+#
+# Documentation:
+# https://www.arangodb.com/docs/stable/administration-configuration.html
+#
+
+[database]
+directory = /var/lib/arangodb3
+
+# maximal-journal-size = 33554432
+
+[server]
+# Specify the endpoint for HTTP requests by clients.
+# tcp://ipv4-address:port
+# tcp://[ipv6-address]:port
+# ssl://ipv4-address:port
+# ssl://[ipv6-address]:port
+# unix:///path/to/socket
+#
+# Examples:
+# endpoint = tcp://0.0.0.0:8529
+# endpoint = tcp://0.0.0.0:8529
+# endpoint = tcp://localhost:8529
+# endpoint = tcp://myserver.arangodb.com:8529
+# endpoint = tcp://[::]:8529
+# endpoint = tcp://[fe80::21a:5df1:aede:98cf]:8529
+#
+endpoint = tcp://[::]:8529
+storage-engine = auto
+maximal-queue-size = 8192
+
+# reuse a port on restart or wait until it is freed by the operating system
+# reuse-address = false
+
+authentication = true
+
+# number of maximal server threads. use 0 to make arangod determine the
+# number of threads automatically, based on available CPUs
+# maximal-threads = 0
+
+# gather server statistics
+statistics = true
+
+# the user and group are normally set in the start script
+# uid = arangodb
+# gid = arangodb
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
+app-path = /var/lib/arangodb3-apps
+
+# number of V8 contexts available for JavaScript execution. use 0 to
+# make arangod determine the number of contexts automatically.
+# v8-contexts = 0
+
+[foxx]
+# enable Foxx queues in the server
+# queues = true
+
+# interval (seconds) to use for polling jobs in Foxx queues
+# queues-poll-interval = 1
+
+[log]
+level = info
+level = queries=trace
+level = startup=info
+file = /var/log/arangodb3/arangod.log
+
+[cluster]
+
+[rocksdb]
+max-total-wal-size = 83886080
+write-buffer-size = 67108864
+compaction-read-ahead-size = 2097152
+
+[query]
+cache-mode = on
+cache-entries = 1024
+cache-entries-max-size = 268435456
+cache-entry-max-size = 16777216
+memory-limit = 1073741824
+optimizer-max-plans = 1024
+cache-include-system-collections = true
+slow-streaming-threshold = 600
+slow-threshold = 600
+
+[cache]
+size = 1G
+
+[network]
+max-open-connections = 20480
+
+[http]
+keep-alive-timeout = 10800
diff --git a/MPE/arangodb/conf/arangodump.conf b/MPE/arangodb/conf/arangodump.conf
new file mode 100644
index 0000000..ba6f7b2
--- /dev/null
+++ b/MPE/arangodb/conf/arangodump.conf
@@ -0,0 +1,12 @@
+# config file for arangodump
+
+progress = true
+
+[log]
+file = -
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
diff --git a/MPE/arangodb/conf/arangoexport.conf b/MPE/arangodb/conf/arangoexport.conf
new file mode 100644
index 0000000..f441822
--- /dev/null
+++ b/MPE/arangodb/conf/arangoexport.conf
@@ -0,0 +1,10 @@
+# config file for arangoexport
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
+
+[log]
+file = -
diff --git a/MPE/arangodb/conf/arangoimport.conf b/MPE/arangodb/conf/arangoimport.conf
new file mode 100644
index 0000000..8772bbd
--- /dev/null
+++ b/MPE/arangodb/conf/arangoimport.conf
@@ -0,0 +1,10 @@
+# config file for arangoimp
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
+
+[log]
+file = -
diff --git a/MPE/arangodb/conf/arangoinspect.conf b/MPE/arangodb/conf/arangoinspect.conf
new file mode 100644
index 0000000..d4b43cc
--- /dev/null
+++ b/MPE/arangodb/conf/arangoinspect.conf
@@ -0,0 +1,14 @@
+[console]
+pretty-print = true
+
+[log]
+file = -
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = false
+ask-jwt-secret = true
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
+client-module = inspector.js
diff --git a/MPE/arangodb/conf/arangorestore.conf b/MPE/arangodb/conf/arangorestore.conf
new file mode 100644
index 0000000..b7b2e6d
--- /dev/null
+++ b/MPE/arangodb/conf/arangorestore.conf
@@ -0,0 +1,12 @@
+# config file for arangorestore
+
+progress = true
+
+[log]
+file = -
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
diff --git a/MPE/arangodb/conf/arangosh.conf b/MPE/arangodb/conf/arangosh.conf
new file mode 100644
index 0000000..9a01b04
--- /dev/null
+++ b/MPE/arangodb/conf/arangosh.conf
@@ -0,0 +1,14 @@
+[console]
+pretty-print = true
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
+
+[log]
+file = -
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
diff --git a/MPE/arangodb/conf/arangovpack.conf b/MPE/arangodb/conf/arangovpack.conf
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/MPE/arangodb/conf/arangovpack.conf
diff --git a/MPE/arangodb/conf/bak_arangod.conf b/MPE/arangodb/conf/bak_arangod.conf
new file mode 100644
index 0000000..d8b6759
--- /dev/null
+++ b/MPE/arangodb/conf/bak_arangod.conf
@@ -0,0 +1,94 @@
+# ArangoDB configuration file
+#
+# Documentation:
+# https://www.arangodb.com/docs/stable/administration-configuration.html
+#
+
+[database]
+directory = /var/lib/arangodb3
+
+# maximal-journal-size = 33554432
+
+[server]
+# Specify the endpoint for HTTP requests by clients.
+# tcp://ipv4-address:port
+# tcp://[ipv6-address]:port
+# ssl://ipv4-address:port
+# ssl://[ipv6-address]:port
+# unix:///path/to/socket
+#
+# Examples:
+# endpoint = tcp://0.0.0.0:8529
+# endpoint = tcp://0.0.0.0:8529
+# endpoint = tcp://localhost:8529
+# endpoint = tcp://myserver.arangodb.com:8529
+# endpoint = tcp://[::]:8529
+# endpoint = tcp://[fe80::21a:5df1:aede:98cf]:8529
+#
+endpoint = tcp://[::]:8529
+storage-engine = auto
+maximal-queue-size = 8192
+
+# reuse a port on restart or wait until it is freed by the operating system
+# reuse-address = false
+
+authentication = true
+
+# number of maximal server threads. use 0 to make arangod determine the
+# number of threads automatically, based on available CPUs
+# maximal-threads = 0
+
+# gather server statistics
+statistics = true
+
+# the user and group are normally set in the start script
+# uid = arangodb
+# gid = arangodb
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
+app-path = /var/lib/arangodb3-apps
+
+# number of V8 contexts available for JavaScript execution. use 0 to
+# make arangod determine the number of contexts automatically.
+# v8-contexts = 0
+
+[foxx]
+# enable Foxx queues in the server
+# queues = true
+
+# interval (seconds) to use for polling jobs in Foxx queues
+# queues-poll-interval = 1
+
+[log]
+level = info
+level = queries=trace
+level = startup=info
+file = /var/log/arangodb3/arangod.log
+
+[cluster]
+
+[rocksdb]
+max-total-wal-size = 1073741824
+write-buffer-size = 2147483648
+compaction-read-ahead-size = 209715200
+
+[query]
+cache-mode = on
+cache-entries = 100000000
+cache-entries-max-size = 1073741824
+cache-entry-max-size = 16777216
+memory-limit = 1073741824
+optimizer-max-plans = 8192
+cache-include-system-collections = true
+slow-streaming-threshold = 600
+slow-threshold = 600
+
+[cache]
+size = 1G
+
+[network]
+max-open-connections = 20480
+
+[http]
+keep-alive-timeout = 10800
diff --git a/MPE/arangodb/conf/foxx-manager.conf b/MPE/arangodb/conf/foxx-manager.conf
new file mode 100644
index 0000000..d447977
--- /dev/null
+++ b/MPE/arangodb/conf/foxx-manager.conf
@@ -0,0 +1,15 @@
+[console]
+pretty-print = true
+
+[log]
+file = -
+
+[server]
+endpoint = tcp://127.0.0.1:8529
+authentication = true
+# username = root
+# password =
+
+[javascript]
+startup-directory = /usr/share/arangodb3/js
+execute-string = require("@arangodb/foxx/manager").run(ARGUMENTS);