| 
									
										
										
										
											2015-12-08 06:12:47 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2016-02-15 20:26:56 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2015, 2016 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2015-12-08 06:12:47 +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 | 
					
						
							| 
									
										
										
										
											2015-12-08 06:12:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 11:34:27 +08:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-09-10 06:33:35 +08:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-09 11:34:27 +08:00
										 |  |  | 	"github.com/fatih/color" | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/objcache" | 
					
						
							| 
									
										
										
										
											2016-09-01 02:39:08 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2016-07-09 11:34:27 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-15 20:26:56 +08:00
										 |  |  | // Global constants for Minio.
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2016-02-19 09:16:41 +08:00
										 |  |  | 	minGoVersion = ">= 1.6" // Minio requires at least Go v1.6
 | 
					
						
							| 
									
										
										
										
											2015-12-08 06:12:47 +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
										 |  |  | 
 | 
					
						
							|  |  |  | // minio configuration related constants.
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2016-09-10 15:51:25 +08:00
										 |  |  | 	globalMinioConfigVersion = "7" | 
					
						
							| 
									
										
										
										
											2016-05-07 15:59:43 +08:00
										 |  |  | 	globalMinioConfigDir     = ".minio" | 
					
						
							| 
									
										
										
										
											2016-07-01 06:49:18 +08:00
										 |  |  | 	globalMinioCertsDir      = "certs" | 
					
						
							| 
									
										
										
										
											2016-05-07 15:59:43 +08:00
										 |  |  | 	globalMinioCertFile      = "public.crt" | 
					
						
							|  |  |  | 	globalMinioKeyFile       = "private.key" | 
					
						
							|  |  |  | 	globalMinioConfigFile    = "config.json" | 
					
						
							| 
									
										
										
										
											2016-05-10 07:18:56 +08:00
										 |  |  | 	// Add new global values here.
 | 
					
						
							| 
									
										
											  
											
												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-03-25 08:20:49 +08:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	globalQuiet = false // Quiet flag set via command line
 | 
					
						
							| 
									
										
										
										
											2016-05-17 05:31:28 +08:00
										 |  |  | 	globalTrace = false // Trace flag set via environment setting.
 | 
					
						
							| 
									
										
										
										
											2016-09-01 02:39:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	globalDebug       = false // Debug flag set to print debug info.
 | 
					
						
							|  |  |  | 	globalDebugLock   = false // Lock debug info set via environment variable MINIO_DEBUG=lock .
 | 
					
						
							|  |  |  | 	globalDebugMemory = false // Memory debug info set via environment variable MINIO_DEBUG=mem
 | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | 	// Add new global flags here.
 | 
					
						
							| 
									
										
										
										
											2016-06-26 18:18:07 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Maximum connections handled per
 | 
					
						
							|  |  |  | 	// server, defaults to 0 (unlimited).
 | 
					
						
							|  |  |  | 	globalMaxConn = 0 | 
					
						
							| 
									
										
										
										
											2016-07-04 07:58:21 +08:00
										 |  |  | 	// Maximum cache size.
 | 
					
						
							|  |  |  | 	globalMaxCacheSize = uint64(maxCacheSize) | 
					
						
							| 
									
										
										
										
											2016-07-09 11:34:27 +08:00
										 |  |  | 	// Cache expiry.
 | 
					
						
							|  |  |  | 	globalCacheExpiry = objcache.DefaultExpiry | 
					
						
							| 
									
										
										
										
											2016-06-26 18:18:07 +08:00
										 |  |  | 	// Add new variable global values here.
 | 
					
						
							| 
									
										
										
										
											2016-03-25 08:20:49 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-29 03:02:22 +08:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	// Limit fields size (except file) to 1Mib since Policy document
 | 
					
						
							|  |  |  | 	// can reach that size according to https://aws.amazon.com/articles/1434
 | 
					
						
							|  |  |  | 	maxFormFieldSize = int64(1024 * 1024) | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-10 06:33:35 +08:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	// The maximum allowed difference between the request generation time and the server processing time
 | 
					
						
							|  |  |  | 	maxSkewTime = 15 * time.Minute | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												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
										 |  |  | // global colors.
 | 
					
						
							|  |  |  | var ( | 
					
						
							| 
									
										
										
										
											2016-07-22 10:07:00 +08:00
										 |  |  | 	colorBlue = color.New(color.FgBlue).SprintfFunc() | 
					
						
							|  |  |  | 	colorBold = color.New(color.Bold).SprintFunc() | 
					
						
							| 
									
										
											  
											
												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-09-01 02:39:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // fetch from environment variables and set the global values related to locks.
 | 
					
						
							|  |  |  | func setGlobalsDebugFromEnv() { | 
					
						
							|  |  |  | 	debugEnv := os.Getenv("MINIO_DEBUG") | 
					
						
							|  |  |  | 	switch debugEnv { | 
					
						
							|  |  |  | 	case "lock": | 
					
						
							|  |  |  | 		globalDebugLock = true | 
					
						
							|  |  |  | 	case "mem": | 
					
						
							|  |  |  | 		globalDebugMemory = true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	globalDebug = globalDebugLock || globalDebugMemory | 
					
						
							|  |  |  | } |