From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/rgw/driver/daos/README.md | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/rgw/driver/daos/README.md (limited to 'src/rgw/driver/daos') diff --git a/src/rgw/driver/daos/README.md b/src/rgw/driver/daos/README.md new file mode 100644 index 000000000..de6d215a0 --- /dev/null +++ b/src/rgw/driver/daos/README.md @@ -0,0 +1,47 @@ +# DAOS + +Standalone RADOS Gateway (RGW) on [DAOS](http://daos.io/) (Experimental) + +## CMake Option + +Add below cmake option + +```bash + -DWITH_RADOSGW_DAOS=ON +``` + +## Build + +```bash + cd build + ninja [vstart] +``` + +## Running Test cluster + +Edit ceph.conf to add below option + +```conf + [client] + rgw backend store = daos +``` + +Restart vstart cluster or just RGW server + +```bash + [..] RGW=1 ../src/vstart.sh -d +``` + +The above configuration brings up an RGW server on DAOS. + +## Creating a test user + + To create a `testid` user to be used for s3 operations, use the following command: + + ```bash +local akey='0555b35654ad1656d804' +local skey='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q==' + radosgw-admin user create --uid testid \ + --access-key $akey --secret $skey \ + --display-name 'M. Tester' --email tester@ceph.com --no-mon-config + ``` -- cgit v1.2.3