From af7c0277ff1182ffacc9c549d5827690a383ec7d Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sun, 7 Nov 2021 12:36:38 -0800 Subject: [PATCH] fix wiki --- Cache-Remote-Storage.md | 2 +- Cloud-Drive-Architecture.md | 2 +- Mount-Remote-Storage.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cache-Remote-Storage.md b/Cache-Remote-Storage.md index d72cd82..263b662 100644 --- a/Cache-Remote-Storage.md +++ b/Cache-Remote-Storage.md @@ -12,7 +12,7 @@ In `weed shell`, checkout `remote.cache` and `remote.uncache`: remote.cache # cache the file content for mounted directories or files # assume a remote storage is configured to name "s3_1" - remote.configure -name=s3_1 -type=s3 -access_key=xxx -secret_key=yyy + remote.configure -name=s3_1 -type=s3 -s3.access_key=xxx -s3.secret_key=yyy # mount and pull one bucket remote.mount -dir=xxx -remote=s3_1/bucket diff --git a/Cloud-Drive-Architecture.md b/Cloud-Drive-Architecture.md index 6f3df1b..49f62a8 100644 --- a/Cloud-Drive-Architecture.md +++ b/Cloud-Drive-Architecture.md @@ -39,7 +39,7 @@ There are no directory or file format changes to existing data on the cloud. So The remote storage, e.g., AWS S3, can be [[configured|Configure Remote Storage]] and [[mounted|Mount Remote Storage]] directly to an empty folder in SeaweedFS. ``` # in "weed shell" -> remote.configure -name=cloud1 -type=s3 -access_key=xyz -secret_key=yyy +> remote.configure -name=cloud1 -type=s3 -s3.access_key=xyz -s3.secret_key=yyy > remote.mount -dir=/path/to/xxx -remote=cloud1/bucket ``` diff --git a/Mount-Remote-Storage.md b/Mount-Remote-Storage.md index 3966dde..5138fd5 100644 --- a/Mount-Remote-Storage.md +++ b/Mount-Remote-Storage.md @@ -16,7 +16,7 @@ Usage of remote.mount: remote.mount # mount remote storage and pull its metadata # assume a remote storage is configured to name "s3_1" - remote.configure -name=cloud1 -type=s3 -access_key=xyz -secret_key=yyy + remote.configure -name=cloud1 -type=s3 -s3.access_key=xyz -s3.secret_key=yyy # mount and pull one bucket remote.mount -dir=/xxx -remote=cloud1/bucket