Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The following packages are supported

- [renterd](https://github.com/SiaFoundation/renterd)
- [hostd](https://github.com/SiaFoundation/hostd)
- [s3d](https://github.com/SiaFoundation/s3d)
- [walletd](https://github.com/SiaFoundation/walletd)
Comment thread
peterjan marked this conversation as resolved.

## Adding the Repository
Expand Down Expand Up @@ -73,3 +74,19 @@ $ sudo systemctl enable --now hostd

If you want to install a different package just replace `hostd` in the
commands with a different package name.

### s3d

s3d needs to be registered with the indexer before the daemon can start.
`s3d login` walks you through the initial configuration and registers this
instance with the indexer. Run the following commands once before enabling the
service:

```bash
# configure s3d and register it with the indexer
$ sudo s3d login

# create a user and an S3 access key
$ sudo s3d users create <username>
$ sudo s3d keys create <username>
Comment thread
peterjan marked this conversation as resolved.
```