Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweaks to node-operators.mdx #110

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions pages/dev-node/node-operators.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ apt install nano make build-essential gcc git jq chrony tar curl lz4 wget -y
sed -i '/^# Comma separated list of nodes to keep persistent connections to$/,/^$/ s/^persistent-peers = ""$/persistent-peers = "[email protected]:26656,[email protected]:26656"/' ~/.sei/config/config.toml
```

2. Enable `sei-db` (dependent on snapshot provider):
2. Enable `sei-db` (dependent on snapshot provider, must align with the format in which it was provided):
wojciech-sei marked this conversation as resolved.
Show resolved Hide resolved

```bash
sed -i 's/^sc-enable = false/sc-enable = true/' ~/.sei/config/app.toml
Expand Down Expand Up @@ -192,5 +192,5 @@ The standard service ports can be manually configured in `$HOME/.sei/config/conf
- `26660`: Tendermint Prometheus Metrics Exporter

<Callout type="info" emoji="📘">
The standard websocket rides on the same connection as the RPC server. Example: [non-TLS] `wss://localhost:26657/websocket`.
The standard websocket rides on the same connection as the RPC server. Example: [non-TLS] `ws://localhost:26657/websocket`.
</Callout>
Loading