Justin Clift
885bac330b
Added a "catch all" documentation link ( #3038 )
...
This should help guide other newbies ;)
8 years ago
koolhead17
18be3bc95a
docs: added space in README.md so that its compatible with doctor. ( #2927 )
8 years ago
koolhead17
3349153058
docs: added space in source download steps so it appears as desired in ( #2923 )
...
doctor.
8 years ago
Harshavardhana
18d125ef1c
doc: Redo install instructions ( #2922 )
8 years ago
Harshavardhana
eb372d53df
Fix docker release titles
8 years ago
Harshavardhana
1788c58d5c
Add docker edge instructions
8 years ago
Harshavardhana
fdaa129a5b
Fix dockerfile container image. ( #2892 )
8 years ago
Anand Babu (AB) Periasamy
4560cbc20c
List docker as first example
8 years ago
Harshavardhana
a08052f640
Add docker pulls badge.
8 years ago
koolhead17
250ac644d6
docs: Modified README.md with alias addition and bucket creation steps. ( #2725 )
8 years ago
koolhead17
6ca57e81f1
docs: Fixed markdown typo in README.md. ( #2720 )
8 years ago
koolhead17
e273a40345
docs: Modified README.md by providing information about Minio server ( #2704 )
...
data directory.
8 years ago
Kartik Lunkad
19e01ceb19
QuickStart docs for Minio Server Setup needs update #2698 ( #2700 )
8 years ago
koolhead17
790ad68d4d
Doc: Fixed Minio install steps from source. ( #2590 )
8 years ago
Dee Koder
d9bd73f4e8
docs: Simplified install instructions for home-brew. ( #2571 )
8 years ago
koolhead17
8484d1c0ca
Doc: Modified README.md to add brew package manager install steps. ( #2557 )
8 years ago
koolhead17
a3c509fd23
Doc: Modified examples in how-to-run-multiple-minio-server-instances-on-single-machine.md ( #2497 )
8 years ago
GarimaKapoor
63bb78cfc6
Update README.md
8 years ago
GarimaKapoor
d2b924cca8
Added Goreportcard badge.
8 years ago
Dee Koder
2a920e568c
docs: Readded code coverage badge in github Readme. ( #2391 )
...
We have the fix in place to hide this on docs.minio.io
8 years ago
koolhead17
8c2985a9f5
Doc: README.md/Removed codecov badge from title. ( #2367 )
8 years ago
Harshavardhana
90c20a8c11
Add codecov for minio. ( #2359 )
8 years ago
Harshavardhana
3054b74260
docs: Fix startup message for server as well.
8 years ago
koolhead17
7d42d09da8
Doc: Replaced README & FreeBSD docs with updated minio server splash ( #2298 )
...
screen.
8 years ago
Dee Koder
04f90bd463
doc: Broken links fixed in the Explore further section. ( #2281 )
8 years ago
Harshavardhana
6c2fb19ed7
docs: Removed and purged uneeded docs. ( #2273 )
8 years ago
koolhead17
a7b5b8e63f
Doc: Modified the contents for Doctor. ( #2262 )
8 years ago
Dee Koder
41f4f2806d
screenshots: update with the latest optimized image. ( #2249 )
8 years ago
Dee Koder
e8155abc18
screenshot: Use the full path to the screenshot when embedding images ( #2239 )
8 years ago
Harshavardhana
cbb6b48b94
doc: update README.md
8 years ago
koolhead17
204ec2c6c0
doc:README.md/Updated to sync with docs.minio.io ( #2210 )
...
* doc:README.md/Updated to sync with docs.minio.io
* doc:README.me/Modified the minio server output terminal to reflect new release changes.
* docs:README.md/Modified and changed location of other markdown files.
8 years ago
Harshavardhana
3b69b4ada4
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.
8 years ago
Harshavardhana
18b3871705
Add erasure code.
9 years ago
Harshavardhana
f6013c46ea
Fix download link
9 years ago
koolhead17
d6e0f3ab33
added awscli commands & minor typo fix. ( #1578 )
9 years ago
koolhead17
9685f88b84
Added FreeBSD installation steps with ZFS. ( #1388 )
9 years ago
koolhead17
c3d0a3d51e
Update README.md
...
Our community contributor bought this to our attention so we have to add region as well in s3cmd config file.
9 years ago
Harshavardhana
8112291d43
Add FreeBSD binary link and make a release
9 years ago
Anand Babu (AB) Periasamy
4e6c4da518
Update README.md
9 years ago
Harshavardhana
484ba91b08
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)
9 years ago
Harshavardhana
1ef5ab3c28
docker: Fix docker command entry.
9 years ago
Harshavardhana
aaf97ea02c
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
~~~
9 years ago
koolhead17
7f993bb5e6
Update README.md
...
fixed missing spelling,
9 years ago
koolhead17
da691dc100
Update README.md
...
Added more s3cmd commands associated & known to work well with Minio server
9 years ago
Harshavardhana
2357e00317
Fix s3cmd config
9 years ago
GarimaKapoor
b37fbabe7f
Update README.md
9 years ago
Harshavardhana
9122f06307
Update README.md
9 years ago
Harshavardhana
9e10ee7e47
cpu: Remove pkg/cpu in favor of better klauspost/cpuid.
...
Fixes #1128
9 years ago
Harshavardhana
d55f72f09a
Add doc change.
9 years ago
Harshavardhana
cce2f41125
doc: Update readme.md
9 years ago