2016-07-15 19:12:54 -04:00
# Minio Quickstart Guide [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2016-07-15 18:03:59 -04:00
Minio is an object storage server released under Apache License v2.0. It is compatible with Amazon S3 cloud storage service. It is best suited for storing unstructured data such as photos, videos, log files, backups and container / VM images. Size of an object can range from a few KBs to a maximum of 5TB.
2015-05-27 21:34:42 -04:00
2016-07-15 18:03:59 -04:00
## 1. Download
2016-07-15 19:12:54 -04:00
2016-07-15 18:03:59 -04:00
Minio server is light enough to be bundled with the application stack, similar to NodeJS, Redis and MySQL.
2015-10-16 14:40:47 -04:00
2016-07-15 18:03:59 -04:00
| Platform| Architecture | URL|
| ----------| -------- | ------|
|GNU/Linux|64-bit Intel|https://dl.minio.io/server/minio/release/linux-amd64/minio|
||32-bit Intel|https://dl.minio.io/server/minio/release/linux-386/minio|
||32-bit ARM|https://dl.minio.io/server/minio/release/linux-arm/minio|
|Apple OS X|64-bit Intel|https://dl.minio.io/server/minio/release/darwin-amd64/minio|
|Microsoft Windows|64-bit|https://dl.minio.io/server/minio/release/windows-amd64/minio.exe|
||32-bit|https://dl.minio.io/server/minio/release/windows-386/minio.exe|
|FreeBSD|64-bit|https://dl.minio.io/server/minio/release/freebsd-amd64/minio|
2015-10-16 14:40:47 -04:00
2016-07-15 19:12:54 -04:00
### Install from Source
2016-02-15 15:45:02 -05:00
2016-07-15 18:03:59 -04:00
Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang ](https://docs.minio.io/docs/how-to-install-golang ).
2015-07-14 13:57:53 -04:00
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
$ go get -d github.com/minio/minio
$ cd $GOPATH/src/github.com/minio/minio
$ make
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
```
2016-07-15 19:12:54 -04:00
## 2. Run Minio Server
2016-07-21 17:58:16 -04:00
### GNU/Linux
2015-07-14 13:57:53 -04:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2015-11-14 05:39:02 -05:00
$ chmod +x minio
2016-01-08 13:17:08 -05:00
$ ./minio --help
2016-07-15 18:03:59 -04:00
$ ./minio server ~/Photos
2015-05-27 21:34:42 -04:00
2016-07-15 18:03:59 -04:00
Endpoint: http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-07-15 19:12:54 -04:00
AccessKey: USWUXHGYZQYFYFFIT3RE
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-07-15 18:03:59 -04:00
Region: us-east-1
2015-11-14 05:39:02 -05:00
2016-07-15 18:03:59 -04:00
Browser Access:
http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2015-11-14 05:39:02 -05:00
2016-07-15 18:03:59 -04:00
Command-line Access: https://docs.minio.io/docs/minio-client-quick-start-guide
$ mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2015-11-14 05:39:02 -05:00
2016-07-15 18:03:59 -04:00
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
```
2016-04-14 20:22:47 -04:00
2016-07-21 17:58:16 -04:00
### OS X
2016-04-14 20:22:47 -04:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-04-14 20:22:47 -04:00
$ chmod 755 minio
$ ./minio --help
2016-07-15 18:03:59 -04:00
$ ./minio server ~/Photos
config/main: Re-write config files - add to new config v3
- New config format.
```
{
"version": "3",
"address": ":9000",
"backend": {
"type": "fs",
"disk": "/path"
},
"credential": {
"accessKey": "WLGDGYAQYIGI833EV05A",
"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
},
"region": "us-east-1",
"logger": {
"file": {
"enable": false,
"fileName": "",
"level": "error"
},
"syslog": {
"enable": false,
"address": "",
"level": "debug"
},
"console": {
"enable": true,
"level": "fatal"
}
}
}
```
New command lines in lieu of supporting XL.
Minio initialize filesystem backend.
~~~
$ minio init fs <path>
~~~
Minio initialize XL backend.
~~~
$ minio init xl <url1>...<url16>
~~~
For 'fs' backend it starts the server.
~~~
$ minio server
~~~
For 'xl' backend it waits for servers to join.
~~~
$ minio server
... [PROGRESS BAR] of servers connecting
~~~
Now on other servers execute 'join' and they connect.
~~~
....
minio join <url1> -- from <url2> && minio server
minio join <url1> -- from <url3> && minio server
...
...
minio join <url1> -- from <url16> && minio server
~~~
2016-02-12 18:27:10 -05:00
2016-07-13 02:21:18 -04:00
Endpoint: http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-07-15 19:12:54 -04:00
AccessKey: USWUXHGYZQYFYFFIT3RE
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-07-13 02:21:18 -04:00
Region: us-east-1
Browser Access:
http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
Command-line Access: https://docs.minio.io/docs/minio-client-quick-start-guide
2016-07-15 18:03:59 -04:00
$ mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-07-13 02:21:18 -04:00
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
2016-07-21 17:58:16 -04:00
2016-01-08 22:42:45 -05:00
```
2016-07-21 17:58:16 -04:00
### Microsoft Windows
2016-01-08 22:42:45 -05:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
C:\Users\Username\Downloads> minio.exe --help
C:\Users\Username\Downloads> minio.exe server D:\Photos
2016-01-08 22:42:45 -05:00
2016-07-15 18:03:59 -04:00
Endpoint: http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-07-15 19:12:54 -04:00
AccessKey: USWUXHGYZQYFYFFIT3RE
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-07-15 18:03:59 -04:00
Region: us-east-1
2016-05-12 19:35:11 -04:00
2016-07-15 18:03:59 -04:00
Browser Access:
http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-05-12 19:35:11 -04:00
2016-07-15 18:03:59 -04:00
Command-line Access: https://docs.minio.io/docs/minio-client-quick-start-guide
$ mc.exe config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-05-12 19:35:11 -04:00
2016-07-15 18:03:59 -04:00
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
2016-05-12 19:35:11 -04:00
2016-07-21 17:58:16 -04:00
2016-05-12 19:35:11 -04:00
```
2015-10-22 04:31:09 -04:00
2016-07-21 17:58:16 -04:00
### Docker Container
2015-10-22 04:31:09 -04:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
$ docker pull minio/minio
$ docker run -p 9000:9000 minio/minio
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
```
2015-12-06 16:40:48 -05:00
2016-07-21 17:58:16 -04:00
### FreeBSD
2016-01-08 22:42:45 -05:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
$ chmod 755 minio
$ ./minio --help
$ ./minio server ~/Photos
2015-12-09 18:38:40 -05:00
2016-07-15 18:03:59 -04:00
Endpoint: http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-07-15 19:12:54 -04:00
AccessKey: USWUXHGYZQYFYFFIT3RE
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-07-15 18:03:59 -04:00
Region: us-east-1
2015-12-09 18:38:40 -05:00
2016-07-15 18:03:59 -04:00
Browser Access:
http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
2016-03-22 03:09:44 -04:00
2016-07-15 18:03:59 -04:00
Command-line Access: https://docs.minio.io/docs/minio-client-quick-start-guide
$ mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
2016-03-22 03:09:44 -04:00
2016-07-15 18:03:59 -04:00
Object API (Amazon S3 compatible):
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
Java: https://docs.minio.io/docs/java-client-quickstart-guide
Python: https://docs.minio.io/docs/python-client-quickstart-guide
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
2016-03-22 03:09:44 -04:00
2016-07-21 17:58:16 -04:00
2016-03-22 03:09:44 -04:00
```
2016-07-15 18:03:59 -04:00
## 3. Test Minio Server using Minio Browser
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
Open a web browser and navigate to http://127.0.0.1:9000 to view your buckets on minio server.
2016-03-22 03:09:44 -04:00
2016-07-20 19:15:26 -04:00
![Screenshot ](https://github.com/minio/minio/blob/master/docs/screenshots/Minio_Browser.jpg?raw=true )
2015-12-09 18:38:40 -05:00
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
## 4. Test Minio Server using `mc`
2015-12-06 16:40:48 -05:00
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
Install mc from [here ](https://docs.minio.io/docs/minio-client-quick-start-guide ). Use `mc ls` command to list all the buckets on your minio server.
2016-07-15 19:12:54 -04:00
2016-07-15 18:03:59 -04:00
```sh
2016-07-21 17:58:16 -04:00
2016-07-15 18:03:59 -04:00
$ mc ls myminio/
[2015-08-05 08:13:22 IST] 0B andoria/
[2015-08-05 06:14:26 IST] 0B deflector/
[2015-08-05 08:13:11 IST] 0B ferenginar/
[2016-03-08 14:56:35 IST] 0B jarjarbing/
[2016-01-20 16:07:41 IST] 0B my.minio.io/
2016-07-21 17:58:16 -04:00
2016-03-22 03:09:44 -04:00
```
2016-07-15 18:03:59 -04:00
For more examples please navigate to [Minio Client Complete Guide ](https://docs.minio.io/docs/minio-client-complete-guide ).
2016-03-22 03:09:44 -04:00
2016-07-15 19:12:54 -04:00
2016-07-15 18:03:59 -04:00
## 5. Explore Further
2016-07-15 19:12:54 -04:00
2016-07-15 18:03:59 -04:00
- [Minio Erasure Code QuickStart Guide ](https://docs.minio.io/docs/minio-erasure-code-quickstart-guide )
- [Minio Docker Quickstart Guide ](https://docs.minio.io/docs/minio-docker-container )
2016-07-15 19:12:54 -04:00
- [Use `mc` with Minio Server ](https://docs.minio.io/docs/minio-client-quick-start-guide )
- [Use `aws-cli` with Minio Server ](https://docs.minio.io/docs/how-to-use-aws-cli-with-minio )
- [Use `s3cmd` with Minio Server ](https://docs.minio.io/docs/s3cmd-with-minio-server )
- [Use `minio-go` SDK with Minio Server ](https://docs/golang-client-quickstart-guide )
2016-07-15 18:03:59 -04:00
## 6. Contribute to Minio Project
2016-07-21 17:58:16 -04:00
Please follow Minio [Contributor's Guide ](https://github.com/minio/minio/blob/master/CONTRIBUTING.md )