[General] external node v28.7.0 alpha for another chain, failed to start #1056
-
Team or ProjectNo response ZK chainEra EnvironmentMainnet L2 block numberNo response Provide a brief description of the functionality you're trying to implement and the issue you are running into.Hello I am working on another chain (Sophon) that uses zksync external node. I am also requesting help from the dev team, but I figured asking experts here would certainly be great too. Currently I am facing an issue when starting the node, with snapshot sync off, syncing from genesis. All files are taken from the repository linked above. This is what my docker-compose is right now, I realized that the generate secrets are generating with logs included which leads to an error, but that's not my main issue.
Before this, I was running v28.6.0 fine with snapshot recov. When I started a new node without snapshot recov, I received errors
Hence now I am trying out v28.7.0-alpha without snapshot recov. I followed this and the next chapter. I tried adding in "genesis_spec" to my mainnet_consensus_config.yaml
But overall, I was not able to get my node to start up. Would appreciate assistance, thank you! Repo Link (Optional)No response Additional DetailsNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hello @donavernokg, let's address your original issue:
These errors occur if you have a service running that is bound to some port, and then another service (like the EN component you're trying to run) tries to bind to the same port and fails.
The issue with yaml,
Seems to be caused by a malformed yaml config. Please check your file has any control characters unsupported by the yaml specification. They can sometimes be caused by editing in some GUI editors. Please feel free to unanswer this discussion if you have any further issues. |
Beta Was this translation helpful? Give feedback.
Thanks for the swift response. Before starting the nodes, I checked that all ports are not used. The example above are ports that I checked after the start-up.
It seems to be an issue with my config having
debug_page_addr: '0.0.0.0:5000'
changing the ip/port does not have an effect, but removing this does fix my issue. Although I will have to figure out what it is used for. Thank you