besu-pro-testnet icon indicating copy to clipboard operation
besu-pro-testnet copied to clipboard

Users do not see their node on http://ethstats.lacchain.io/

Open eum602 opened this issue 5 years ago • 0 comments

After installing a node using ansible scripts, users are not able to see their running node on http://ethstats.lacchain.io/ , it would be great if a task in ansible could check if the service related to ethstats is running.

Manually users can solve this issue by running the following commands:

  • Enter to the remote VM => ssh
  • Enter as root => sudo -i
  • Check if docker related with ehtsats is running: docker ps
  • If you do not see any docker related to ethstats, then you can try to recreate the docker by running:
  • node_name=node_name_you_used_in_inventory;node_email=email_you_entered_in_inventory; mkdir -p /opt/ethstats-cli && docker run -d --restart always --net host -v /opt/ethstats-cli/:/root/.config/configstore/ alethio/ethstats-cli --register --account-email ${node_email} --node-name ${node_name} --server-url http://ethstats.lacchain.io:3000 --client-url ws://127.0.0.1:4546

make sure to replace node_name and node_email with your custom values

  • Finally make sure docker related to ethstats is running: docker ps

eum602 avatar Oct 25 '19 17:10 eum602