You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
minio/dist/linux-systemd
Karthic Rao a9dd2793f9 Better formatting and adding systemd config to run Minio server on custom port. (#3113) 8 years ago
..
distributed Better formatting and adding systemd config to run Minio server on custom port. (#3113) 8 years ago
minio.service Point link of the docs to docs.minio.io. (#3025) 8 years ago
readme.md minor cleanup 8 years ago

readme.md

Readme

Service script for minio service for systemd.

Installation

mkdir /etc/minio/
mkdir -p /usr/share/minio/bin/
wget -O /usr/share/minio/bin/minio http://...
chmod +x /usr/share/minio/bin/minio

Create minio user.

useradd minio

Create default configuration. Don't forget to update MINIO_VOLUMES with the correct path(s).

cat <<EOT >> /etc/default/minio
MINIO_OPTS="--address :9000"
MINIO_VOLUMES="/tmp/minio/"
EOT

Systemctl

Put minio.service in /etc/systemd/system/

( cd /etc/systemd/system/; curl -O https://raw.githubusercontent.com/minio/minio/master/dist/linux-systemd/minio.service )

Enable startup on boot

systemctl enable minio.service