minio unit file and env file
This commit is contained in:
parent
6d2901041e
commit
72b2923ec5
3 changed files with 39 additions and 19 deletions
|
@ -1,15 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Simple wrapper for Minio
|
||||
#
|
||||
# (torn, 2017-01-26)
|
||||
|
||||
bin="/home/cable/minio/minio"
|
||||
conf="/home/cable/minio/conf/"
|
||||
buckets="/home/cable/minio/buckets/"
|
||||
addr="127.0.0.1:9000"
|
||||
|
||||
export MINIO_BROWSER=off
|
||||
|
||||
$bin server -C "$conf" --address "$addr" --quiet "$buckets"
|
||||
|
8
minio.env
Normal file
8
minio.env
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Local export path.
|
||||
MINIO_VOLUMES="/home/cable/minio/buckets/"
|
||||
|
||||
# Options
|
||||
MINIO_OPTS="-C /home/cable/minio/conf/ --address 127.0.0.1:9000 --quiet"
|
||||
|
||||
MINIO_BROWSER=off
|
||||
|
|
@ -1,13 +1,40 @@
|
|||
[Unit]
|
||||
Description=Minio Cloud Storage
|
||||
After=network.target
|
||||
Description=Minio
|
||||
Documentation=https://docs.minio.io
|
||||
Wants=network-online.target
|
||||
After=network-online.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/home/cable/bin/minio-wrapper.sh
|
||||
Restart=on-failure
|
||||
WorkingDirectory=/home/cable/minio/
|
||||
|
||||
EnvironmentFile=-/home/cable/minio/minio.env
|
||||
ExecStartPre=/bin/bash -c "[ -n \"${MINIO_VOLUMES}\" ] || echo \"Variable MINIO_VOLUMES\""
|
||||
ExecStart=/home/cable/minio/minio server $MINIO_OPTS $MINIO_VOLUMES
|
||||
|
||||
User=cable
|
||||
Group=cable
|
||||
PermissionsStartOnly=true
|
||||
|
||||
StandardOutput=journal
|
||||
StandardError=inherit
|
||||
|
||||
# Specifies the maximum file descriptor number that can be opened by this process
|
||||
LimitNOFILE=65536
|
||||
|
||||
# Disable timeout logic and wait until process is stopped
|
||||
TimeoutStopSec=0
|
||||
|
||||
# SIGTERM signal is used to stop Minio
|
||||
KillSignal=SIGTERM
|
||||
|
||||
SendSIGKILL=no
|
||||
|
||||
SuccessExitStatus=0
|
||||
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
# Built for ${project.name}-${project.version} (${project.name})
|
||||
|
||||
|
|
Loading…
Reference in a new issue