Skip to content

Commit db7e683

Browse files
committed
docs(website): update DMQ configuration file in signer setup guide
1 parent 98e7b1e commit db7e683

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

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

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,10 @@ Note that this guide works only on a Linux machine.
9999
:::
100100

101101
- To operate a **Cardano node** as a **stake pool**, you need:
102-
103102
- The pool's `operational certificate`
104103
- The pool's `KES secret key`
105104

106105
- To access the file system of the **Cardano block-producing** node for **production** deployment (or of the **Cardano relay** node for **naive** deployment), you will need the following permissions:
107-
108106
- Read rights on the `Database` folder (specified by the `--database-path` setting of the **Cardano node**)
109107
- 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**)
110108

@@ -548,7 +546,6 @@ sudo systemctl restart mithril-signer
548546
:::info
549547
550548
- If you have already installed `Squid` via the `apt` package manager, we recommend that you delete it before manually building it from source by running the following commands:
551-
552549
- `sudo systemctl stop squid`
553550
- `sudo apt remove squid`
554551
- `sudo apt autoremove`
@@ -1017,9 +1014,12 @@ bash -c 'cat > /opt/dmq/config-relay.json << EOF
10171014
"SigSubmissionLogicTracer": true,
10181015
"SigSubmissionClientTracer": true,
10191016
"SigSubmissionServerTracer": true,
1017+
"SigSubmissionClientProtocolTracer": true,
1018+
"SigSubmissionServerProtocolTracer": true,
10201019
"MuxTracer": true,
1021-
"ChannelTracer": true,
1020+
"ChannelTracer": false,
10221021
"DebugPeerSelectionTracer": true,
1022+
"ValidationTracer": true
10231023
}
10241024
EOF'
10251025
```
@@ -1045,9 +1045,12 @@ bash -c 'cat > /opt/dmq/config-relay.json << EOF
10451045
"SigSubmissionLogicTracer": true,
10461046
"SigSubmissionClientTracer": true,
10471047
"SigSubmissionServerTracer": true,
1048+
"SigSubmissionClientProtocolTracer": true,
1049+
"SigSubmissionServerProtocolTracer": true,
10481050
"MuxTracer": true,
1049-
"ChannelTracer": true,
1051+
"ChannelTracer": false,
10501052
"DebugPeerSelectionTracer": true,
1053+
"ValidationTracer": true
10511054
}
10521055
EOF'
10531056
```
@@ -1061,7 +1064,7 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10611064
{
10621065
"CardanoNetworkMagic": **YOUR_CARDANO_NETWORK_MAGIC**,
10631066
"CardanoNodeSocket": "**YOUR_CARDANO_NODE_SOCKET_PATH**"
1064-
"PeerSharing": true,
1067+
"PeerSharing": false,
10651068
"LocalMsgSubmissionTracer": true,
10661069
"LocalMsgNotificationTracer": true,
10671070
"ConnectionManagerTracer": true,
@@ -1073,9 +1076,12 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10731076
"SigSubmissionLogicTracer": true,
10741077
"SigSubmissionClientTracer": true,
10751078
"SigSubmissionServerTracer": true,
1079+
"SigSubmissionClientProtocolTracer": true,
1080+
"SigSubmissionServerProtocolTracer": true,
10761081
"MuxTracer": true,
1077-
"ChannelTracer": true,
1082+
"ChannelTracer": false,
10781083
"DebugPeerSelectionTracer": true,
1084+
"ValidationTracer": true
10791085
}
10801086
EOF'
10811087
```
@@ -1089,7 +1095,7 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10891095
{
10901096
"CardanoNetworkMagic": 2,
10911097
"CardanoNodeSocket": "/cardano/ipc/node.socket"
1092-
"PeerSharing": true,
1098+
"PeerSharing": false,
10931099
"LocalMsgSubmissionTracer": true,
10941100
"LocalMsgNotificationTracer": true,
10951101
"ConnectionManagerTracer": true,
@@ -1101,9 +1107,12 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
11011107
"SigSubmissionLogicTracer": true,
11021108
"SigSubmissionClientTracer": true,
11031109
"SigSubmissionServerTracer": true,
1110+
"SigSubmissionClientProtocolTracer": true,
1111+
"SigSubmissionServerProtocolTracer": true,
11041112
"MuxTracer": true,
1105-
"ChannelTracer": true,
1113+
"ChannelTracer": false,
11061114
"DebugPeerSelectionTracer": true,
1115+
"ValidationTracer": true
11071116
}
11081117
EOF'
11091118
```

0 commit comments

Comments
 (0)