diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2020-11-11 21:00:07 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-11 21:00:07 -0800 |
| commit | 4300ca814219105b5900ebeea28ee2d6a4ca34c2 (patch) | |
| tree | 93f66335a836af642216dc21a6c3f35c6ce88604 | |
| parent | 745ee8d8f30d2913148b8f35d682feb48f6ab18a (diff) | |
| download | seaweedfs-4300ca814219105b5900ebeea28ee2d6a4ca34c2.tar.xz seaweedfs-4300ca814219105b5900ebeea28ee2d6a4ca34c2.zip | |
Update README.md
| -rw-r--r-- | README.md | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -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. |
