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
/ *
2019-08-13 00:25:34 -04:00
* MinIO Cloud Storage , ( C ) 2015 - 2019 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-12 18:27:10 -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
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 (
2020-05-23 00:59:18 -04:00
"bufio"
2018-04-05 18:04:40 -04:00
"context"
2019-11-13 20:38:05 -05:00
"errors"
2018-05-08 22:04:36 -04:00
"fmt"
2020-05-23 00:59:18 -04:00
"io"
"log"
2020-03-18 19:19:29 -04:00
"net"
2017-03-06 22:35:26 -05:00
"os"
2017-07-12 19:33:21 -04:00
"os/signal"
2018-05-18 20:51:03 -04:00
"strings"
2017-07-12 19:33:21 -04:00
"syscall"
2020-03-22 15:16:36 -04: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-12 18:27:10 -05:00
"github.com/minio/cli"
2019-10-04 13:35:33 -04:00
"github.com/minio/minio/cmd/config"
2018-04-21 22:23:54 -04:00
xhttp "github.com/minio/minio/cmd/http"
2018-04-05 18:04:40 -04:00
"github.com/minio/minio/cmd/logger"
2019-10-23 01:59:13 -04:00
"github.com/minio/minio/pkg/auth"
2018-05-31 15:30:15 -04:00
"github.com/minio/minio/pkg/certs"
2019-10-04 13:35:33 -04:00
"github.com/minio/minio/pkg/color"
"github.com/minio/minio/pkg/env"
2020-06-08 14:28:40 -04:00
"github.com/minio/minio/pkg/retry"
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
)
2019-06-10 10:57:42 -04:00
// ServerFlags - server command specific flags
var ServerFlags = [ ] cli . Flag {
2016-09-01 18:12:49 -04:00
cli . StringFlag {
Name : "address" ,
2020-05-17 11:46:23 -04:00
Value : ":" + GlobalMinioDefaultPort ,
2018-11-20 20:35:33 -05:00
Usage : "bind to a specific ADDRESS:PORT, ADDRESS can be an IP or hostname" ,
2016-09-01 18:12:49 -04:00
} ,
}
var serverCmd = cli . Command {
Name : "server" ,
2018-11-20 20:35:33 -05:00
Usage : "start object storage server" ,
2019-06-10 10:57:42 -04:00
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-01 22:19:44 -04: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-12 18:27:10 -05:00
CustomHelpTemplate : ` NAME :
2017-03-16 15:21:58 -04: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-12 18:27:10 -05:00
USAGE :
2018-02-15 20:45:57 -05:00
{ { . HelpName } } { { if . VisibleFlags } } [ FLAGS ] { { end } } DIR1 [ DIR2 . . ]
{ { . HelpName } } { { if . VisibleFlags } } [ FLAGS ] { { end } } DIR { 1. . .64 }
2019-12-16 23:30:57 -05:00
{ { . HelpName } } { { if . VisibleFlags } } [ FLAGS ] { { end } } DIR { 1. . .64 } DIR { 65. . .128 }
2018-02-15 20:45:57 -05:00
DIR :
DIR points to a directory on a filesystem . When you want to combine
multiple drives into a single large system , pass one directory per
filesystem separated by space . You may also use a ' ... ' convention
to abbreviate the directory arguments . Remote directories in a
distributed setup are encoded as HTTP ( s ) URIs .
2017-02-15 20:45:08 -05:00
{ { if . VisibleFlags } }
2016-08-28 23:04:47 -04:00
FLAGS :
2017-02-15 05:25:38 -05:00
{ { range . VisibleFlags } } { { . } }
2017-02-15 20:45:08 -05:00
{ { end } } { { end } }
2018-02-02 21:18:52 -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
EXAMPLES :
2016-11-10 02:37:12 -05:00
1. Start minio server on "/home/shared" directory .
2019-05-15 04:32:44 -04:00
{ { . Prompt } } { { . 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-01 22:19:44 -04:00
2020-04-22 02:59:13 -04:00
2. Start single node server with 64 local drives "/mnt/data1" to "/mnt/data64" .
{ { . Prompt } } { { . HelpName } } / mnt / data { 1. . .64 }
3. Start distributed minio server on an 32 node setup with 32 drives each , run following command on all the nodes
2019-05-15 04:32:44 -04:00
{ { . Prompt } } { { . EnvVarSetCommand } } MINIO_ACCESS_KEY { { . AssignmentOperator } } minio
{ { . Prompt } } { { . EnvVarSetCommand } } MINIO_SECRET_KEY { { . AssignmentOperator } } miniostorage
2020-03-27 00:07:39 -04:00
{ { . Prompt } } { { . HelpName } } http : //node{1...32}.example.com/mnt/export{1...32}
2018-05-18 20:51:03 -04:00
2020-04-22 02:59:13 -04:00
4. Start distributed minio server in an expanded setup , run the following command on all the nodes
2019-12-16 23:30:57 -05:00
{ { . Prompt } } { { . EnvVarSetCommand } } MINIO_ACCESS_KEY { { . AssignmentOperator } } minio
{ { . Prompt } } { { . EnvVarSetCommand } } MINIO_SECRET_KEY { { . AssignmentOperator } } miniostorage
2020-03-27 00:07:39 -04:00
{ { . Prompt } } { { . HelpName } } http : //node{1...16}.example.com/mnt/export{1...32} \
http : //node{17...64}.example.com/mnt/export{1...64}
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
` ,
}
2018-05-18 20:51:03 -04:00
// Checks if endpoints are either available through environment
// or command line, returns false if both fails.
func endpointsPresent ( ctx * cli . Context ) bool {
2019-10-31 02:39:09 -04:00
endpoints := env . Get ( config . EnvEndpoints , strings . Join ( ctx . Args ( ) , config . ValueSeparator ) )
return len ( endpoints ) != 0
2018-05-18 20:51:03 -04:00
}
2017-03-30 14:21:19 -04:00
func serverHandleCmdArgs ( ctx * cli . Context ) {
2017-06-09 22:50:51 -04:00
// Handle common command args.
handleCommonCmdArgs ( ctx )
2017-03-29 11:55:33 -04:00
2018-12-18 19:08:11 -05:00
logger . FatalIf ( CheckLocalServerAddr ( globalCLIContext . Addr ) , "Unable to validate passed arguments" )
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-04-11 18:44:27 -04:00
var setupType SetupType
2017-01-11 16:59:51 -05:00
var err error
2017-08-15 18:10:50 -04:00
2019-11-26 14:42:10 -05:00
globalMinioAddr = globalCLIContext . Addr
globalMinioHost , globalMinioPort = mustSplitHostPort ( globalMinioAddr )
2019-10-08 01:47:56 -04:00
endpoints := strings . Fields ( env . Get ( config . EnvEndpoints , "" ) )
2018-05-18 20:51:03 -04:00
if len ( endpoints ) > 0 {
2020-06-12 23:04:01 -04:00
globalEndpoints , globalErasureSetDriveCount , setupType , err = createServerEndpoints ( globalCLIContext . Addr , endpoints ... )
2018-05-18 20:51:03 -04:00
} else {
2020-06-12 23:04:01 -04:00
globalEndpoints , globalErasureSetDriveCount , setupType , err = createServerEndpoints ( globalCLIContext . Addr , ctx . Args ( ) ... )
2018-05-18 20:51:03 -04:00
}
2018-05-08 22:04:36 -04:00
logger . FatalIf ( err , "Invalid command line arguments" )
2018-02-15 20:45:57 -05:00
2018-05-08 22:04:36 -04:00
// 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.
2020-01-03 20:43:16 -05:00
// To avoid this error situation we check for port availability.
2019-06-24 18:02:40 -04:00
logger . FatalIf ( checkPortAvailability ( globalMinioHost , globalMinioPort ) , "Unable to start the server" )
2016-08-30 22:22:27 -04:00
2020-06-12 23:04:01 -04:00
globalIsErasure = ( setupType == ErasureSetupType )
globalIsDistErasure = ( setupType == DistErasureSetupType )
if globalIsDistErasure {
globalIsErasure = true
2017-01-23 03:32:55 -05:00
}
2017-03-30 14:21:19 -04:00
}
func serverHandleEnvVars ( ) {
2017-06-09 22:50:51 -04:00
// Handle common environment variables.
handleCommonEnvVars ( )
2017-03-30 14:21:19 -04:00
}
2019-11-09 12:27:23 -05:00
func newAllSubsystems ( ) {
// Create new notification system and initialize notification targets
globalNotificationSys = NewNotificationSys ( globalEndpoints )
2020-05-19 16:53:54 -04:00
// Create new bucket metadata system.
globalBucketMetadataSys = NewBucketMetadataSys ( )
2019-10-31 02:39:09 -04:00
// Create a new config system.
globalConfigSys = NewConfigSys ( )
// Create new IAM system.
globalIAMSys = NewIAMSys ( )
2019-11-09 12:27:23 -05:00
// Create new policy system.
globalPolicySys = NewPolicySys ( )
// Create new lifecycle system.
globalLifecycleSys = NewLifecycleSys ( )
2020-02-05 04:42:34 -05:00
// Create new bucket encryption subsystem
globalBucketSSEConfigSys = NewBucketSSEConfigSys ( )
2020-05-04 12:42:58 -04:00
2020-05-08 16:44:44 -04:00
// Create new bucket object lock subsystem
globalBucketObjectLockSys = NewBucketObjectLockSys ( )
2020-05-04 12:42:58 -04:00
// Create new bucket quota subsystem
globalBucketQuotaSys = NewBucketQuotaSys ( )
2020-06-12 23:04:01 -04:00
// Create new bucket versioning subsystem
globalBucketVersioningSys = NewBucketVersioningSys ( )
2019-11-09 12:27:23 -05:00
}
2020-06-09 22:19:03 -04:00
func initSafeMode ( ctx context . Context , newObject ObjectLayer ) ( err error ) {
// Create cancel context to control 'newRetryTimer' go routine.
retryCtx , cancel := context . WithCancel ( ctx )
// Indicate to our routine to exit cleanly upon return.
defer cancel ( )
2019-11-19 20:42:27 -05:00
// Make sure to hold lock for entire migration to avoid
// such that only one server should migrate the entire config
// at a given time, this big transaction lock ensures this
// appropriately. This is also true for rotation of encrypted
// content.
2020-06-09 22:19:03 -04:00
txnLk := newObject . NewNSLock ( retryCtx , minioMetaBucket , minioConfigPrefix + "/transaction.lock" )
2020-05-04 23:04:06 -04:00
defer func ( txnLk RWLocker ) {
txnLk . Unlock ( )
2019-11-19 20:42:27 -05:00
2019-11-09 12:27:23 -05:00
if err != nil {
2019-11-13 20:38:05 -05:00
var cerr config . Err
2020-05-04 23:04:06 -04:00
// For any config error, we don't need to drop into safe-mode
// instead its a user error and should be fixed by user.
2019-11-13 20:38:05 -05:00
if errors . As ( err , & cerr ) {
2019-11-11 15:01:21 -05:00
return
}
2019-12-04 18:32:37 -05:00
2019-11-09 12:27:23 -05:00
// Prints the formatted startup message in safe mode operation.
2020-05-04 23:04:06 -04:00
// Drops-into safe mode where users need to now manually recover
// the server.
2019-11-09 12:27:23 -05:00
printStartupSafeModeMessage ( getAPIEndpoints ( ) , err )
// Initialization returned error reaching safe mode and
// not proceeding waiting for admin action.
handleSignals ( )
}
2020-05-04 23:04:06 -04:00
} ( txnLk )
2019-10-31 02:39:09 -04:00
2020-06-29 16:07:26 -04:00
// Enable healing to heal drives if possible
if globalIsErasure {
initBackgroundHealing ( ctx , newObject )
initLocalDisksAutoHeal ( ctx , newObject )
}
2019-11-09 12:27:23 -05:00
// **** WARNING ****
// Migrating to encrypted backend should happen before initialization of any
// sub-systems, make sure that we do not move the above codeblock elsewhere.
2020-02-01 20:07:43 -05:00
// Initializing sub-systems needs a retry mechanism for
// the following reasons:
// - Read quorum is lost just after the initialization
// of the object layer.
// - Write quorum not met when upgrading configuration
// version is needed, migration is needed etc.
2020-05-04 23:04:06 -04:00
rquorum := InsufficientReadQuorum { }
wquorum := InsufficientWriteQuorum { }
2020-06-08 14:28:40 -04:00
for range retry . NewTimer ( retryCtx ) {
2020-05-04 23:04:06 -04:00
// let one of the server acquire the lock, if not let them timeout.
// which shall be retried again by this loop.
2020-06-09 22:19:03 -04:00
if err = txnLk . GetLock ( newDynamicTimeout ( 1 * time . Second , 10 * time . Second ) ) ; err != nil {
2020-05-06 17:25:05 -04:00
logger . Info ( "Waiting for all MinIO sub-systems to be initialized.. trying to acquire lock" )
continue
}
2020-05-07 19:12:16 -04:00
// These messages only meant primarily for distributed setup, so only log during distributed setup.
2020-06-12 23:04:01 -04:00
if globalIsDistErasure {
2020-05-07 19:12:16 -04:00
logger . Info ( "Waiting for all MinIO sub-systems to be initialized.. lock acquired" )
}
2020-05-06 17:25:05 -04:00
// Migrate all backend configs to encrypted backend configs, optionally
// handles rotating keys for encryption, if there is any retriable failure
// that shall be retried if there is an error.
2020-06-25 06:29:28 -04:00
if err = handleEncryptedConfigBackend ( newObject ) ; err == nil {
2020-05-06 17:25:05 -04:00
// Upon success migrating the config, initialize all sub-systems
// if all sub-systems initialized successfully return right away
2020-06-09 22:19:03 -04:00
if err = initAllSubsystems ( retryCtx , newObject ) ; err == nil {
2020-05-06 17:25:05 -04:00
// All successful return.
2020-06-12 23:04:01 -04:00
if globalIsDistErasure {
2020-05-07 19:12:16 -04:00
// These messages only meant primarily for distributed setup, so only log during distributed setup.
logger . Info ( "All MinIO sub-systems initialized successfully" )
}
2020-05-06 17:25:05 -04:00
return nil
2020-02-01 20:07:43 -05:00
}
2020-05-04 23:04:06 -04:00
}
// One of these retriable errors shall be retried.
if errors . Is ( err , errDiskNotFound ) ||
errors . Is ( err , errConfigNotFound ) ||
errors . Is ( err , context . Canceled ) ||
errors . Is ( err , context . DeadlineExceeded ) ||
errors . As ( err , & rquorum ) ||
errors . As ( err , & wquorum ) ||
isErrBucketNotFound ( err ) {
2020-05-06 17:25:05 -04:00
logger . Info ( "Waiting for all MinIO sub-systems to be initialized.. possible cause (%v)" , err )
txnLk . Unlock ( ) // Unlock the transaction lock and allow other nodes to acquire the lock if possible.
2020-05-04 23:04:06 -04:00
continue
2020-02-01 20:07:43 -05:00
}
2020-05-04 23:04:06 -04:00
// Any other unhandled return right here.
return fmt . Errorf ( "Unable to initialize sub-systems: %w" , err )
}
// Return an error when retry is canceled or deadlined
if err = retryCtx . Err ( ) ; err != nil {
return fmt . Errorf ( "Unable to initialize sub-systems: %w" , err )
2019-10-31 02:39:09 -04:00
}
2020-05-04 23:04:06 -04:00
// Retry was canceled successfully.
return errors . New ( "Initializing sub-systems stopped gracefully" )
2019-11-09 12:27:23 -05:00
}
2020-06-09 22:19:03 -04:00
func initAllSubsystems ( ctx context . Context , newObject ObjectLayer ) ( err error ) {
2020-05-06 17:25:05 -04:00
// %w is used by all error returns here to make sure
// we wrap the underlying error, make sure when you
// are modifying this code that you do so, if and when
// you want to add extra context to your error. This
// ensures top level retry works accordingly.
var buckets [ ] BucketInfo
2020-06-12 23:04:01 -04:00
if globalIsDistErasure || globalIsErasure {
2020-05-06 17:25:05 -04:00
// List buckets to heal, and be re-used for loading configs.
2020-06-09 22:19:03 -04:00
buckets , err = newObject . ListBucketsHeal ( ctx )
2020-05-06 17:25:05 -04:00
if err != nil {
return fmt . Errorf ( "Unable to list buckets to heal: %w" , err )
}
// Attempt a heal if possible and re-use the bucket names
// to reload their config.
wquorum := & InsufficientWriteQuorum { }
rquorum := & InsufficientReadQuorum { }
for _ , bucket := range buckets {
2020-06-12 23:04:01 -04:00
if err = newObject . MakeBucketWithLocation ( ctx , bucket . Name , BucketOptions { } ) ; err != nil {
2020-05-06 17:25:05 -04:00
if errors . As ( err , & wquorum ) || errors . As ( err , & rquorum ) {
2020-06-09 22:19:03 -04:00
// Return the error upwards for the caller to retry.
2020-05-06 17:25:05 -04:00
return fmt . Errorf ( "Unable to heal bucket: %w" , err )
}
if _ , ok := err . ( BucketExists ) ; ! ok {
// ignore any other error and log for investigation.
2020-06-09 22:19:03 -04:00
logger . LogIf ( ctx , err )
2020-05-06 17:25:05 -04:00
continue
}
// Bucket already exists, nothing that needs to be done.
}
}
} else {
2020-06-09 22:19:03 -04:00
buckets , err = newObject . ListBuckets ( ctx )
2020-05-06 17:25:05 -04:00
if err != nil {
return fmt . Errorf ( "Unable to list buckets: %w" , err )
}
2020-05-04 23:04:06 -04:00
}
2019-11-09 12:27:23 -05:00
// Initialize config system.
if err = globalConfigSys . Init ( newObject ) ; err != nil {
2019-11-11 15:01:21 -05:00
return fmt . Errorf ( "Unable to initialize config system: %w" , err )
2019-11-09 12:27:23 -05:00
}
2020-05-04 23:04:06 -04:00
2020-06-09 22:19:03 -04:00
// Populate existing buckets to the etcd backend
if globalDNSConfig != nil {
// Background this operation.
go initFederatorBackend ( buckets , newObject )
2019-10-31 02:39:09 -04:00
}
2020-05-19 16:53:54 -04:00
// Initialize bucket metadata sub-system.
2020-06-09 22:19:03 -04:00
if err := globalBucketMetadataSys . Init ( ctx , buckets , newObject ) ; err != nil {
2020-05-19 16:53:54 -04:00
return fmt . Errorf ( "Unable to initialize bucket metadata sub-system: %w" , err )
}
2019-10-31 02:39:09 -04:00
// Initialize notification system.
if err = globalNotificationSys . Init ( buckets , newObject ) ; err != nil {
2019-11-11 15:01:21 -05:00
return fmt . Errorf ( "Unable to initialize notification system: %w" , err )
2020-05-04 12:42:58 -04:00
}
2019-11-09 12:27:23 -05:00
return nil
2019-10-31 02:39:09 -04:00
}
2020-03-22 15:16:36 -04:00
func startBackgroundOps ( ctx context . Context , objAPI ObjectLayer ) {
// Make sure only 1 crawler is running on the cluster.
locker := objAPI . NewNSLock ( ctx , minioMetaBucket , "leader" )
for {
err := locker . GetLock ( leaderLockTimeout )
if err != nil {
time . Sleep ( leaderTick )
continue
}
break
// No unlock for "leader" lock.
}
2020-06-12 23:04:01 -04:00
if globalIsErasure {
2020-03-22 15:16:36 -04:00
initGlobalHeal ( ctx , objAPI )
}
2020-06-12 13:28:21 -04:00
initDataCrawler ( ctx , objAPI )
2020-04-30 18:55:54 -04:00
initQuotaEnforcement ( ctx , objAPI )
2020-03-22 15:16:36 -04:00
}
2017-03-30 14:21:19 -04:00
// serverMain handler called for 'minio server' command.
func serverMain ( ctx * cli . Context ) {
2018-05-18 20:51:03 -04:00
if ctx . Args ( ) . First ( ) == "help" || ! endpointsPresent ( ctx ) {
2017-03-30 14:21:19 -04:00
cli . ShowCommandHelpAndExit ( ctx , "server" , 1 )
}
2020-01-21 18:49:25 -05:00
setDefaultProfilerRates ( )
2017-03-30 14:21:19 -04:00
2019-12-16 23:30:57 -05:00
// Initialize globalConsoleSys system
2020-04-09 12:30:02 -04:00
globalConsoleSys = NewConsoleLogger ( GlobalContext )
2019-12-16 23:30:57 -05:00
2019-04-19 13:26:44 -04:00
signal . Notify ( globalOSSignalCh , os . Interrupt , syscall . SIGTERM )
2018-11-02 14:53:45 -04:00
// Handle all server command args.
serverHandleCmdArgs ( ctx )
2019-11-04 12:30:59 -05:00
// Handle all server environment vars.
serverHandleEnvVars ( )
2019-12-16 23:30:57 -05:00
// Set node name, only set for distributed setup.
globalConsoleSys . SetNodeName ( globalEndpoints )
2019-12-04 18:32:37 -05:00
// Initialize all help
initHelp ( )
2018-10-27 20:51:00 -04:00
// Check and load TLS certificates.
2017-03-30 14:21:19 -04:00
var err error
2018-10-27 20:51:00 -04:00
globalPublicCerts , globalTLSCerts , globalIsSSL , err = getTLSConfig ( )
2018-05-08 22:04:36 -04:00
logger . FatalIf ( err , "Unable to load the TLS configuration" )
2017-03-30 14:21:19 -04:00
2018-10-27 20:51:00 -04:00
// Check and load Root CAs.
2019-10-08 01:47:56 -04:00
globalRootCAs , err = config . GetRootCAs ( globalCertsCADir . Get ( ) )
2018-10-27 20:51:00 -04:00
logger . FatalIf ( err , "Failed to read root CAs (%v)" , err )
2020-04-27 09:25:05 -04:00
globalMinioEndpoint = func ( ) string {
host := globalMinioHost
if host == "" {
host = sortIPs ( localIP4 . ToSlice ( ) ) [ 0 ]
}
return fmt . Sprintf ( "%s://%s" , getURLScheme ( globalIsSSL ) , net . JoinHostPort ( host , globalMinioPort ) )
} ( )
2017-12-04 01:47:12 -05:00
// Is distributed setup, error out if no certificates are found for HTTPS endpoints.
2020-06-12 23:04:01 -04:00
if globalIsDistErasure {
2019-11-19 20:42:27 -05:00
if globalEndpoints . HTTPS ( ) && ! globalIsSSL {
2019-10-04 13:35:33 -04:00
logger . Fatal ( config . ErrNoCertsAndHTTPSEndpoints ( nil ) , "Unable to start the server" )
2018-04-09 22:10:23 -04:00
}
2019-11-19 20:42:27 -05:00
if ! globalEndpoints . HTTPS ( ) && globalIsSSL {
2019-10-04 13:35:33 -04:00
logger . Fatal ( config . ErrCertsAndHTTPEndpoints ( nil ) , "Unable to start the server" )
2018-04-09 22:10:23 -04:00
}
2017-12-04 01:47:12 -05:00
}
2018-12-18 19:08:11 -05:00
if ! globalCLIContext . Quiet {
2019-04-09 14:39:42 -04:00
// Check for new updates from dl.min.io.
2019-08-14 14:43:43 -04:00
checkUpdate ( getMinioMode ( ) )
2017-03-16 15:21:58 -04:00
}
2020-06-12 23:04:01 -04:00
if ! globalActiveCred . IsValid ( ) && globalIsDistErasure {
2019-10-23 01:59:13 -04:00
logger . Fatal ( config . ErrEnvCredentialsMissingDistributed ( nil ) ,
"Unable to initialize the server in distributed mode" )
2018-08-15 00:41:47 -04:00
}
2017-03-30 14:21:19 -04:00
// Set system resources to maximum.
2020-06-03 16:18:54 -04:00
setMaxResources ( )
2017-03-30 14:21:19 -04:00
2020-06-12 23:04:01 -04:00
if globalIsErasure {
2020-06-29 16:07:26 -04:00
// New global heal state
globalAllHealState = newHealState ( )
globalBackgroundHealState = newHealState ( )
2019-06-09 01:14:07 -04:00
}
2018-01-22 17:54:55 -05:00
2017-03-30 14:21:19 -04:00
// Configure server.
2020-05-25 03:17:52 -04:00
handler , err := configureServerHandler ( globalEndpoints )
2018-05-08 22:04:36 -04:00
if err != nil {
2019-10-04 13:35:33 -04:00
logger . Fatal ( config . ErrUnexpectedError ( err ) , "Unable to configure one of server's RPC services" )
2018-05-08 22:04:36 -04:00
}
2017-01-16 20:05:00 -05:00
2018-05-31 15:30:15 -04:00
var getCert certs . GetCertificateFunc
if globalTLSCerts != nil {
getCert = globalTLSCerts . GetCertificate
}
2020-05-23 00:59:18 -04:00
// Annonying hack to ensure that Go doesn't write its own logging,
// interleaved with our formatted logging, this allows us to
// honor --json and --quiet flag properly.
//
// Unfortunately we have to resort to this sort of hacky approach
// because, Go automatically initializes ErrorLog on its own
// and can log without application control.
//
// This is an implementation issue in Go and should be fixed, but
// until then this hack is okay and works for our needs.
pr , pw := io . Pipe ( )
go func ( ) {
defer pr . Close ( )
scanner := bufio . NewScanner ( & contextReader { pr , GlobalContext } )
for scanner . Scan ( ) {
logger . LogIf ( GlobalContext , errors . New ( scanner . Text ( ) ) )
}
} ( )
2019-12-02 18:54:26 -05:00
httpServer := xhttp . NewServer ( [ ] string { globalMinioAddr } , criticalErrorHandler { handler } , getCert )
2020-05-23 00:59:18 -04:00
httpServer . ErrorLog = log . New ( pw , "" , 0 )
2020-03-18 19:19:29 -04:00
httpServer . BaseContext = func ( listener net . Listener ) context . Context {
return GlobalContext
}
2017-01-11 16:59:51 -05:00
go func ( ) {
2019-12-02 18:54:26 -05:00
globalHTTPServerErrorCh <- httpServer . Start ( )
2017-01-11 16:59:51 -05:00
} ( )
2016-09-14 04:11:03 -04:00
2019-12-02 18:54:26 -05:00
globalObjLayerMutex . Lock ( )
globalHTTPServer = httpServer
globalObjLayerMutex . Unlock ( )
2020-06-12 23:04:01 -04:00
if globalIsDistErasure && globalEndpoints . FirstLocal ( ) {
2020-04-02 00:40:03 -04:00
for {
// Additionally in distributed setup, validate the setup and configuration.
err := verifyServerSystemConfig ( globalEndpoints )
if err == nil {
break
}
logger . LogIf ( GlobalContext , err , "Unable to initialize distributed setup" )
select {
case <- GlobalContext . Done ( ) :
return
case <- time . After ( 5 * time . Second ) :
}
2019-11-22 15:45:13 -05:00
}
}
2020-04-14 20:52:38 -04:00
newObject , err := newObjectLayer ( GlobalContext , globalEndpoints )
2019-07-01 15:22:01 -04:00
logger . SetDeploymentID ( globalDeploymentID )
2017-07-12 19:33:21 -04:00
if err != nil {
2018-05-31 15:30:15 -04:00
// Stop watching for any certificate changes.
globalTLSCerts . Stop ( )
2018-05-08 22:04:36 -04:00
globalHTTPServer . Shutdown ( )
2019-11-09 12:27:23 -05:00
logger . Fatal ( err , "Unable to initialize backend" )
2018-04-05 11:18:42 -04:00
}
2019-11-09 12:27:23 -05:00
// Once endpoints are finalized, initialize the new object api in safe mode.
globalObjLayerMutex . Lock ( )
globalSafeMode = true
globalObjectAPI = newObject
globalObjLayerMutex . Unlock ( )
2019-11-01 18:53:16 -04:00
2020-01-10 05:35:06 -05:00
newAllSubsystems ( )
2020-03-27 17:48:30 -04:00
go startBackgroundOps ( GlobalContext , newObject )
2020-06-09 22:19:03 -04:00
logger . FatalIf ( initSafeMode ( GlobalContext , newObject ) , "Unable to initialize server switching into safe-mode" )
// Initialize users credentials and policies in background.
go startBackgroundIAMLoad ( GlobalContext )
2019-10-23 01:59:13 -04:00
2019-11-09 12:27:23 -05:00
if globalCacheConfig . Enabled {
2019-12-04 18:32:37 -05:00
// initialize the new disk cache objects.
var cacheAPI CacheObjectLayer
2020-03-22 15:16:36 -04:00
cacheAPI , err = newServerCacheObjects ( GlobalContext , globalCacheConfig )
2019-12-04 18:32:37 -05:00
logger . FatalIf ( err , "Unable to initialize disk caching" )
globalObjLayerMutex . Lock ( )
globalCacheObjectAPI = cacheAPI
globalObjLayerMutex . Unlock ( )
2019-10-23 01:59:13 -04:00
}
2019-11-09 12:27:23 -05:00
// Disable safe mode operation, after all initialization is over.
globalObjLayerMutex . Lock ( )
globalSafeMode = false
globalObjLayerMutex . Unlock ( )
2018-08-23 02:11:17 -04:00
2016-10-05 15:48:07 -04:00
// Prints the formatted startup message once object layer is initialized.
2018-12-14 02:37:46 -05:00
printStartupMessage ( getAPIEndpoints ( ) )
2016-10-05 15:48:07 -04:00
2019-10-23 01:59:13 -04:00
if globalActiveCred . Equal ( auth . DefaultCredentials ) {
msg := fmt . Sprintf ( "Detected default credentials '%s', please change the credentials immediately using 'MINIO_ACCESS_KEY' and 'MINIO_SECRET_KEY'" , globalActiveCred )
2019-11-09 12:27:23 -05:00
logger . StartupMessage ( color . RedBold ( msg ) )
2019-10-23 01:59:13 -04:00
}
2017-07-12 19:33:21 -04:00
handleSignals ( )
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-01-16 20:05:00 -05:00
// Initialize object layer with the supplied disks, objectLayer is nil upon any error.
2020-04-14 20:52:38 -04:00
func newObjectLayer ( ctx context . Context , endpointZones EndpointZones ) ( newObject ObjectLayer , err error ) {
2017-01-16 20:05:00 -05:00
// For FS only, directly use the disk.
2020-03-24 15:43:40 -04:00
if endpointZones . NEndpoints ( ) == 1 {
2017-01-16 20:05:00 -05:00
// Initialize new FS object layer.
2019-11-19 20:42:27 -05:00
return NewFSObjectLayer ( endpointZones [ 0 ] . Endpoints [ 0 ] . Path )
2017-01-16 20:05:00 -05:00
}
2020-06-12 23:04:01 -04:00
return newErasureZones ( ctx , endpointZones )
2017-01-16 20:05:00 -05:00
}