aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2020-11-11 21:00:07 -0800
committerGitHub <noreply@github.com>2020-11-11 21:00:07 -0800
commit4300ca814219105b5900ebeea28ee2d6a4ca34c2 (patch)
tree93f66335a836af642216dc21a6c3f35c6ce88604
parent745ee8d8f30d2913148b8f35d682feb48f6ab18a (diff)
downloadseaweedfs-4300ca814219105b5900ebeea28ee2d6a4ca34c2.tar.xz
seaweedfs-4300ca814219105b5900ebeea28ee2d6a4ca34c2.zip
Update README.md
-rw-r--r--README.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/README.md b/README.md
index 71ca5cdf8..69857b524 100644
--- a/README.md
+++ b/README.md
@@ -58,11 +58,11 @@ Your support will be really appreciated by me and other supporters!
Table of Contents
=================
+* [Quick Start](#quick-start)
* [Introduction](#introduction)
* [Features](#features)
* [Additional Features](#additional-features)
* [Filer Features](#filer-features)
-* [Quick Start](#quick-start)
* [Example: Using Seaweed Object Store](#example-Using-Seaweed-Object-Store)
* [Architecture](#architecture)
* [Compared to Other File Systems](#compared-to-other-file-systems)
@@ -76,6 +76,13 @@ Table of Contents
* [Benchmark](#Benchmark)
* [License](#license)
+
+## Quick Start ##
+* Download the latest binary from https://github.com/chrislusf/seaweedfs/releases and unzip a single binary file `weed` or `weed.exe`
+* Run `weed server -dir=/some/data/dir -s3` to start one master, one volume server, one filer, and one S3 gateway.
+
+Also, to increase capacity, just add more volume servers by `weed volume -dir="/some/data/dir2" -mserver="<master_host>:9333" -port=8081` locally or a different machine. That is it!
+
## Introduction ##
SeaweedFS is a simple and highly scalable distributed file system. There are two objectives:
@@ -142,12 +149,6 @@ On top of the object store, optional [Filer] can support directories and POSIX a
[Back to TOC](#table-of-contents)
-## Quick Start ##
-* Download the latest binary from https://github.com/chrislusf/seaweedfs/releases and unzip a single binary file `weed` or `weed.exe`
-* Run `weed server -dir=/some/data/dir -s3` to start one master, one volume server, one filer, and one S3 gateway.
-
-Also, to increase capacity, just add more volume servers by `weed volume -dir="/some/data/dir2" -mserver="<master_host>:9333" -port=8081` locally or a different machine. That is it!
-
## Example: Using Seaweed Object Store ##
By default, the master node runs on port 9333, and the volume nodes run on port 8080.