diff --git a/Minio-Configuration.md b/Minio-Configuration.md new file mode 100644 index 0000000..42238b9 --- /dev/null +++ b/Minio-Configuration.md @@ -0,0 +1,18 @@ +# Setting up minio + +The minio documentation is [here](https://min.io/docs/minio/linux/index.html) if you want to learn more about it. + +Some minio defaults that you can change if you want: + +| Attribute| Default | Description | +|--|--|--| +| Username | minioadmin | Default admin user name, it can be changed by starting the container with a variable `MINIO_ROOT_USER` ^ | +| Password | minioadmin | Default admin password, it can be changed by starting the container with a variable `MINIO_ROOT_PASSWORD` * | +| Admin Port | 9001 | This port provides a web UI interface to minio so you can administer it. Dont make this available outside your network. | + +^ These variables might need to be set the first time you run minio. If that is the case, and you havent put any data in minio yet, you can delete the `minio` sub directory, re-create it, and restart the container with those variables. + +*NOTE:* +* The settings we used on the [installation](Installation) page makes web UI port available from the host. So you should be able to go to `http://[HOST]:9001` and login with the admin username/password. (Where `HOST` is the hostname (or IP address) to your machine running hosting the clrghouz containers.) + +## Setup for clrghouz \ No newline at end of file