mirror of
https://github.com/minio/minio.git
synced 2025-01-25 13:43:17 -05:00
server: Change server startup message. (#2195)
This change brings in the new agreed startup message for the server. Adds additional links point to Minio SDKs as well.
This commit is contained in:
parent
0610527868
commit
3b69b4ada4
26
README.md
26
README.md
@ -98,20 +98,22 @@ Start minio server.
|
|||||||
~~~
|
~~~
|
||||||
$ minio server ~/Photos
|
$ minio server ~/Photos
|
||||||
|
|
||||||
AccessKey: WLGDGYAQYIGI833EV05A SecretKey: BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF Region: us-east-1
|
Endpoint: http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
|
||||||
|
AccessKey: USWUXHGYZQYFYFFIT3RE
|
||||||
|
SecretKey: MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
|
||||||
|
Region: us-east-1
|
||||||
|
|
||||||
Minio Object Storage:
|
Browser Access:
|
||||||
http://127.0.0.1:9000
|
http://10.0.0.10:9000 http://127.0.0.1:9000 http://172.17.0.1:9000
|
||||||
http://10.1.10.177:9000
|
|
||||||
|
|
||||||
Minio Browser:
|
Command-line Access: https://docs.minio.io/docs/minio-client-quick-start-guide
|
||||||
http://127.0.0.1:9000
|
$ ./mc config host add myminio http://10.0.0.10:9000 USWUXHGYZQYFYFFIT3RE MOJRH0mkL1IPauahWITSVvyDrQbEEIwljvmxdq03
|
||||||
http://10.1.10.177:9000
|
|
||||||
|
|
||||||
To configure Minio Client:
|
Object API (Amazon S3 compatible):
|
||||||
$ wget https://dl.minio.io/client/mc/release/darwin-amd64/mc
|
Go: https://docs.minio.io/docs/golang-client-quickstart-guide
|
||||||
$ chmod 755 mc
|
Java: https://docs.minio.io/docs/java-client-quickstart-guide
|
||||||
$ ./mc config host add myminio http://localhost:9000 WLGDGYAQYIGI833EV05A BYvgJM101sHngl2uzjXS/OBF/aMxAN06JrJ3qJlF
|
Python: https://docs.minio.io/docs/python-client-quickstart-guide
|
||||||
|
JavaScript: https://docs.minio.io/docs/javascript-client-quickstart-guide
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
#### How to use AWS CLI with Minio?
|
#### How to use AWS CLI with Minio?
|
||||||
@ -206,7 +208,7 @@ Bucket 's3://mybucket/' created
|
|||||||
To copy an object to bucket.
|
To copy an object to bucket.
|
||||||
```
|
```
|
||||||
$ s3cmd put newfile s3://testbucket
|
$ s3cmd put newfile s3://testbucket
|
||||||
upload: 'newfile' -> 's3://testbucket/newfile'
|
upload: 'newfile' -> 's3://testbucket/newfile'
|
||||||
```
|
```
|
||||||
|
|
||||||
To copy an object to local system.
|
To copy an object to local system.
|
||||||
|
93
checkport.go
Normal file
93
checkport.go
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
/*
|
||||||
|
* Minio Cloud Storage, (C) 2016 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"net"
|
||||||
|
"os"
|
||||||
|
"syscall"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Make sure that none of the other processes are listening on the
|
||||||
|
// specified port on any of the interfaces.
|
||||||
|
//
|
||||||
|
// On linux if a process is listening on 127.0.0.1:9000 then Listen()
|
||||||
|
// on ":9000" fails with the error "port already in use".
|
||||||
|
// However on Mac OSX Listen() on ":9000" falls back to the IPv6 address.
|
||||||
|
// This causes confusion on Mac OSX that minio server is not reachable
|
||||||
|
// on 127.0.0.1 even though minio server is running. So before we start
|
||||||
|
// the minio server we make sure that the port is free on all the IPs.
|
||||||
|
func checkPortAvailability(port int) {
|
||||||
|
isAddrInUse := func(err error) bool {
|
||||||
|
// Check if the syscall error is EADDRINUSE.
|
||||||
|
// EADDRINUSE is the system call error if another process is
|
||||||
|
// already listening at the specified port.
|
||||||
|
neterr, ok := err.(*net.OpError)
|
||||||
|
if !ok {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
osErr, ok := neterr.Err.(*os.SyscallError)
|
||||||
|
if !ok {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
sysErr, ok := osErr.Err.(syscall.Errno)
|
||||||
|
if !ok {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
if sysErr != syscall.EADDRINUSE {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
ifcs, err := net.Interfaces()
|
||||||
|
if err != nil {
|
||||||
|
fatalIf(err, "Unable to list interfaces.")
|
||||||
|
}
|
||||||
|
for _, ifc := range ifcs {
|
||||||
|
addrs, err := ifc.Addrs()
|
||||||
|
if err != nil {
|
||||||
|
fatalIf(err, "Unable to list addresses on interface %s.", ifc.Name)
|
||||||
|
}
|
||||||
|
for _, addr := range addrs {
|
||||||
|
ipnet, ok := addr.(*net.IPNet)
|
||||||
|
if !ok {
|
||||||
|
errorIf(errors.New(""), "Failed to assert type on (*net.IPNet) interface.")
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
ip := ipnet.IP
|
||||||
|
network := "tcp4"
|
||||||
|
if ip.To4() == nil {
|
||||||
|
network = "tcp6"
|
||||||
|
}
|
||||||
|
tcpAddr := net.TCPAddr{IP: ip, Port: port, Zone: ifc.Name}
|
||||||
|
l, err := net.ListenTCP(network, &tcpAddr)
|
||||||
|
if err != nil {
|
||||||
|
if isAddrInUse(err) {
|
||||||
|
// Fail if port is already in use.
|
||||||
|
fatalIf(err, "Unable to listen on %s:%.d.", tcpAddr.IP, tcpAddr.Port)
|
||||||
|
} else {
|
||||||
|
// Ignore other errors.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err = l.Close(); err != nil {
|
||||||
|
fatalIf(err, "Unable to close listener on %s:%.d.", tcpAddr.IP, tcpAddr.Port)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
192
server-main.go
192
server-main.go
@ -17,19 +17,16 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/minio/cli"
|
"github.com/minio/cli"
|
||||||
"github.com/minio/mc/pkg/console"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var serverCmd = cli.Command{
|
var serverCmd = cli.Command{
|
||||||
@ -113,35 +110,44 @@ func configureServer(srvCmdConfig serverCmdConfig) *http.Server {
|
|||||||
// getListenIPs - gets all the ips to listen on.
|
// getListenIPs - gets all the ips to listen on.
|
||||||
func getListenIPs(httpServerConf *http.Server) (hosts []string, port string) {
|
func getListenIPs(httpServerConf *http.Server) (hosts []string, port string) {
|
||||||
host, port, err := net.SplitHostPort(httpServerConf.Addr)
|
host, port, err := net.SplitHostPort(httpServerConf.Addr)
|
||||||
fatalIf(err, "Unable to parse host port.")
|
fatalIf(err, "Unable to parse host address.", httpServerConf.Addr)
|
||||||
|
|
||||||
switch {
|
if host != "" {
|
||||||
case host != "":
|
|
||||||
hosts = append(hosts, host)
|
hosts = append(hosts, host)
|
||||||
default:
|
return hosts, port
|
||||||
addrs, err := net.InterfaceAddrs()
|
}
|
||||||
fatalIf(err, "Unable to determine network interface address.")
|
addrs, err := net.InterfaceAddrs()
|
||||||
for _, addr := range addrs {
|
fatalIf(err, "Unable to determine network interface address.")
|
||||||
if addr.Network() == "ip+net" {
|
for _, addr := range addrs {
|
||||||
host := strings.Split(addr.String(), "/")[0]
|
if addr.Network() == "ip+net" {
|
||||||
if ip := net.ParseIP(host); ip.To4() != nil {
|
host := strings.Split(addr.String(), "/")[0]
|
||||||
hosts = append(hosts, host)
|
if ip := net.ParseIP(host); ip.To4() != nil {
|
||||||
}
|
hosts = append(hosts, host)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return hosts, port
|
return hosts, port
|
||||||
}
|
}
|
||||||
|
|
||||||
// Print listen ips.
|
// Finalizes the endpoints based on the host list and port.
|
||||||
func printListenIPs(tls bool, hosts []string, port string) {
|
func finalizeEndpoints(tls bool, apiServer *http.Server) (endPoints []string) {
|
||||||
for _, host := range hosts {
|
// Get list of listen ips and port.
|
||||||
if tls {
|
hosts, port := getListenIPs(apiServer)
|
||||||
console.Printf(" https://%s:%s\n", host, port)
|
|
||||||
} else {
|
// Verify current scheme.
|
||||||
console.Printf(" http://%s:%s\n", host, port)
|
scheme := "http"
|
||||||
}
|
if tls {
|
||||||
|
scheme = "https"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Construct proper endpoints.
|
||||||
|
for _, host := range hosts {
|
||||||
|
endPoints = append(endPoints, fmt.Sprintf("%s://%s:%s", scheme, host, port))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Success.
|
||||||
|
sort.Strings(endPoints)
|
||||||
|
return endPoints
|
||||||
}
|
}
|
||||||
|
|
||||||
// initServerConfig initialize server config.
|
// initServerConfig initialize server config.
|
||||||
@ -207,84 +213,25 @@ func checkServerSyntax(c *cli.Context) {
|
|||||||
|
|
||||||
// Extract port number from address address should be of the form host:port.
|
// Extract port number from address address should be of the form host:port.
|
||||||
func getPort(address string) int {
|
func getPort(address string) int {
|
||||||
_, portStr, err := net.SplitHostPort(address)
|
_, portStr, _ := net.SplitHostPort(address)
|
||||||
fatalIf(err, "Unable to parse host port.")
|
// If port empty, default to port '80'
|
||||||
|
if portStr == "" {
|
||||||
|
portStr = "80"
|
||||||
|
// if SSL is enabled, choose port as "443" instead.
|
||||||
|
if isSSL() {
|
||||||
|
portStr = "443"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return converted port number.
|
||||||
portInt, err := strconv.Atoi(portStr)
|
portInt, err := strconv.Atoi(portStr)
|
||||||
fatalIf(err, "Invalid port number.")
|
fatalIf(err, "Invalid port number.")
|
||||||
return portInt
|
return portInt
|
||||||
}
|
}
|
||||||
|
|
||||||
// Make sure that none of the other processes are listening on the
|
// serverMain handler called for 'minio server' command.
|
||||||
// specified port on any of the interfaces.
|
|
||||||
//
|
|
||||||
// On linux if a process is listening on 127.0.0.1:9000 then Listen()
|
|
||||||
// on ":9000" fails with the error "port already in use".
|
|
||||||
// However on Mac OSX Listen() on ":9000" falls back to the IPv6 address.
|
|
||||||
// This causes confusion on Mac OSX that minio server is not reachable
|
|
||||||
// on 127.0.0.1 even though minio server is running. So before we start
|
|
||||||
// the minio server we make sure that the port is free on all the IPs.
|
|
||||||
func checkPortAvailability(port int) {
|
|
||||||
isAddrInUse := func(err error) bool {
|
|
||||||
// Check if the syscall error is EADDRINUSE.
|
|
||||||
// EADDRINUSE is the system call error if another process is
|
|
||||||
// already listening at the specified port.
|
|
||||||
neterr, ok := err.(*net.OpError)
|
|
||||||
if !ok {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
osErr, ok := neterr.Err.(*os.SyscallError)
|
|
||||||
if !ok {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
sysErr, ok := osErr.Err.(syscall.Errno)
|
|
||||||
if !ok {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
if sysErr != syscall.EADDRINUSE {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
ifcs, err := net.Interfaces()
|
|
||||||
if err != nil {
|
|
||||||
fatalIf(err, "Unable to list interfaces.")
|
|
||||||
}
|
|
||||||
for _, ifc := range ifcs {
|
|
||||||
addrs, err := ifc.Addrs()
|
|
||||||
if err != nil {
|
|
||||||
fatalIf(err, "Unable to list addresses on interface %s.", ifc.Name)
|
|
||||||
}
|
|
||||||
for _, addr := range addrs {
|
|
||||||
ipnet, ok := addr.(*net.IPNet)
|
|
||||||
if !ok {
|
|
||||||
errorIf(errors.New(""), "Failed to assert type on (*net.IPNet) interface.")
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
ip := ipnet.IP
|
|
||||||
network := "tcp4"
|
|
||||||
if ip.To4() == nil {
|
|
||||||
network = "tcp6"
|
|
||||||
}
|
|
||||||
tcpAddr := net.TCPAddr{IP: ip, Port: port, Zone: ifc.Name}
|
|
||||||
l, err := net.ListenTCP(network, &tcpAddr)
|
|
||||||
if err != nil {
|
|
||||||
if isAddrInUse(err) {
|
|
||||||
// Fail if port is already in use.
|
|
||||||
fatalIf(err, "Unable to listen on %s:%.d.", tcpAddr.IP, tcpAddr.Port)
|
|
||||||
} else {
|
|
||||||
// Ignore other errors.
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err = l.Close(); err != nil {
|
|
||||||
fatalIf(err, "Unable to close listener on %s:%.d.", tcpAddr.IP, tcpAddr.Port)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func serverMain(c *cli.Context) {
|
func serverMain(c *cli.Context) {
|
||||||
// check 'server' cli arguments.
|
// Check 'server' cli arguments.
|
||||||
checkServerSyntax(c)
|
checkServerSyntax(c)
|
||||||
|
|
||||||
// Initialize server config.
|
// Initialize server config.
|
||||||
@ -296,18 +243,8 @@ func serverMain(c *cli.Context) {
|
|||||||
// Server address.
|
// Server address.
|
||||||
serverAddress := c.String("address")
|
serverAddress := c.String("address")
|
||||||
|
|
||||||
host, port, _ := net.SplitHostPort(serverAddress)
|
|
||||||
// If port empty, default to port '80'
|
|
||||||
if port == "" {
|
|
||||||
port = "80"
|
|
||||||
// if SSL is enabled, choose port as "443" instead.
|
|
||||||
if tls {
|
|
||||||
port = "443"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if requested port is available.
|
// Check if requested port is available.
|
||||||
checkPortAvailability(getPort(net.JoinHostPort(host, port)))
|
checkPortAvailability(getPort(serverAddress))
|
||||||
|
|
||||||
// Disks to be ignored in server init, to skip format healing.
|
// Disks to be ignored in server init, to skip format healing.
|
||||||
ignoredDisks := strings.Split(c.String("ignore-disks"), ",")
|
ignoredDisks := strings.Split(c.String("ignore-disks"), ",")
|
||||||
@ -322,47 +259,16 @@ func serverMain(c *cli.Context) {
|
|||||||
ignoredDisks: ignoredDisks,
|
ignoredDisks: ignoredDisks,
|
||||||
})
|
})
|
||||||
|
|
||||||
// Credential.
|
// Fetch endpoints which we are going to serve from.
|
||||||
cred := serverConfig.GetCredential()
|
endPoints := finalizeEndpoints(tls, apiServer)
|
||||||
|
|
||||||
// Region.
|
// Prints the formatted startup message.
|
||||||
region := serverConfig.GetRegion()
|
printStartupMessage(endPoints)
|
||||||
|
|
||||||
// Print credentials and region.
|
|
||||||
console.Println("\n" + cred.String() + " " + colorMagenta("Region: ") + colorWhite(region))
|
|
||||||
|
|
||||||
hosts, port := getListenIPs(apiServer) // get listen ips and port.
|
|
||||||
|
|
||||||
console.Println("\nMinio Object Storage:")
|
|
||||||
// Print api listen ips.
|
|
||||||
printListenIPs(tls, hosts, port)
|
|
||||||
|
|
||||||
console.Println("\nMinio Browser:")
|
|
||||||
// Print browser listen ips.
|
|
||||||
printListenIPs(tls, hosts, port)
|
|
||||||
|
|
||||||
console.Println("\nTo configure Minio Client:")
|
|
||||||
|
|
||||||
// Figure out right endpoint for 'mc'.
|
|
||||||
endpoint := fmt.Sprintf("http://%s:%s", hosts[0], port)
|
|
||||||
if tls {
|
|
||||||
endpoint = fmt.Sprintf("https://%s:%s", hosts[0], port)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Download 'mc' info.
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
console.Printf(" Download 'mc' from https://dl.minio.io/client/mc/release/%s-%s/mc.exe\n", runtime.GOOS, runtime.GOARCH)
|
|
||||||
console.Printf(" $ mc.exe config host add myminio %s %s %s\n", endpoint, cred.AccessKeyID, cred.SecretAccessKey)
|
|
||||||
} else {
|
|
||||||
console.Printf(" $ wget https://dl.minio.io/client/mc/release/%s-%s/mc\n", runtime.GOOS, runtime.GOARCH)
|
|
||||||
console.Printf(" $ chmod 755 mc\n")
|
|
||||||
console.Printf(" $ ./mc config host add myminio %s %s %s\n", endpoint, cred.AccessKeyID, cred.SecretAccessKey)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start server.
|
// Start server.
|
||||||
var err error
|
var err error
|
||||||
// Configure TLS if certs are available.
|
// Configure TLS if certs are available.
|
||||||
if isSSL() {
|
if tls {
|
||||||
err = apiServer.ListenAndServeTLS(mustGetCertFile(), mustGetKeyFile())
|
err = apiServer.ListenAndServeTLS(mustGetCertFile(), mustGetKeyFile())
|
||||||
} else {
|
} else {
|
||||||
// Fallback to http.
|
// Fallback to http.
|
||||||
|
92
server-startup-msg.go
Normal file
92
server-startup-msg.go
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
/*
|
||||||
|
* Minio Cloud Storage, (C) 2016 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/minio/mc/pkg/console"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Documentation links, these are part of message printing code.
|
||||||
|
const (
|
||||||
|
mcQuickStartGuide = "https://docs.minio.io/docs/minio-client-quick-start-guide"
|
||||||
|
goQuickStartGuide = "https://docs.minio.io/docs/golang-client-quickstart-guide"
|
||||||
|
jsQuickStartGuide = "https://docs.minio.io/docs/javascript-client-quickstart-guide"
|
||||||
|
javaQuickStartGuide = "https://docs.minio.io/docs/java-client-quickstart-guide"
|
||||||
|
pyQuickStartGuide = "https://docs.minio.io/docs/python-client-quickstart-guide"
|
||||||
|
)
|
||||||
|
|
||||||
|
// generates format string depending on the string length and padding.
|
||||||
|
func getFormatStr(strLen int, padding int) string {
|
||||||
|
formatStr := fmt.Sprintf("%ds", strLen+padding)
|
||||||
|
return "%" + formatStr
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prints the formatted startup message.
|
||||||
|
func printStartupMessage(endPoints []string) {
|
||||||
|
printServerCommonMsg(endPoints)
|
||||||
|
printCLIAccessMsg(endPoints[0])
|
||||||
|
printObjectAPIMsg()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prints common server startup message. Prints credential, region and browser access.
|
||||||
|
func printServerCommonMsg(endPoints []string) {
|
||||||
|
// Get saved credentials.
|
||||||
|
cred := serverConfig.GetCredential()
|
||||||
|
|
||||||
|
// Get saved region.
|
||||||
|
region := serverConfig.GetRegion()
|
||||||
|
|
||||||
|
endPointStr := strings.Join(endPoints, " ")
|
||||||
|
// Colorize the message and print.
|
||||||
|
console.Println(colorMagenta("\nEndpoint: ") + colorGreen(fmt.Sprintf(getFormatStr(len(endPointStr), 1), endPointStr)))
|
||||||
|
console.Println(colorMagenta("AccessKey: ") + colorWhite(fmt.Sprintf("%s ", cred.AccessKeyID)))
|
||||||
|
console.Println(colorMagenta("SecretKey: ") + colorWhite(fmt.Sprintf("%s ", cred.SecretAccessKey)))
|
||||||
|
console.Println(colorMagenta("Region: ") + colorWhite(fmt.Sprintf(getFormatStr(len(region), 3), region)))
|
||||||
|
|
||||||
|
console.Println(colorMagenta("\nBrowser Access:"))
|
||||||
|
console.Println(colorGreen(fmt.Sprintf(getFormatStr(len(endPointStr), 3), endPointStr)))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prints startup message for command line access. Prints link to our documentation
|
||||||
|
// and custom platform specific message.
|
||||||
|
func printCLIAccessMsg(endPoint string) {
|
||||||
|
// Get saved credentials.
|
||||||
|
cred := serverConfig.GetCredential()
|
||||||
|
|
||||||
|
// Configure 'mc', following block prints platform specific information for minio client.
|
||||||
|
console.Println(colorMagenta("\nCommand-line Access: ") + colorWhite(mcQuickStartGuide))
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
mcMessage := fmt.Sprintf("$ mc.exe config host add myminio %s %s %s", endPoint, cred.AccessKeyID, cred.SecretAccessKey)
|
||||||
|
console.Println(fmt.Sprintf(getFormatStr(len(mcMessage), 3), mcMessage))
|
||||||
|
} else {
|
||||||
|
mcMessage := fmt.Sprintf("$ ./mc config host add myminio %s %s %s", endPoint, cred.AccessKeyID, cred.SecretAccessKey)
|
||||||
|
console.Println(fmt.Sprintf(getFormatStr(len(mcMessage), 3), mcMessage))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prints startup message for Object API acces, prints link to our SDK documentation.
|
||||||
|
func printObjectAPIMsg() {
|
||||||
|
console.Println("\nObject API (Amazon S3 compatible):")
|
||||||
|
console.Println(" Go: " + fmt.Sprintf(getFormatStr(len(goQuickStartGuide), 8), goQuickStartGuide))
|
||||||
|
console.Println(" Java: " + fmt.Sprintf(getFormatStr(len(javaQuickStartGuide), 6), javaQuickStartGuide))
|
||||||
|
console.Println(" Python: " + fmt.Sprintf(getFormatStr(len(pyQuickStartGuide), 4), pyQuickStartGuide))
|
||||||
|
console.Println(" JavaScript: " + jsQuickStartGuide)
|
||||||
|
}
|
@ -44,12 +44,13 @@ func commonTime(modTimes []time.Time) (modTime time.Time) {
|
|||||||
return modTime
|
return modTime
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Beginning of unix time is treated as sentinel value here.
|
||||||
var timeSentinel = time.Unix(0, 0).UTC()
|
var timeSentinel = time.Unix(0, 0).UTC()
|
||||||
|
|
||||||
// Boot uuids upto disk count, setting the value to UUID sentinel.
|
// Boot modTimes up to disk count, setting the value to time sentinel.
|
||||||
func bootModtimes(diskCount int) []time.Time {
|
func bootModtimes(diskCount int) []time.Time {
|
||||||
modTimes := make([]time.Time, diskCount)
|
modTimes := make([]time.Time, diskCount)
|
||||||
// Boots up all the uuids.
|
// Boots up all the modtimes.
|
||||||
for i := range modTimes {
|
for i := range modTimes {
|
||||||
modTimes[i] = timeSentinel
|
modTimes[i] = timeSentinel
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user