2017-02-18 13:45:37 -05:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2016, 2017 Minio, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
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
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-09-30 02:42:10 -04:00
|
|
|
"sync"
|
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
|
|
|
|
|
|
|
"github.com/minio/minio/pkg/quick"
|
|
|
|
)
|
|
|
|
|
2017-02-18 13:45:37 -05:00
|
|
|
func loadOldConfig(configFile string, config interface{}) (interface{}, error) {
|
|
|
|
if _, err := os.Stat(configFile); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
qc, err := quick.New(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = qc.Load(configFile); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/////////////////// Config V1 ///////////////////
|
|
|
|
type configV1 struct {
|
2016-12-26 13:21:23 -05:00
|
|
|
Version string `json:"version"`
|
|
|
|
AccessKey string `json:"accessKeyId"`
|
|
|
|
SecretKey string `json:"secretAccessKey"`
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV1 load config
|
2016-04-29 17:24:10 -04:00
|
|
|
func loadConfigV1() (*configV1, error) {
|
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
|
|
|
configPath, err := getConfigPath()
|
|
|
|
if err != nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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
|
|
|
}
|
|
|
|
configFile := filepath.Join(configPath, "fsUsers.json")
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV1{Version: "1"})
|
|
|
|
if config == nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV1), err
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////// Config V2 ///////////////////
|
|
|
|
type configV2 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
Credentials struct {
|
2016-12-26 13:21:23 -05:00
|
|
|
AccessKey string `json:"accessKeyId"`
|
|
|
|
SecretKey string `json:"secretAccessKey"`
|
|
|
|
Region string `json:"region"`
|
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
|
|
|
} `json:"credentials"`
|
|
|
|
MongoLogger struct {
|
|
|
|
Addr string `json:"addr"`
|
|
|
|
DB string `json:"db"`
|
|
|
|
Collection string `json:"collection"`
|
|
|
|
} `json:"mongoLogger"`
|
|
|
|
SyslogLogger struct {
|
|
|
|
Network string `json:"network"`
|
|
|
|
Addr string `json:"addr"`
|
|
|
|
} `json:"syslogLogger"`
|
|
|
|
FileLogger struct {
|
|
|
|
Filename string `json:"filename"`
|
|
|
|
} `json:"fileLogger"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV2 load config version '2'.
|
2016-04-29 17:24:10 -04:00
|
|
|
func loadConfigV2() (*configV2, error) {
|
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
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV2{Version: "2"})
|
|
|
|
if config == nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV2), err
|
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
|
|
|
}
|
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-01 22:19:44 -04:00
|
|
|
|
|
|
|
/////////////////// Config V3 ///////////////////
|
|
|
|
|
|
|
|
// backendV3 type.
|
|
|
|
type backendV3 struct {
|
|
|
|
Type string `json:"type"`
|
|
|
|
Disk string `json:"disk,omitempty"`
|
|
|
|
Disks []string `json:"disks,omitempty"`
|
|
|
|
}
|
|
|
|
|
2016-11-23 18:00:53 -05:00
|
|
|
// syslogLogger v3
|
|
|
|
type syslogLoggerV3 struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Addr string `json:"address"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
}
|
|
|
|
|
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-01 22:19:44 -04:00
|
|
|
// loggerV3 type.
|
|
|
|
type loggerV3 struct {
|
|
|
|
Console struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
}
|
|
|
|
File struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Filename string `json:"fileName"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
}
|
|
|
|
Syslog struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Addr string `json:"address"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"syslog"`
|
|
|
|
// Add new loggers here.
|
|
|
|
}
|
|
|
|
|
|
|
|
// configV3 server configuration version '3'.
|
|
|
|
type configV3 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// Backend configuration.
|
|
|
|
Backend backendV3 `json:"backend"`
|
|
|
|
|
|
|
|
// http Server configuration.
|
|
|
|
Addr string `json:"address"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger loggerV3 `json:"logger"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV3 load config version '3'.
|
2016-04-29 17:24:10 -04:00
|
|
|
func loadConfigV3() (*configV3, error) {
|
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-01 22:19:44 -04:00
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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-01 22:19:44 -04:00
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV3{Version: "3"})
|
|
|
|
if config == nil {
|
2016-04-29 17:24:10 -04:00
|
|
|
return nil, err
|
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-01 22:19:44 -04:00
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV3), err
|
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-01 22:19:44 -04:00
|
|
|
}
|
2016-07-24 01:51:12 -04:00
|
|
|
|
2016-08-05 01:01:58 -04:00
|
|
|
// logger type representing version '4' logger config.
|
2016-07-24 01:51:12 -04:00
|
|
|
type loggerV4 struct {
|
|
|
|
Console struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"console"`
|
|
|
|
File struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Filename string `json:"fileName"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"file"`
|
|
|
|
Syslog struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Addr string `json:"address"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"syslog"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// configV4 server configuration version '4'.
|
|
|
|
type configV4 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger loggerV4 `json:"logger"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV4 load config version '4'.
|
|
|
|
func loadConfigV4() (*configV4, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV4{Version: "4"})
|
|
|
|
if config == nil {
|
2016-07-24 01:51:12 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV4), err
|
2016-07-24 01:51:12 -04:00
|
|
|
}
|
2016-08-05 01:01:58 -04:00
|
|
|
|
|
|
|
// logger type representing version '5' logger config.
|
|
|
|
type loggerV5 struct {
|
|
|
|
Console struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"console"`
|
|
|
|
File struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Filename string `json:"fileName"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"file"`
|
|
|
|
Syslog struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Addr string `json:"address"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
} `json:"syslog"`
|
|
|
|
AMQP struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
Exchange string `json:"exchange"`
|
2016-08-13 01:23:06 -04:00
|
|
|
RoutingKey string `json:"routingKey"`
|
2016-08-05 01:01:58 -04:00
|
|
|
ExchangeType string `json:"exchangeType"`
|
|
|
|
Mandatory bool `json:"mandatory"`
|
|
|
|
Immediate bool `json:"immediate"`
|
|
|
|
Durable bool `json:"durable"`
|
|
|
|
Internal bool `json:"internal"`
|
|
|
|
NoWait bool `json:"noWait"`
|
|
|
|
AutoDeleted bool `json:"autoDeleted"`
|
|
|
|
} `json:"amqp"`
|
|
|
|
ElasticSearch struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
Index string `json:"index"`
|
|
|
|
} `json:"elasticsearch"`
|
|
|
|
Redis struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Level string `json:"level"`
|
|
|
|
Addr string `json:"address"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Key string `json:"key"`
|
|
|
|
} `json:"redis"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// configV5 server configuration version '5'.
|
|
|
|
type configV5 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger loggerV5 `json:"logger"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV5 load config version '5'.
|
|
|
|
func loadConfigV5() (*configV5, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV5{Version: "5"})
|
|
|
|
if config == nil {
|
2016-08-05 01:01:58 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV5), err
|
2016-08-05 01:01:58 -04:00
|
|
|
}
|
2016-09-10 03:51:25 -04:00
|
|
|
|
2016-11-23 18:00:53 -05:00
|
|
|
type loggerV6 struct {
|
|
|
|
Console consoleLogger `json:"console"`
|
|
|
|
File fileLogger `json:"file"`
|
|
|
|
Syslog syslogLoggerV3 `json:"syslog"`
|
|
|
|
}
|
|
|
|
|
2016-09-10 03:51:25 -04:00
|
|
|
// configV6 server configuration version '6'.
|
|
|
|
type configV6 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
2016-11-23 18:00:53 -05:00
|
|
|
Logger loggerV6 `json:"logger"`
|
2016-09-10 03:51:25 -04:00
|
|
|
|
|
|
|
// Notification queue configuration.
|
2017-01-11 19:41:05 -05:00
|
|
|
Notify notifierV1 `json:"notify"`
|
2016-09-10 03:51:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV6 load config version '6'.
|
|
|
|
func loadConfigV6() (*configV6, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &configV6{Version: "6"})
|
|
|
|
if config == nil {
|
2016-09-10 03:51:25 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*configV6), err
|
2016-09-10 03:51:25 -04:00
|
|
|
}
|
2016-09-30 02:42:10 -04:00
|
|
|
|
2017-01-09 17:22:10 -05:00
|
|
|
// Notifier represents collection of supported notification queues in version
|
|
|
|
// 1 without NATS streaming.
|
2017-01-11 19:41:05 -05:00
|
|
|
type notifierV1 struct {
|
|
|
|
AMQP map[string]amqpNotify `json:"amqp"`
|
|
|
|
NATS map[string]natsNotifyV1 `json:"nats"`
|
|
|
|
ElasticSearch map[string]elasticSearchNotify `json:"elasticsearch"`
|
|
|
|
Redis map[string]redisNotify `json:"redis"`
|
|
|
|
PostgreSQL map[string]postgreSQLNotify `json:"postgresql"`
|
|
|
|
Kafka map[string]kafkaNotify `json:"kafka"`
|
|
|
|
}
|
|
|
|
|
2017-01-09 17:22:10 -05:00
|
|
|
// Notifier represents collection of supported notification queues in version 2
|
|
|
|
// with NATS streaming but without webhook.
|
|
|
|
type notifierV2 struct {
|
|
|
|
AMQP map[string]amqpNotify `json:"amqp"`
|
|
|
|
NATS map[string]natsNotify `json:"nats"`
|
|
|
|
ElasticSearch map[string]elasticSearchNotify `json:"elasticsearch"`
|
|
|
|
Redis map[string]redisNotify `json:"redis"`
|
|
|
|
PostgreSQL map[string]postgreSQLNotify `json:"postgresql"`
|
|
|
|
Kafka map[string]kafkaNotify `json:"kafka"`
|
|
|
|
}
|
|
|
|
|
2016-09-30 02:42:10 -04:00
|
|
|
// configV7 server configuration version '7'.
|
|
|
|
type serverConfigV7 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
2016-11-23 18:00:53 -05:00
|
|
|
Logger loggerV6 `json:"logger"`
|
2016-09-30 02:42:10 -04:00
|
|
|
|
|
|
|
// Notification queue configuration.
|
2017-01-11 19:41:05 -05:00
|
|
|
Notify notifierV1 `json:"notify"`
|
2016-09-30 02:42:10 -04:00
|
|
|
|
|
|
|
// Read Write mutex.
|
|
|
|
rwMutex *sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV7 load config version '7'.
|
|
|
|
func loadConfigV7() (*serverConfigV7, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV7{Version: "7"})
|
|
|
|
if config == nil {
|
2016-09-30 02:42:10 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV7), err
|
2016-09-30 02:42:10 -04:00
|
|
|
}
|
2016-10-03 20:29:55 -04:00
|
|
|
|
|
|
|
// serverConfigV8 server configuration version '8'. Adds NATS notifier
|
|
|
|
// configuration.
|
|
|
|
type serverConfigV8 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
2016-11-23 18:00:53 -05:00
|
|
|
Logger loggerV6 `json:"logger"`
|
2016-10-03 20:29:55 -04:00
|
|
|
|
|
|
|
// Notification queue configuration.
|
2017-01-11 19:41:05 -05:00
|
|
|
Notify notifierV1 `json:"notify"`
|
2016-10-03 20:29:55 -04:00
|
|
|
|
|
|
|
// Read Write mutex.
|
|
|
|
rwMutex *sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadConfigV8 load config version '8'.
|
|
|
|
func loadConfigV8() (*serverConfigV8, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV8{Version: "8"})
|
|
|
|
if config == nil {
|
2016-10-03 20:29:55 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV8), err
|
2016-10-03 20:29:55 -04:00
|
|
|
}
|
2016-11-23 18:00:53 -05:00
|
|
|
|
|
|
|
// serverConfigV9 server configuration version '9'. Adds PostgreSQL
|
|
|
|
// notifier configuration.
|
|
|
|
type serverConfigV9 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger loggerV6 `json:"logger"`
|
|
|
|
|
|
|
|
// Notification queue configuration.
|
2017-01-11 19:41:05 -05:00
|
|
|
Notify notifierV1 `json:"notify"`
|
2016-11-23 18:00:53 -05:00
|
|
|
|
|
|
|
// Read Write mutex.
|
|
|
|
rwMutex *sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadConfigV9() (*serverConfigV9, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV9{Version: "9"})
|
|
|
|
if config == nil {
|
2016-11-23 18:00:53 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV9), err
|
2016-11-23 18:00:53 -05:00
|
|
|
}
|
2016-12-15 11:23:48 -05:00
|
|
|
|
|
|
|
// serverConfigV10 server configuration version '10' which is like
|
|
|
|
// version '9' except it drops support of syslog config, and makes the
|
|
|
|
// RWMutex global (so it does not exist in this struct).
|
|
|
|
type serverConfigV10 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger logger `json:"logger"`
|
|
|
|
|
|
|
|
// Notification queue configuration.
|
2017-01-11 19:41:05 -05:00
|
|
|
Notify notifierV1 `json:"notify"`
|
2016-12-15 11:23:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func loadConfigV10() (*serverConfigV10, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV10{Version: "10"})
|
|
|
|
if config == nil {
|
2016-12-15 11:23:48 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV10), err
|
2016-12-15 11:23:48 -05:00
|
|
|
}
|
2017-01-11 19:41:05 -05:00
|
|
|
|
|
|
|
// natsNotifyV1 - structure was valid until config V 11
|
|
|
|
type natsNotifyV1 struct {
|
|
|
|
Enable bool `json:"enable"`
|
|
|
|
Address string `json:"address"`
|
|
|
|
Subject string `json:"subject"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
|
|
|
Token string `json:"token"`
|
|
|
|
Secure bool `json:"secure"`
|
|
|
|
PingInterval int64 `json:"pingInterval"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// serverConfigV11 server configuration version '11' which is like
|
|
|
|
// version '10' except it adds support for Kafka notifications.
|
|
|
|
type serverConfigV11 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger logger `json:"logger"`
|
|
|
|
|
|
|
|
// Notification queue configuration.
|
|
|
|
Notify notifierV1 `json:"notify"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadConfigV11() (*serverConfigV11, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV11{Version: "11"})
|
|
|
|
if config == nil {
|
2017-01-11 19:41:05 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV11), err
|
2017-01-11 19:41:05 -05:00
|
|
|
}
|
2017-01-09 17:22:10 -05:00
|
|
|
|
|
|
|
// serverConfigV12 server configuration version '12' which is like
|
|
|
|
// version '11' except it adds support for NATS streaming notifications.
|
|
|
|
type serverConfigV12 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
|
|
|
|
// S3 API configuration.
|
|
|
|
Credential credential `json:"credential"`
|
|
|
|
Region string `json:"region"`
|
|
|
|
|
|
|
|
// Additional error logging configuration.
|
|
|
|
Logger logger `json:"logger"`
|
|
|
|
|
|
|
|
// Notification queue configuration.
|
|
|
|
Notify notifierV2 `json:"notify"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadConfigV12() (*serverConfigV12, error) {
|
|
|
|
configFile, err := getConfigFile()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
config, err := loadOldConfig(configFile, &serverConfigV12{Version: "12"})
|
|
|
|
if config == nil {
|
2017-01-09 17:22:10 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-02-18 13:45:37 -05:00
|
|
|
return config.(*serverConfigV12), err
|
2017-01-09 17:22:10 -05:00
|
|
|
}
|