summaryrefslogtreecommitdiffstats
path: root/extras/thin-arbiter/gluster-ta-volume.service
diff options
context:
space:
mode:
authorAshish Pandey <aspandey@redhat.com>2018-05-22 15:48:16 +0530
committerAmar Tumballi <amarts@redhat.com>2018-05-30 03:24:49 +0000
commit95e735b71b077d1ad7fd8c5a7152176968cc6588 (patch)
tree2f3b66e0df83dc72e1d337bae5b92f86f12c1e58 /extras/thin-arbiter/gluster-ta-volume.service
parent052fce3f31d856fce10e07eda5f5c49ad3390d3a (diff)
thin-arbiter : Provide scripts and service file to start thin-arbiter process
1 - setup-thin-arbiter.sh To setup directory path for thin-arbiter. This is the path where replica id file will be placed and used by TA process. By default it will be /mnt/thin-arbiter. It is better to use default path and once set it should not be changed. 2 - gluster-ta-volume.service This is the Unit file used by systemd to start and keep the thin-arbiter process running. 3 - thin-arbiter.vol This is the default volume file for thin-arbiter. It will be used to start thin-arbiter process. This should not be modified by user except the directory path which can be modified using [1]. Change-Id: I68f2164f24adfa326c1d1a7a98c6ac4ff04ed553 fixes: bz#1579786 Signed-off-by: Ashish Pandey <aspandey@redhat.com>
Diffstat (limited to 'extras/thin-arbiter/gluster-ta-volume.service')
-rw-r--r--extras/thin-arbiter/gluster-ta-volume.service13
1 files changed, 13 insertions, 0 deletions
diff --git a/extras/thin-arbiter/gluster-ta-volume.service b/extras/thin-arbiter/gluster-ta-volume.service
new file mode 100644
index 00000000000..19be1757555
--- /dev/null
+++ b/extras/thin-arbiter/gluster-ta-volume.service
@@ -0,0 +1,13 @@
+[Unit]
+Description = Thin-arbiter process to maintain quorum for replica volume
+After = network.target
+
+[Service]
+Environment = "LOG_LEVEL=WARNING"
+ExecStart = /usr/local/sbin/glusterfsd -N --volfile-id ta-vol -f /var/lib/glusterd/thin-arbiter/thin-arbiter.vol --brick-port 24007 --xlator-option ta-vol-server.transport.socket.listen-port=24007
+Restart = always
+KillMode=process
+SuccessExitStatus=15
+
+[Install]
+WantedBy = multi-user.target