2015-12-07 17:12:47 -05:00
|
|
|
/*
|
2016-02-15 07:26:56 -05:00
|
|
|
* Minio Cloud Storage, (C) 2015, 2016 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"
|
2016-12-10 03:42:22 -05:00
|
|
|
"os"
|
2017-01-09 17:22:10 -05:00
|
|
|
"runtime"
|
2016-12-10 03:42:22 -05:00
|
|
|
"strings"
|
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"
|
2016-11-28 15:15:36 -05:00
|
|
|
"github.com/minio/cli"
|
|
|
|
"github.com/minio/mc/pkg/console"
|
2016-07-08 23:34:27 -04:00
|
|
|
"github.com/minio/minio/pkg/objcache"
|
|
|
|
)
|
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-02-15 07:26:56 -05:00
|
|
|
// Global constants for Minio.
|
|
|
|
const (
|
2016-10-24 16:44:15 -04:00
|
|
|
minGoVersion = ">= 1.7" // Minio requires at least Go v1.7
|
2015-12-07 17:12:47 -05: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
|
|
|
|
|
|
|
// minio configuration related constants.
|
|
|
|
const (
|
2017-01-09 17:22:10 -05:00
|
|
|
globalMinioConfigVersion = "13"
|
2016-10-14 07:48:08 -04:00
|
|
|
globalMinioConfigDir = ".minio"
|
|
|
|
globalMinioCertsDir = "certs"
|
2016-11-11 10:18:44 -05:00
|
|
|
globalMinioCertsCADir = "CAs"
|
2016-10-14 07:48:08 -04:00
|
|
|
globalMinioCertFile = "public.crt"
|
|
|
|
globalMinioKeyFile = "private.key"
|
|
|
|
globalMinioConfigFile = "config.json"
|
2016-10-14 14:15:59 -04:00
|
|
|
globalMinioCertExpireWarnDays = time.Hour * 24 * 30 // 30 days.
|
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)
|
|
|
|
|
|
|
|
// 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 (
|
2016-11-28 15:15:36 -05:00
|
|
|
globalQuiet = false // quiet flag set via command line.
|
|
|
|
globalConfigDir = mustGetConfigPath() // config-dir flag set via command line
|
2016-11-23 20:27:42 -05:00
|
|
|
// Add new global flags here.
|
|
|
|
|
2016-11-28 15:15:36 -05:00
|
|
|
globalIsDistXL = false // "Is Distributed?" flag.
|
|
|
|
|
2016-12-10 03:42:22 -05:00
|
|
|
// This flag is set to 'true' by default, it is set to `false`
|
|
|
|
// when MINIO_BROWSER env is set to 'off'.
|
|
|
|
globalIsBrowserEnabled = !strings.EqualFold(os.Getenv("MINIO_BROWSER"), "off")
|
|
|
|
|
2016-12-08 23:35:07 -05:00
|
|
|
// Maximum cache size. Defaults to disabled.
|
|
|
|
// Caching is enabled only for RAM size > 8GiB.
|
|
|
|
globalMaxCacheSize = uint64(0)
|
|
|
|
|
2016-07-08 23:34:27 -04:00
|
|
|
// Cache expiry.
|
|
|
|
globalCacheExpiry = objcache.DefaultExpiry
|
2017-01-10 19:43:48 -05:00
|
|
|
|
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
|
|
|
|
2017-01-10 19:43:48 -05:00
|
|
|
// Holds the list of API endpoints for a given server.
|
|
|
|
globalAPIEndpoints = []string{}
|
|
|
|
|
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 + ")"
|
|
|
|
|
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 (
|
2016-10-14 22:57:40 -04:00
|
|
|
colorRed = color.New(color.FgRed).SprintFunc()
|
|
|
|
colorBold = color.New(color.Bold).SprintFunc()
|
|
|
|
colorBlue = color.New(color.FgBlue).SprintfFunc()
|
|
|
|
colorGreen = color.New(color.FgGreen).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
|
|
|
)
|
2016-11-28 15:15:36 -05:00
|
|
|
|
|
|
|
// Parse command arguments and set global variables accordingly
|
|
|
|
func setGlobalsFromContext(c *cli.Context) {
|
|
|
|
// Set config dir
|
|
|
|
switch {
|
|
|
|
case c.IsSet("config-dir"):
|
|
|
|
globalConfigDir = c.String("config-dir")
|
|
|
|
case c.GlobalIsSet("config-dir"):
|
|
|
|
globalConfigDir = c.GlobalString("config-dir")
|
|
|
|
}
|
|
|
|
if globalConfigDir == "" {
|
|
|
|
console.Fatalf("Unable to get config file. Config directory is empty.")
|
|
|
|
}
|
2017-01-15 19:53:01 -05:00
|
|
|
|
2016-11-28 15:15:36 -05:00
|
|
|
// Set global quiet flag.
|
|
|
|
globalQuiet = c.Bool("quiet") || c.GlobalBool("quiet")
|
|
|
|
}
|