2015-12-07 17:12:47 -05:00
|
|
|
/*
|
2017-01-18 15:24:34 -05:00
|
|
|
* Minio Cloud Storage, (C) 2015, 2016, 2017 Minio, Inc.
|
2015-12-07 17:12:47 -05: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-18 19:23:42 -04:00
|
|
|
package cmd
|
2015-12-07 17:12:47 -05:00
|
|
|
|
2016-07-08 23:34:27 -04:00
|
|
|
import (
|
2016-11-11 10:18:44 -05:00
|
|
|
"crypto/x509"
|
2017-01-09 17:22:10 -05:00
|
|
|
"runtime"
|
2016-09-09 18:33:35 -04:00
|
|
|
"time"
|
|
|
|
|
2016-11-22 21:18:22 -05:00
|
|
|
humanize "github.com/dustin/go-humanize"
|
2016-07-08 23:34:27 -04:00
|
|
|
"github.com/fatih/color"
|
|
|
|
)
|
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-12 18:27:10 -05:00
|
|
|
|
|
|
|
// minio configuration related constants.
|
|
|
|
const (
|
2016-10-14 14:15:59 -04:00
|
|
|
globalMinioCertExpireWarnDays = time.Hour * 24 * 30 // 30 days.
|
2017-01-18 15:24:34 -05:00
|
|
|
|
|
|
|
globalMinioDefaultRegion = "us-east-1"
|
|
|
|
globalMinioDefaultOwnerID = "minio"
|
|
|
|
globalMinioDefaultStorageClass = "STANDARD"
|
|
|
|
globalWindowsOSName = "windows"
|
2017-02-09 01:27:35 -05:00
|
|
|
globalNetBSDOSName = "netbsd"
|
|
|
|
globalSolarisOSName = "solaris"
|
2017-03-16 15:21:58 -04:00
|
|
|
globalMinioModeFS = "mode-server-fs"
|
|
|
|
globalMinioModeXL = "mode-server-xl"
|
|
|
|
globalMinioModeDistXL = "mode-server-distributed-xl"
|
|
|
|
globalMinioModeGatewayAzure = "mode-gateway-azure"
|
2017-04-27 14:26:00 -04:00
|
|
|
globalMinioModeGatewayS3 = "mode-gateway-s3"
|
2016-05-09 19:18:56 -04: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-12 18:27:10 -05:00
|
|
|
)
|
|
|
|
|
2016-11-22 23:13:20 -05:00
|
|
|
const (
|
|
|
|
// Limit fields size (except file) to 1Mib since Policy document
|
|
|
|
// can reach that size according to https://aws.amazon.com/articles/1434
|
|
|
|
maxFormFieldSize = int64(1 * humanize.MiByte)
|
|
|
|
|
2017-02-02 13:45:00 -05:00
|
|
|
// Limit memory allocation to store multipart data
|
|
|
|
maxFormMemory = int64(5 * humanize.MiByte)
|
|
|
|
|
2016-11-22 23:13:20 -05:00
|
|
|
// The maximum allowed difference between the request generation time and the server processing time
|
|
|
|
globalMaxSkewTime = 15 * time.Minute
|
|
|
|
)
|
|
|
|
|
2016-03-24 20:20:49 -04:00
|
|
|
var (
|
2017-01-16 20:05:00 -05:00
|
|
|
// Indicates if the running minio server is distributed setup.
|
|
|
|
globalIsDistXL = false
|
2016-11-28 15:15:36 -05:00
|
|
|
|
2017-01-23 03:32:55 -05:00
|
|
|
// Indicates if the running minio server is an erasure-code backend.
|
|
|
|
globalIsXL = false
|
|
|
|
|
2017-02-27 17:59:53 -05:00
|
|
|
// This flag is set to 'true' by default
|
|
|
|
globalIsBrowserEnabled = true
|
|
|
|
// This flag is set to 'true' when MINIO_BROWSER env is set.
|
|
|
|
globalIsEnvBrowser = false
|
2017-04-09 13:44:10 -04:00
|
|
|
|
2017-02-27 17:59:53 -05:00
|
|
|
// Set to true if credentials were passed from env, default is false.
|
|
|
|
globalIsEnvCreds = false
|
2016-12-10 03:42:22 -05:00
|
|
|
|
2017-04-09 13:44:10 -04:00
|
|
|
// This flag is set to 'true' wen MINIO_REGION env is set.
|
|
|
|
globalIsEnvRegion = false
|
|
|
|
// This flag is set to 'us-east-1' by default
|
|
|
|
globalServerRegion = globalMinioDefaultRegion
|
|
|
|
|
2017-01-30 18:44:42 -05:00
|
|
|
// Maximum size of internal objects parts
|
|
|
|
globalPutPartSize = int64(64 * 1024 * 1024)
|
|
|
|
|
2016-10-12 04:03:50 -04:00
|
|
|
// Minio local server address (in `host:port` format)
|
|
|
|
globalMinioAddr = ""
|
2016-10-05 15:48:07 -04:00
|
|
|
// Minio default port, can be changed through command line.
|
2016-10-27 06:30:52 -04:00
|
|
|
globalMinioPort = "9000"
|
2016-10-18 15:49:24 -04:00
|
|
|
// Holds the host that was passed using --address
|
|
|
|
globalMinioHost = ""
|
2016-12-29 06:13:51 -05:00
|
|
|
|
2016-10-12 04:03:50 -04:00
|
|
|
// Peer communication struct
|
|
|
|
globalS3Peers = s3Peers{}
|
|
|
|
|
2016-11-11 10:18:44 -05:00
|
|
|
// CA root certificates, a nil value means system certs pool will be used
|
|
|
|
globalRootCAs *x509.CertPool
|
|
|
|
|
2017-01-11 16:59:51 -05:00
|
|
|
// IsSSL indicates if the server is configured with SSL.
|
|
|
|
globalIsSSL bool
|
|
|
|
|
2016-12-29 06:13:51 -05:00
|
|
|
// List of admin peers.
|
2016-12-16 01:26:15 -05:00
|
|
|
globalAdminPeers = adminPeers{}
|
2016-12-29 06:13:51 -05:00
|
|
|
|
2017-01-09 17:22:10 -05:00
|
|
|
// Minio server user agent string.
|
|
|
|
globalServerUserAgent = "Minio/" + ReleaseTag + " (" + runtime.GOOS + "; " + runtime.GOARCH + ")"
|
|
|
|
|
2017-04-11 18:44:27 -04:00
|
|
|
globalEndpoints EndpointList
|
2017-01-23 03:32:55 -05:00
|
|
|
|
2017-02-06 12:29:53 -05:00
|
|
|
// Global server's network statistics
|
|
|
|
globalConnStats = newConnStats()
|
2017-02-08 03:13:02 -05:00
|
|
|
|
2017-02-06 12:29:53 -05:00
|
|
|
// Global HTTP request statisitics
|
|
|
|
globalHTTPStats = newHTTPStats()
|
|
|
|
|
2017-02-08 03:13:02 -05:00
|
|
|
// Time when object layer was initialized on start up.
|
|
|
|
globalBootTime time.Time
|
|
|
|
|
2017-03-30 14:21:19 -04:00
|
|
|
globalActiveCred credential
|
|
|
|
globalPublicCerts []*x509.Certificate
|
|
|
|
globalXLObjCacheDisabled bool
|
2016-06-26 06:18:07 -04:00
|
|
|
// Add new variable global values here.
|
2016-03-24 20:20:49 -04:00
|
|
|
)
|
|
|
|
|
2016-07-28 15:02:22 -04:00
|
|
|
var (
|
2016-10-22 01:56:27 -04:00
|
|
|
// Keeps the connection active by waiting for following amount of time.
|
|
|
|
// Primarily used in ListenBucketNotification.
|
|
|
|
globalSNSConnAlive = 5 * time.Second
|
2016-09-09 18:33:35 -04: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-12 18:27:10 -05:00
|
|
|
// global colors.
|
|
|
|
var (
|
2017-01-18 15:24:34 -05:00
|
|
|
colorBold = color.New(color.Bold).SprintFunc()
|
|
|
|
colorBlue = color.New(color.FgBlue).SprintfFunc()
|
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-12 18:27:10 -05:00
|
|
|
)
|