| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | /* | 
					
						
							| 
									
										
										
										
											2017-01-19 04:24:34 +08:00
										 |  |  |  |  * Minio Cloud Storage, (C) 2015, 2016, 2017 Minio, Inc. | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  |  * | 
					
						
							|  |  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 07:23:42 +08:00
										 |  |  |  | package cmd | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-01-12 05:59:51 +08:00
										 |  |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2017-03-29 23:55:33 +08:00
										 |  |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	"runtime" | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 	"strings" | 
					
						
							| 
									
										
										
										
											2017-02-08 16:13:02 +08:00
										 |  |  |  | 	"time" | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	"github.com/minio/cli" | 
					
						
							|  |  |  |  | ) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-02 06:12:49 +08:00
										 |  |  |  | var serverFlags = []cli.Flag{ | 
					
						
							|  |  |  |  | 	cli.StringFlag{ | 
					
						
							|  |  |  |  | 		Name:  "address", | 
					
						
							|  |  |  |  | 		Value: ":9000", | 
					
						
							| 
									
										
										
										
											2017-02-25 06:19:20 +08:00
										 |  |  |  | 		Usage: "Bind to a specific ADDRESS:PORT, ADDRESS can be an IP or hostname.", | 
					
						
							| 
									
										
										
										
											2016-09-02 06:12:49 +08:00
										 |  |  |  | 	}, | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | var serverCmd = cli.Command{ | 
					
						
							|  |  |  |  | 	Name:   "server", | 
					
						
							|  |  |  |  | 	Usage:  "Start object storage server.", | 
					
						
							|  |  |  |  | 	Flags:  append(serverFlags, globalFlags...), | 
					
						
							| 
									
										
										
											
												config: Migrate to the new version. Remove backend details.
Migrate to new config format v4.
```
{
	"version": "4",
	"credential": {
		"accessKey": "WLGDGYAQYIGI833EV05A",
		"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
	},
	"region": "us-east-1",
	"logger": {
		"console": {
			"enable": true,
			"level": "fatal"
		},
		"file": {
			"enable": false,
			"fileName": "",
			"level": "error"
		},
		"syslog": {
			"enable": false,
			"address": "",
			"level": "debug"
		}
	}
}
```
This patch also updates [minio cli spec](./minio.md)
											
										 
											2016-04-02 10:19:44 +08:00
										 |  |  |  | 	Action: serverMain, | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 	CustomHelpTemplate: `NAME: | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  |   {{.HelpName}} - {{.Usage}} | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | USAGE: | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  |   {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}PATH [PATH...] | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  | {{if .VisibleFlags}} | 
					
						
							| 
									
										
										
										
											2016-08-29 11:04:47 +08:00
										 |  |  |  | FLAGS: | 
					
						
							| 
									
										
										
										
											2017-02-15 18:25:38 +08:00
										 |  |  |  |   {{range .VisibleFlags}}{{.}} | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  |   {{end}}{{end}} | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | ENVIRONMENT VARIABLES: | 
					
						
							| 
									
										
										
										
											2016-07-11 05:38:15 +08:00
										 |  |  |  |   ACCESS: | 
					
						
							| 
									
										
										
										
											2016-12-10 16:42:22 +08:00
										 |  |  |  |      MINIO_ACCESS_KEY: Custom username or access key of 5 to 20 characters in length. | 
					
						
							|  |  |  |  |      MINIO_SECRET_KEY: Custom password or secret key of 8 to 40 characters in length. | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   BROWSER: | 
					
						
							|  |  |  |  |      MINIO_BROWSER: To disable web browser access, set this value to "off". | 
					
						
							| 
									
										
										
										
											2016-07-11 05:38:15 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | EXAMPLES: | 
					
						
							| 
									
										
										
										
											2016-11-10 15:37:12 +08:00
										 |  |  |  |   1. Start minio server on "/home/shared" directory. | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  |       $ {{.HelpName}} /home/shared | 
					
						
							| 
									
										
										
											
												config: Migrate to the new version. Remove backend details.
Migrate to new config format v4.
```
{
	"version": "4",
	"credential": {
		"accessKey": "WLGDGYAQYIGI833EV05A",
		"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
	},
	"region": "us-east-1",
	"logger": {
		"console": {
			"enable": true,
			"level": "fatal"
		},
		"file": {
			"enable": false,
			"fileName": "",
			"level": "error"
		},
		"syslog": {
			"enable": false,
			"address": "",
			"level": "debug"
		}
	}
}
```
This patch also updates [minio cli spec](./minio.md)
											
										 
											2016-04-02 10:19:44 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-25 06:19:20 +08:00
										 |  |  |  |   2. Start minio server bound to a specific ADDRESS:PORT. | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  |       $ {{.HelpName}} --address 192.168.1.101:9000 /home/shared | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-10 15:37:12 +08:00
										 |  |  |  |   3. Start erasure coded minio server on a 12 disks server. | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  |       $ {{.HelpName}} /mnt/export1/ /mnt/export2/ /mnt/export3/ /mnt/export4/ \ | 
					
						
							| 
									
										
										
										
											2016-09-02 04:29:26 +08:00
										 |  |  |  |           /mnt/export5/ /mnt/export6/ /mnt/export7/ /mnt/export8/ /mnt/export9/ \ | 
					
						
							|  |  |  |  |           /mnt/export10/ /mnt/export11/ /mnt/export12/ | 
					
						
							| 
									
										
										
										
											2016-07-11 05:38:15 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-10 15:37:12 +08:00
										 |  |  |  |   4. Start erasure coded distributed minio server on a 4 node setup with 1 drive each. Run following commands on all the 4 nodes. | 
					
						
							| 
									
										
										
										
											2016-08-19 05:29:23 +08:00
										 |  |  |  |       $ export MINIO_ACCESS_KEY=minio | 
					
						
							|  |  |  |  |       $ export MINIO_SECRET_KEY=miniostorage | 
					
						
							| 
									
										
										
										
											2017-02-16 09:45:08 +08:00
										 |  |  |  |       $ {{.HelpName}} http://192.168.1.11/mnt/export/ http://192.168.1.12/mnt/export/ \
 | 
					
						
							| 
									
										
										
										
											2016-10-27 18:30:52 +08:00
										 |  |  |  |           http://192.168.1.13/mnt/export/ http://192.168.1.14/mnt/export/
 | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | `, | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | // Check for updates and print a notification message
 | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  | func checkUpdate(mode string) { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | 	// Its OK to ignore any errors during getUpdateInfo() here.
 | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  | 	if older, downloadURL, err := getUpdateInfo(1*time.Second, mode); err == nil { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | 		if older > time.Duration(0) { | 
					
						
							| 
									
										
										
										
											2017-03-24 07:36:00 +08:00
										 |  |  |  | 			log.Println(colorizeUpdateMessage(downloadURL, older)) | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | func enableLoggers() { | 
					
						
							| 
									
										
										
										
											2017-03-24 07:36:00 +08:00
										 |  |  |  | 	fileLogTarget := serverConfig.Logger.GetFile() | 
					
						
							|  |  |  |  | 	if fileLogTarget.Enable { | 
					
						
							|  |  |  |  | 		err := InitFileLogger(&fileLogTarget) | 
					
						
							|  |  |  |  | 		fatalIf(err, "Unable to initialize file logger") | 
					
						
							|  |  |  |  | 		log.AddTarget(fileLogTarget) | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	consoleLogTarget := serverConfig.Logger.GetConsole() | 
					
						
							|  |  |  |  | 	if consoleLogTarget.Enable { | 
					
						
							|  |  |  |  | 		InitConsoleLogger(&consoleLogTarget) | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	log.SetConsoleTarget(consoleLogTarget) | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | func initConfig() { | 
					
						
							|  |  |  |  | 	// Config file does not exist, we create it fresh and return upon success.
 | 
					
						
							|  |  |  |  | 	if isFile(getConfigFile()) { | 
					
						
							|  |  |  |  | 		fatalIf(migrateConfig(), "Config migration failed.") | 
					
						
							| 
									
										
										
										
											2017-03-31 13:26:24 +08:00
										 |  |  |  | 		fatalIf(loadConfig(), "Unable to load minio config file") | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	} else { | 
					
						
							|  |  |  |  | 		fatalIf(newConfig(), "Unable to initialize minio config for the first time.") | 
					
						
							|  |  |  |  | 		log.Println("Created minio configuration file successfully at " + getConfigDir()) | 
					
						
							| 
									
										
										
										
											2017-03-24 07:36:00 +08:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-03 06:21:30 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | func serverHandleCmdArgs(ctx *cli.Context) { | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	// Set configuration directory.
 | 
					
						
							| 
									
										
										
										
											2017-03-29 23:55:33 +08:00
										 |  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 		// Get configuration directory from command line argument.
 | 
					
						
							|  |  |  |  | 		configDir := ctx.String("config-dir") | 
					
						
							|  |  |  |  | 		if !ctx.IsSet("config-dir") && ctx.GlobalIsSet("config-dir") { | 
					
						
							|  |  |  |  | 			configDir = ctx.GlobalString("config-dir") | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		if configDir == "" { | 
					
						
							|  |  |  |  | 			fatalIf(errors.New("empty directory"), "Configuration directory cannot be empty.") | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		// Disallow relative paths, figure out absolute paths.
 | 
					
						
							| 
									
										
										
										
											2017-03-29 23:55:33 +08:00
										 |  |  |  | 		configDirAbs, err := filepath.Abs(configDir) | 
					
						
							|  |  |  |  | 		fatalIf(err, "Unable to fetch absolute path for config directory %s", configDir) | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 		setConfigDir(configDirAbs) | 
					
						
							| 
									
										
										
										
											2017-03-29 23:55:33 +08:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
											
												config: Migrate to the new version. Remove backend details.
Migrate to new config format v4.
```
{
	"version": "4",
	"credential": {
		"accessKey": "WLGDGYAQYIGI833EV05A",
		"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
	},
	"region": "us-east-1",
	"logger": {
		"console": {
			"enable": true,
			"level": "fatal"
		},
		"file": {
			"enable": false,
			"fileName": "",
			"level": "error"
		},
		"syslog": {
			"enable": false,
			"address": "",
			"level": "debug"
		}
	}
}
```
This patch also updates [minio cli spec](./minio.md)
											
										 
											2016-04-02 10:19:44 +08:00
										 |  |  |  | 	// Server address.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	serverAddr := ctx.String("address") | 
					
						
							|  |  |  |  | 	fatalIf(CheckLocalServerAddr(serverAddr), "Invalid address ‘%s’ in command line argument.", serverAddr) | 
					
						
							| 
									
										
										
											
												config: Migrate to the new version. Remove backend details.
Migrate to new config format v4.
```
{
	"version": "4",
	"credential": {
		"accessKey": "WLGDGYAQYIGI833EV05A",
		"secretKey": "BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF"
	},
	"region": "us-east-1",
	"logger": {
		"console": {
			"enable": true,
			"level": "fatal"
		},
		"file": {
			"enable": false,
			"fileName": "",
			"level": "error"
		},
		"syslog": {
			"enable": false,
			"address": "",
			"level": "debug"
		}
	}
}
```
This patch also updates [minio cli spec](./minio.md)
											
										 
											2016-04-02 10:19:44 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	var setupType SetupType | 
					
						
							| 
									
										
										
										
											2017-01-12 05:59:51 +08:00
										 |  |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	globalMinioAddr, globalEndpoints, setupType, err = CreateEndpoints(serverAddr, ctx.Args()...) | 
					
						
							|  |  |  |  | 	fatalIf(err, "Invalid command line arguments server=‘%s’, args=%s", serverAddr, ctx.Args()) | 
					
						
							|  |  |  |  | 	globalMinioHost, globalMinioPort = mustSplitHostPort(globalMinioAddr) | 
					
						
							|  |  |  |  | 	if runtime.GOOS == "darwin" { | 
					
						
							|  |  |  |  | 		// On macOS, if a process already listens on LOCALIPADDR:PORT, net.Listen() falls back
 | 
					
						
							|  |  |  |  | 		// to IPv6 address ie minio will start listening on IPv6 address whereas another
 | 
					
						
							|  |  |  |  | 		// (non-)minio process is listening on IPv4 of given port.
 | 
					
						
							|  |  |  |  | 		// To avoid this error sutiation we check for port availability only for macOS.
 | 
					
						
							|  |  |  |  | 		fatalIf(checkPortAvailability(globalMinioPort), "Port %d already in use", globalMinioPort) | 
					
						
							| 
									
										
										
										
											2016-08-01 05:11:14 +08:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-31 10:22:27 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	globalIsXL = (setupType == XLSetupType) | 
					
						
							|  |  |  |  | 	globalIsDistXL = (setupType == DistXLSetupType) | 
					
						
							|  |  |  |  | 	if globalIsDistXL { | 
					
						
							| 
									
										
										
										
											2017-01-23 16:32:55 +08:00
										 |  |  |  | 		globalIsXL = true | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | func serverHandleEnvVars() { | 
					
						
							|  |  |  |  | 	// Start profiler if env is set.
 | 
					
						
							|  |  |  |  | 	if profiler := os.Getenv("_MINIO_PROFILER"); profiler != "" { | 
					
						
							|  |  |  |  | 		globalProfiler = startProfiler(profiler) | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Check if object cache is disabled.
 | 
					
						
							|  |  |  |  | 	globalXLObjCacheDisabled = strings.EqualFold(os.Getenv("_MINIO_CACHE"), "off") | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	accessKey := os.Getenv("MINIO_ACCESS_KEY") | 
					
						
							|  |  |  |  | 	secretKey := os.Getenv("MINIO_SECRET_KEY") | 
					
						
							|  |  |  |  | 	if accessKey != "" && secretKey != "" { | 
					
						
							|  |  |  |  | 		cred, err := createCredential(accessKey, secretKey) | 
					
						
							|  |  |  |  | 		fatalIf(err, "Invalid access/secret Key set in environment.") | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		// credential Envs are set globally.
 | 
					
						
							|  |  |  |  | 		globalIsEnvCreds = true | 
					
						
							|  |  |  |  | 		globalActiveCred = cred | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if browser := os.Getenv("MINIO_BROWSER"); browser != "" { | 
					
						
							|  |  |  |  | 		browserFlag, err := ParseBrowserFlag(browser) | 
					
						
							|  |  |  |  | 		if err != nil { | 
					
						
							|  |  |  |  | 			fatalIf(errors.New("invalid value"), "Unknown value ‘%s’ in MINIO_BROWSER environment variable.", browser) | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 		// browser Envs are set globally, this does not represent
 | 
					
						
							|  |  |  |  | 		// if browser is turned off or on.
 | 
					
						
							|  |  |  |  | 		globalIsEnvBrowser = true | 
					
						
							|  |  |  |  | 		globalIsBrowserEnabled = bool(browserFlag) | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-04-10 01:44:10 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if serverRegion := os.Getenv("MINIO_REGION"); serverRegion != "" { | 
					
						
							|  |  |  |  | 		// region Envs are set globally.
 | 
					
						
							|  |  |  |  | 		globalIsEnvRegion = true | 
					
						
							|  |  |  |  | 		globalServerRegion = serverRegion | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // serverMain handler called for 'minio server' command.
 | 
					
						
							|  |  |  |  | func serverMain(ctx *cli.Context) { | 
					
						
							|  |  |  |  | 	if !ctx.Args().Present() || ctx.Args().First() == "help" { | 
					
						
							|  |  |  |  | 		cli.ShowCommandHelpAndExit(ctx, "server", 1) | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Get quiet flag from command line argument.
 | 
					
						
							|  |  |  |  | 	quietFlag := ctx.Bool("quiet") || ctx.GlobalBool("quiet") | 
					
						
							|  |  |  |  | 	if quietFlag { | 
					
						
							|  |  |  |  | 		log.EnableQuiet() | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	serverHandleCmdArgs(ctx) | 
					
						
							|  |  |  |  | 	serverHandleEnvVars() | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Create certs path.
 | 
					
						
							|  |  |  |  | 	fatalIf(createConfigDir(), "Unable to create configuration directories.") | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	initConfig() | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Enable loggers as per configuration file.
 | 
					
						
							|  |  |  |  | 	enableLoggers() | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Init the error tracing module.
 | 
					
						
							|  |  |  |  | 	initError() | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Check and load SSL certificates.
 | 
					
						
							|  |  |  |  | 	var err error | 
					
						
							|  |  |  |  | 	globalPublicCerts, globalRootCAs, globalIsSSL, err = getSSLConfig() | 
					
						
							|  |  |  |  | 	fatalIf(err, "Invalid SSL key file") | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  | 	if !quietFlag { | 
					
						
							|  |  |  |  | 		// Check for new updates from dl.minio.io.
 | 
					
						
							|  |  |  |  | 		mode := globalMinioModeFS | 
					
						
							|  |  |  |  | 		if globalIsDistXL { | 
					
						
							|  |  |  |  | 			mode = globalMinioModeDistXL | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 		} else if globalIsXL { | 
					
						
							|  |  |  |  | 			mode = globalMinioModeXL | 
					
						
							| 
									
										
										
										
											2017-03-17 03:21:58 +08:00
										 |  |  |  | 		} | 
					
						
							|  |  |  |  | 		checkUpdate(mode) | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	// Set system resources to maximum.
 | 
					
						
							|  |  |  |  | 	errorIf(setMaxResources(), "Unable to change resource limit") | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Set nodes for dsync for distributed setup.
 | 
					
						
							|  |  |  |  | 	if globalIsDistXL { | 
					
						
							|  |  |  |  | 		fatalIf(initDsyncNodes(), "Unable to initialize distributed locking clients") | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  |  | 	// Initialize name space lock.
 | 
					
						
							| 
									
										
										
										
											2016-11-08 04:09:24 +08:00
										 |  |  |  | 	initNSLock(globalIsDistXL) | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	// Configure server.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	handler, err := configureServerHandler(globalEndpoints) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	fatalIf(err, "Unable to configure one of server's RPC services.") | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  |  | 	// Initialize a new HTTP server.
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	apiServer := NewServerMux(globalMinioAddr, handler) | 
					
						
							| 
									
										
										
										
											2016-08-12 12:33:55 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-20 03:32:13 +08:00
										 |  |  |  | 	// Initialize S3 Peers inter-node communication only in distributed setup.
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	initGlobalS3Peers(globalEndpoints) | 
					
						
							| 
									
										
										
										
											2017-01-20 03:32:13 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Initialize Admin Peers inter-node communication only in distributed setup.
 | 
					
						
							| 
									
										
										
										
											2017-03-31 02:21:19 +08:00
										 |  |  |  | 	initGlobalAdminPeers(globalEndpoints) | 
					
						
							| 
									
										
										
										
											2017-01-20 03:32:13 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  |  | 	// Start server, automatically configures TLS if certs are available.
 | 
					
						
							| 
									
										
										
										
											2017-01-12 05:59:51 +08:00
										 |  |  |  | 	go func() { | 
					
						
							| 
									
										
										
										
											2016-11-06 11:32:13 +08:00
										 |  |  |  | 		cert, key := "", "" | 
					
						
							| 
									
										
										
										
											2017-01-12 05:59:51 +08:00
										 |  |  |  | 		if globalIsSSL { | 
					
						
							| 
									
										
										
										
											2017-03-09 11:20:01 +08:00
										 |  |  |  | 			cert, key = getPublicCertFile(), getPrivateKeyFile() | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-12 05:59:51 +08:00
										 |  |  |  | 		fatalIf(apiServer.ListenAndServe(cert, key), "Failed to start minio server.") | 
					
						
							|  |  |  |  | 	}() | 
					
						
							| 
									
										
										
										
											2016-09-14 16:11:03 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	newObject, err := newObjectLayer(globalEndpoints) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	fatalIf(err, "Initializing object layer failed") | 
					
						
							| 
									
										
										
										
											2016-09-14 02:00:40 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  |  | 	globalObjLayerMutex.Lock() | 
					
						
							| 
									
										
										
										
											2016-08-31 10:22:27 +08:00
										 |  |  |  | 	globalObjectAPI = newObject | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  |  | 	globalObjLayerMutex.Unlock() | 
					
						
							| 
									
										
										
										
											2016-08-06 04:48:31 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  |  | 	// Prints the formatted startup message once object layer is initialized.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	apiEndpoints := getAPIEndpoints(apiServer.Addr) | 
					
						
							|  |  |  |  | 	printStartupMessage(apiEndpoints) | 
					
						
							| 
									
										
										
										
											2016-10-06 03:48:07 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-10 15:26:44 +08:00
										 |  |  |  | 	// Set uptime time after object layer has initialized.
 | 
					
						
							| 
									
										
										
										
											2017-03-19 02:28:41 +08:00
										 |  |  |  | 	globalBootTime = UTCNow() | 
					
						
							| 
									
										
										
										
											2017-02-10 15:26:44 +08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 16:11:03 +08:00
										 |  |  |  | 	// Waits on the server.
 | 
					
						
							| 
									
										
										
										
											2016-10-10 14:03:10 +08:00
										 |  |  |  | 	<-globalServiceDoneCh | 
					
						
							| 
									
										
											  
											
												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-13 07:27:10 +08:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | // Initialize object layer with the supplied disks, objectLayer is nil upon any error.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | func newObjectLayer(endpoints EndpointList) (newObject ObjectLayer, err error) { | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	// For FS only, directly use the disk.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	isFS := len(endpoints) == 1 | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	if isFS { | 
					
						
							|  |  |  |  | 		// Initialize new FS object layer.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 		return newFSObjectLayer(endpoints[0].Path) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Initialize storage disks.
 | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 	storageDisks, err := initStorageDisks(endpoints) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	if err != nil { | 
					
						
							|  |  |  |  | 		return nil, err | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Wait for formatting disks for XL backend.
 | 
					
						
							|  |  |  |  | 	var formattedDisks []StorageAPI | 
					
						
							| 
									
										
										
										
											2017-04-12 06:44:27 +08:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// First disk argument check if it is local.
 | 
					
						
							|  |  |  |  | 	firstDisk := endpoints[0].IsLocal | 
					
						
							|  |  |  |  | 	formattedDisks, err = waitForFormatXLDisks(firstDisk, endpoints, storageDisks) | 
					
						
							| 
									
										
										
										
											2017-01-17 09:05:00 +08:00
										 |  |  |  | 	if err != nil { | 
					
						
							|  |  |  |  | 		return nil, err | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Cleanup objects that weren't successfully written into the namespace.
 | 
					
						
							|  |  |  |  | 	if err = houseKeeping(storageDisks); err != nil { | 
					
						
							|  |  |  |  | 		return nil, err | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// Once XL formatted, initialize object layer.
 | 
					
						
							|  |  |  |  | 	newObject, err = newXLObjectLayer(formattedDisks) | 
					
						
							|  |  |  |  | 	if err != nil { | 
					
						
							|  |  |  |  | 		return nil, err | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 	// XL initialized, return.
 | 
					
						
							|  |  |  |  | 	return newObject, nil | 
					
						
							|  |  |  |  | } |