Hello @fabrice ,
I need your help again on the node issue .
My node stopped syncing at v3.9.4 , then i tried checking the node.log folder and also my docker container folder which did not had much clue but below logs
Telemetry Disabled
++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++
Logging Starting
Telemetry Disabled
++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++
Logging Starting
Telemetry Disabled
++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++
Logging Starting
Telemetry Disabled
++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++
Logging Starting
Telemetry Disabled
++++++++++++++++++++++++++++++++++++++++
I upgraded the node to v3.14.2 and upgrade was successful but found the below 2 issues now.
- Node stopped syncing
- Node has stopped responding to v1 queries , but responds to v2 queries . Adding the details for v2 status query
{"catchpoint":"","catchpoint-acquired-blocks":0,"catchpoint-processed-accounts":0,"catchpoint-processed-kvs":0,"catchpoint-total-accounts":0,"catchpoint-total-blocks":0,"catchpoint-total-kvs":0,"catchpoint-verified-accounts":0,"catchpoint-verified-kvs":0,"catchup-time":0,"last-catchpoint":"27680000#NA63SDQJD63NR3QPNC2NXYV6FPUJWHNJY6DDAMGURQ76CT2MYUUQ","last-round":27685356,"last-version":"https://github.com/algorandfoundation/specs/tree/44fa607d6051730f5264526bf3c108d51f0eadb6","next-version":"https://github.com/algorandfoundation/specs/tree/44fa607d6051730f5264526bf3c108d51f0eadb6","next-version-round":27685357,"next-version-supported":true,"stopped-at-unsupported-round":false,"time-since-last-round":1375746501}
I tried - goal version -d /var/lib/algorand/
it gives a response [v2]
config.json contents
{
"Archival": true,
"GossipFanout": 4,
"BaseLoggerDebugLevel": 1,
"NetAddress": "",
"EndpointAddress": "0.0.0.0:8887",
"LogSizeLimit": 1073741824,
"EnableMetricReporting": false,
"EnableOutgoingNetworkMessageFiltering": true,
"EnableIncomingMessageFilter": false,
"CatchupParallelBlocks": 50,
"Version": 12,
"DNSSecurityFlags": 0
}
Docker file contents:
RUN apt-get update
RUN apt-get install -y gnupg2 curl software-properties-common
RUN curl -O https://releases.algorand.com/key.pub
RUN apt-key add key.pub
RUN add-apt-repository "deb https://releases.algorand.com/deb/ stable main"
RUN apt-get update
RUN apt-get install -y algorand
VOLUME ["/var/lib/algorand"]
EXPOSE 8887 8886 4160
ENTRYPOINT ["algod"]
Can you please help here