Skip to content

Instantly share code, notes, and snippets.

@bijay-shrestha
Last active February 16, 2020 07:15
Show Gist options
  • Save bijay-shrestha/209ba43b27f76c5dd9d26aac5a734c83 to your computer and use it in GitHub Desktop.
Save bijay-shrestha/209ba43b27f76c5dd9d26aac5a734c83 to your computer and use it in GitHub Desktop.
Minio Server Setup configuration

Change Root Password

$ sudo -i passwd

Login as root

$ su -

Note

Login as root to install minio server. For any form of confusions go through the references.

Install Minio Server

brew install minio/stable/minio
minio server home/shared 

or 

brew install minio/stable/mc

chmod +x minio

./minio servre /mnt/minio or /home/shared

Change API key and Secret

export MINIO_ACCESS_KEY=minio
export MINIO_SECRET_KEY=minio13
minio server home/shared

HINT: Access key length should be at least 3, and secret key length at least 8 characters

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment