Hello everyone, I restored my old nodes that worked a year ago, launched them, the indicator shows a green sign. The nodes seem to be working, but there is no data exchange. What could be wrong? The ports on the router are open, and the firewall is configured. The command to configure node:
-
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; curl https://github.com/silos3/silo-release/releases/download/v1.0.0-P/trustkey_windows_amd64.exe.zip -o trustkey_windows_amd64.exe.zip; Expand-Archive ./trustkey_windows_amd64.exe.zip . -Force; Rename-Item -Path ./trustkey_windows_amd64.exe -NewName trustkey.exe
-
./trustkey.exe create silonode
-
./trustkey.exe authorize silonode netmanweb@y…
-
docker pull silos3/silo-node:latest
-
docker run --rm -e SETUP=“true” --mount type=bind,source=“C:\Users\Web\AppData\Roaming\Silo\Trustkey\silonode”,destination=/app/trustkey --mount type=bind,source=“E:\SILO”,destination=/app/config --name storagenode silos3/silo-node:latest
-
docker run -d --restart unless-stopped --stop-timeout 300 -p 28968:28967/tcp -p 28968:28967/udp -p 14002:14002 -e WALLET=“0x5bf65dec155a62b162734fb0049131fa95316c0a” -e EMAIL=“netmanweb@…” -e ADDRESS=“11.11.11.11:28968” -e STORAGE=“6TB” --mount type=bind,source=“C:\Users\Web\AppData\Roaming\Silo\Trustkey\silonode”,destination=/app/trustkey --mount type=bind,source=“E:\SILO”,destination=/app/config --name storagenode silos3/silo-node:latest
28968 the port has been changed because there are 3 nodes on one host.
