· 7 years ago · Mar 22, 2018, 11:16 PM
1## Install minio
2
3```sh
4brew install minio
5vim /usr/local/etc/minio/config.json
6```
7
8```json
9{
10 "version": "20",
11 "credential": {
12 "accessKey": "minio",
13 "secretKey": "minio123"
14 },
15 "region": "eu-central-1",
16 "browser": "on",
17 "domain": "",
18 "logger": {
19 "console": {
20 "enable": true
21 },
22 "file": {
23 "enable": false,
24 "filename": ""
25 }
26 },
27 "notify": {
28
29 }
30}
31```
32
33```sh
34minio server --config-dir=/usr/local/etc/minio --address localhost:9000 ~/Sites/minio
35```