Skip to content

Commit

Permalink
Doc: Modified examples in how-to-run-multiple-minio-server-instances-…
Browse files Browse the repository at this point in the history
…on-single-machine.md (minio#2497)
  • Loading branch information
koolhead17 authored and harshavardhana committed Aug 19, 2016
1 parent 63bb78c commit a3c509f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ $ docker pull minio/minio
$ docker run -p 9000:9000 minio/minio

```
Please visit Minio Docker quickstart guide for more [here](https://docs.minio.io/docs/minio-docker-quickstart-guide)

### FreeBSD

Expand Down Expand Up @@ -150,6 +151,7 @@ Object API (Amazon S3 compatible):


```
Please visit official zfs FreeBSD guide for more details [here](https://www.freebsd.org/doc/handbook/zfs-quickstart.html)

## 3. Test Minio Server using Minio Browser

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to run multiple Minio server instances on single machine. [![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)

![minio_MULTIVERSE](https://github.com/minio/minio/blob/master/docs/screenshots/multiport.jpeg?raw=true)
![minio_MULTIVERSE](https://github.com/minio/minio/blob/master/docs/screenshots/multiport.png?raw=true)


In this document we will illustrate how to set up multiple Minio server instances on single machine. These Minio servers are running on their own port, data directory & configuration directory.
Expand All @@ -18,7 +18,7 @@ Minio server is running on port 9002, 9003, 9004 with associated data directory
**Minio server on port ``9002``**

```sh
$ ./minio -C /home/minio/minio1/.minio server --address 192.168.1.11:9002 minio1/data1/
$ ./minio -C ~/.m1config server --address 192.168.1.11:9002 ~/data1/

Endpoint: http://192.168.1.11:9002
AccessKey: XTW9SWKRWYKWE9M9K9RG
Expand All @@ -29,7 +29,7 @@ Region: us-east-1
**Minio server on port ``9003``**

```sh
$ ./minio -C /home/minio/minio2/.minio server --address 192.168.1.11:9003 minio1/data2/
$ ./minio -C ~/.m2config server --address 192.168.1.11:9003 ~/data2/

Endpoint: http://192.168.1.11:9003
AccessKey: UTD2WWPJOK754KMZKHWF
Expand All @@ -40,7 +40,7 @@ Region: us-east-1
**Minio server on port ``9004``**

```sh
$ ./minio -C /home/minio/minio3/.minio server --address 192.168.1.11:9004 minio1/data3/
$ ./minio -C ~/.m3config server --address 192.168.1.11:9004 ~/data3/

Endpoint: http://192.168.1.11:9004
AccessKey: KXLOJ908VEJ2K9RGUFHQ
Expand Down
Binary file removed docs/screenshots/multiport.jpeg
Binary file not shown.
Binary file added docs/screenshots/multiport.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a3c509f

Please sign in to comment.