Skip to content

Commit 337c9e4

Browse files
committed
docs(website): update DMQ configuration file in aggregator setup guide
1 parent db7e683 commit 337c9e4

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

docs/website/root/manual/operate/run-aggregator-node.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ Note that this guide works only on a Linux machine.
6060
- Operate a **Cardano full node**
6161

6262
- To access the file system of the **Cardano full node**, you will need the following permissions:
63-
6463
- Read rights on the `Database` folder (specified by the `--database-path` setting of the **Cardano node**)
6564
- Read and write rights on the `Inter Process Communication` file (typically defined by the `CARDANO_NODE_SOCKET_PATH` environment variable used to launch the **Cardano node**)
6665

@@ -278,7 +277,6 @@ The configuration values for the `/opt/mithril/mithril-aggregator.env` file are
278277
- `SIGNER_IMPORTER_RUN_INTERVAL`: Time interval at which the pools names and ticker in blockfrost will be imported (in minutes, default: `720`).
279278

280279
- The **Cardano database** configuration values are (only needed if supporting Cardano database certification):
281-
282280
- `DB_DIRECTORY`: Directory of the Cardano node database stores (same as the `--database-path` setting of the Cardano node)
283281
- `DATA_STORES_DIRECTORY`: Directory where the aggregator will store its databases (eg, `/opt/mithril/stores`)
284282
- `GOOGLE_APPLICATION_CREDENTIALS_JSON`: JSON content of the GCP service account credentials (required if using GCP for snapshot storage)
@@ -302,7 +300,6 @@ The configuration values for the `/opt/mithril/mithril-aggregator.env` file are
302300
Here is an **example** set of values for **release-preprod** that will be used in this guide in the **tip** boxes to illustrate some commands:
303301

304302
- **Base configuration**:
305-
306303
- **SIGNED_ENTITY_TYPES**: `MithrilStakeDistribution,CardanoStakeDistribution,CardanoTransactions` (only supporting stake distributions and transactions, excluding database snapshots)
307304
- **SERVER_PORT**: `8080`
308305
- **PUBLIC_SERVER_URL**: `https://aggregator.example.com/aggregator`
@@ -326,7 +323,6 @@ Here is an **example** set of values for **release-preprod** that will be used i
326323
- **SIGNER_IMPORTER_RUN_INTERVAL**: 720
327324

328325
- **Cardano database configuration**:
329-
330326
- **DB_DIRECTORY**: `/cardano/db`
331327
- **DATA_STORES_DIRECTORY**: `/opt/mithril/stores`
332328
- **GOOGLE_APPLICATION_CREDENTIALS_JSON**: `**YOUR_SECRET**`
@@ -1022,9 +1018,12 @@ bash -c 'cat > /opt/dmq/config.json << EOF
10221018
"SigSubmissionLogicTracer": true,
10231019
"SigSubmissionClientTracer": true,
10241020
"SigSubmissionServerTracer": true,
1021+
"SigSubmissionClientProtocolTracer": true,
1022+
"SigSubmissionServerProtocolTracer": true,
10251023
"MuxTracer": true,
1026-
"ChannelTracer": true,
1024+
"ChannelTracer": false,
10271025
"DebugPeerSelectionTracer": true,
1026+
"ValidationTracer": true
10281027
}
10291028
EOF'
10301029
```
@@ -1050,9 +1049,12 @@ bash -c 'cat > /opt/dmq/config.json << EOF
10501049
"SigSubmissionLogicTracer": true,
10511050
"SigSubmissionClientTracer": true,
10521051
"SigSubmissionServerTracer": true,
1052+
"SigSubmissionClientProtocolTracer": true,
1053+
"SigSubmissionServerProtocolTracer": true,
10531054
"MuxTracer": true,
1054-
"ChannelTracer": true,
1055+
"ChannelTracer": false,
10551056
"DebugPeerSelectionTracer": true,
1057+
"ValidationTracer": true
10561058
}
10571059
EOF'
10581060
```
@@ -1288,7 +1290,6 @@ If you want to make your follower aggregator publicly discoverable, you should:
12881290
1. **Ensure your aggregator is accessible via HTTPS** by setting up Traefik or another reverse proxy with a valid SSL certificate (as described in the [Set up the SSL certificate](#setup-the-ssl-certificate-traefik) section).
12891291
12901292
2. **Register your aggregator in the networks configuration**. You can do this by:
1291-
12921293
- Opening an issue in the [Mithril GitHub repository](https://github.com/input-output-hk/mithril/issues)
12931294
- Or by creating a pull request that modifies the [`networks.json`](https://github.com/input-output-hk/mithril/blob/main/networks.json) file and updates the `aggregators` field in the Cardano network you are targeting.
12941295

0 commit comments

Comments
 (0)