You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
598 B
33 lines
598 B
9 years ago
|
# Server command line SPEC. - Tue Mar 22 06:04:42 UTC 2016
|
||
|
|
||
|
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
|
||
|
~~~
|