mirror of
https://github.com/minio/minio.git
synced 2026-02-05 02:10:14 -05:00
Update CLI examples to be in sync with examples used on Minio website (#4920)
This commit is contained in:
@@ -21,16 +21,16 @@ Running Minio instances on shared backend is no different than running on a stan
|
||||
|
||||
### Ubuntu 16.04 LTS
|
||||
|
||||
Example 1: Start Minio instance on a shared backend mounted and available at `/mnt/nfs`.
|
||||
Example 1: Start Minio instance on a shared backend mounted and available at `/path/to/nfs-volume`.
|
||||
|
||||
On linux server1
|
||||
```shell
|
||||
minio server /mnt/nfs
|
||||
minio server /path/to/nfs-volume
|
||||
```
|
||||
|
||||
On linux server2
|
||||
```shell
|
||||
minio server /mnt/nfs
|
||||
minio server /path/to/nfs-volume
|
||||
```
|
||||
|
||||
### Windows 2012 Server
|
||||
@@ -39,24 +39,24 @@ Example 1: Start Minio instance on a shared backend mounted and available at `\\
|
||||
|
||||
On windows server1
|
||||
```cmd
|
||||
minio.exe server \\remote-server\cifs\export
|
||||
minio.exe server \\remote-server\cifs\data
|
||||
```
|
||||
|
||||
On windows server2
|
||||
```cmd
|
||||
minio.exe server \\remote-server\cifs\export
|
||||
minio.exe server \\remote-server\cifs\data
|
||||
```
|
||||
|
||||
Alternatively if `\\remote-server\cifs` is mounted as `D:\` drive.
|
||||
|
||||
On windows server1
|
||||
```cmd
|
||||
minio.exe server D:\export
|
||||
minio.exe server D:\data
|
||||
```
|
||||
|
||||
On windows server2
|
||||
```cmd
|
||||
minio.exe server D:\export
|
||||
minio.exe server D:\data
|
||||
```
|
||||
|
||||
Architecture
|
||||
|
||||
@@ -31,12 +31,12 @@ To run Minio shared backend instances, you need to start multiple Minio servers
|
||||
|
||||
#### Minio shared mode on Ubuntu 16.04 LTS.
|
||||
|
||||
You'll need the path to the shared volume, e.g. `/mnt/nfs`. Then run the following commands on all the nodes you'd like to launch Minio.
|
||||
You'll need the path to the shared volume, e.g. `/path/to/nfs-volume`. Then run the following commands on all the nodes you'd like to launch Minio.
|
||||
|
||||
```sh
|
||||
export MINIO_ACCESS_KEY=<ACCESS_KEY>
|
||||
export MINIO_SECRET_KEY=<SECRET_KEY>
|
||||
minio server /mnt/nfs
|
||||
minio server /path/to/nfs-volume
|
||||
```
|
||||
|
||||
#### Minio shared mode on Windows 2012 Server
|
||||
|
||||
Reference in New Issue
Block a user