Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
brew install minio/stable/minio

Next create a folder in your user directory (or wherever you prefer) to hold the MinIO data: ~/data.

Create the environment variable file, setting the server URL to localhost. You can save this file anywhere because you will point to it when starting up the server. I happened to put mine in the same directory as the MinIO data, so at ~/data/minio

...

Then point to your environment file when starting up (from within ~/data or whatever folder you have previously created for this):

Code Block
export MINIO_CONFIG_ENV_FILE=~/data/minio
minio server --console-address :9090

...