@@ -952,7 +952,7 @@ As we are still in a testing stage, we only support the `pre-release-preview` ne
952952
953953You can use these parameters for the ** pre-release-preview** network:
954954
955- - ** DMQ_RELEASE_URL** : ` https://github.com/input-output-hk/mithril/raw/refs/heads/jpraynaud/ dmq-node-binary/mithril-test-lab/mithril-devnet/bin/dmq-node- 0.2.0.0-53bf9652787dc768abd86cf3844f1206f0fd7d8c `
955+ - ** DMQ_RELEASE_URL** : ` https://github.com/IntersectMBO/ dmq-node/releases/download/ 0.2.0.0-pre-4/dmq-node-linux.tar.gz `
956956
957957_These URLs may change in the future; please refer to this page for the latest released version of the DMQ node binary._
958958
@@ -961,19 +961,29 @@ _These URLs may change in the future; please refer to this page for the latest r
961961To download the latest released version of the DMQ node binary, run the following command:
962962
963963` ` ` bash
964- curl --fail -sL -o dmq-node ** DMQ_RELEASE_URL**
964+ curl --fail -sL -o dmq-node.tar.gz ** DMQ_RELEASE_URL**
965965` ` `
966966
967- # ## Installing the service
967+ Then, extract the archive:
968+
969+ ` ` ` bash
970+ tar -xzf dmq-node.tar.gz --strip-components=2 result/bin
971+ ` ` `
972+
973+ And test that the binary works:
968974
969- # ### Make the binary executable
975+ ` ` ` bash
976+ ./dmq-node --version
977+ ` ` `
970978
971- To make the binary executable, run :
979+ You should see something like :
972980
973981` ` ` bash
974- chmod +x dmq-node
982+ dmq-node version: 0.2.0.0
975983` ` `
976984
985+ # ## Installing the service
986+
977987# ### Move the executable
978988
979989To move the executable to /opt/dmq, run:
@@ -1004,9 +1014,12 @@ bash -c 'cat > /opt/dmq/config-relay.json << EOF
10041014 "SigSubmissionLogicTracer": true,
10051015 "SigSubmissionClientTracer": true,
10061016 "SigSubmissionServerTracer": true,
1017+ "SigSubmissionClientProtocolTracer": true,
1018+ "SigSubmissionServerProtocolTracer": true,
10071019 "MuxTracer": true,
1008- "ChannelTracer": true ,
1020+ "ChannelTracer": false ,
10091021 "DebugPeerSelectionTracer": true,
1022+ "ValidationTracer": true
10101023}
10111024EOF'
10121025` ` `
@@ -1032,9 +1045,12 @@ bash -c 'cat > /opt/dmq/config-relay.json << EOF
10321045 "SigSubmissionLogicTracer": true,
10331046 "SigSubmissionClientTracer": true,
10341047 "SigSubmissionServerTracer": true,
1048+ "SigSubmissionClientProtocolTracer": true,
1049+ "SigSubmissionServerProtocolTracer": true,
10351050 "MuxTracer": true,
1036- "ChannelTracer": true ,
1051+ "ChannelTracer": false ,
10371052 "DebugPeerSelectionTracer": true,
1053+ "ValidationTracer": true
10381054}
10391055EOF'
10401056` ` `
@@ -1048,7 +1064,7 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10481064{
10491065 "CardanoNetworkMagic": **YOUR_CARDANO_NETWORK_MAGIC**,
10501066 "CardanoNodeSocket": "**YOUR_CARDANO_NODE_SOCKET_PATH**"
1051- "PeerSharing": true ,
1067+ "PeerSharing": false ,
10521068 "LocalMsgSubmissionTracer": true,
10531069 "LocalMsgNotificationTracer": true,
10541070 "ConnectionManagerTracer": true,
@@ -1060,9 +1076,12 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10601076 "SigSubmissionLogicTracer": true,
10611077 "SigSubmissionClientTracer": true,
10621078 "SigSubmissionServerTracer": true,
1079+ "SigSubmissionClientProtocolTracer": true,
1080+ "SigSubmissionServerProtocolTracer": true,
10631081 "MuxTracer": true,
1064- "ChannelTracer": true ,
1082+ "ChannelTracer": false ,
10651083 "DebugPeerSelectionTracer": true,
1084+ "ValidationTracer": true
10661085}
10671086EOF'
10681087` ` `
@@ -1076,7 +1095,7 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10761095{
10771096 "CardanoNetworkMagic": 2,
10781097 "CardanoNodeSocket": "/cardano/ipc/node.socket"
1079- "PeerSharing": true ,
1098+ "PeerSharing": false ,
10801099 "LocalMsgSubmissionTracer": true,
10811100 "LocalMsgNotificationTracer": true,
10821101 "ConnectionManagerTracer": true,
@@ -1088,9 +1107,12 @@ bash -c 'cat > /opt/dmq/config-bp.json << EOF
10881107 "SigSubmissionLogicTracer": true,
10891108 "SigSubmissionClientTracer": true,
10901109 "SigSubmissionServerTracer": true,
1110+ "SigSubmissionClientProtocolTracer": true,
1111+ "SigSubmissionServerProtocolTracer": true,
10911112 "MuxTracer": true,
1092- "ChannelTracer": true ,
1113+ "ChannelTracer": false ,
10931114 "DebugPeerSelectionTracer": true,
1115+ "ValidationTracer": true
10941116}
10951117EOF'
10961118` ` `
0 commit comments