mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05:00
minio: Fix documentation.
This commit is contained in:
parent
9206a6ade9
commit
b9aa6a03b8
@ -60,7 +60,7 @@ NOTE: Source installation is intended for only developers and advanced users.
|
|||||||
If you do not have a working Golang environment, please follow [Install Golang](./INSTALLGO.md).
|
If you do not have a working Golang environment, please follow [Install Golang](./INSTALLGO.md).
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ go get -u github.com/minio/minio
|
$ GO15VENDOREXPERIMENT=1 go get -u github.com/minio/minio
|
||||||
```
|
```
|
||||||
|
|
||||||
### How to use Minio?
|
### How to use Minio?
|
||||||
@ -102,9 +102,9 @@ To configure Minio Client.
|
|||||||
|
|
||||||
$ wget https://dl.minio.io:9000/updates/2015/Nov/linux-amd64/mc
|
$ wget https://dl.minio.io:9000/updates/2015/Nov/linux-amd64/mc
|
||||||
$ chmod 755 mc
|
$ chmod 755 mc
|
||||||
$ ./mc config host add localhost:9000 G5GJRH51R2HSUWYPGIX5 uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gFASuZ
|
$ ./mc config host add http://localhost:9000 G5GJRH51R2HSUWYPGIX5 uxhBC1Yscut3/u81l5L8Yp636ZUk32N4m/gFASuZ
|
||||||
$ ./mc mb localhost/photobucket
|
$ ./mc mb localhost:9000/photobucket
|
||||||
$ ./mc cp ~/Photos... localhost/photobucket
|
$ ./mc cp ~/Photos... localhost:9000/photobucket
|
||||||
|
|
||||||
Starting minio server:
|
Starting minio server:
|
||||||
Listening on http://127.0.0.1:9000
|
Listening on http://127.0.0.1:9000
|
||||||
|
@ -254,13 +254,13 @@ func initServer() *probe.Error {
|
|||||||
Println("\nTo configure Minio Client.")
|
Println("\nTo configure Minio Client.")
|
||||||
if runtime.GOOS == "windows" {
|
if runtime.GOOS == "windows" {
|
||||||
Println("\n\tDownload https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc.exe")
|
Println("\n\tDownload https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc.exe")
|
||||||
Println("\t$ mc.exe config host add localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey)
|
Println("\t$ mc.exe config host add http://localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey)
|
||||||
Println("\t$ mc.exe mb localhost/photobucket")
|
Println("\t$ mc.exe mb localhost/photobucket")
|
||||||
Println("\t$ mc.exe cp C:\\Photos... localhost/photobucket")
|
Println("\t$ mc.exe cp C:\\Photos... localhost/photobucket")
|
||||||
} else {
|
} else {
|
||||||
Println("\n\t$ wget https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc")
|
Println("\n\t$ wget https://dl.minio.io:9000/updates/2015/Nov/" + runtime.GOOS + "-" + runtime.GOARCH + "/mc")
|
||||||
Println("\t$ chmod 755 mc")
|
Println("\t$ chmod 755 mc")
|
||||||
Println("\t$ ./mc config host add localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey)
|
Println("\t$ ./mc config host add http://localhost:9000 " + conf.Credentials.AccessKeyID + " " + conf.Credentials.SecretAccessKey)
|
||||||
Println("\t$ ./mc mb localhost/photobucket")
|
Println("\t$ ./mc mb localhost/photobucket")
|
||||||
Println("\t$ ./mc cp ~/Photos... localhost/photobucket")
|
Println("\t$ ./mc cp ~/Photos... localhost/photobucket")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user