adding a FAQ page (#120)

This commit is contained in:
Ivan FB 2024-09-02 21:40:27 +02:00 committed by GitHub
parent 99a876ecd3
commit 4e7549e672
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 52 additions and 0 deletions

48
FAQ.md Normal file
View File

@ -0,0 +1,48 @@
# Waku FAQ
- [Does my node work properly?](#Does-my-node-work-properly?)
- [My node is not able to start properly](#My-node-is-not-able-to-start-properly)
- [Does the running node have any incentives?](#Does-the-running-node-have-any-incentives?)
- [Error when running .register_rln.sh](#Error-when-running-.register_rln.sh)
- [Problem with Grafana](#Problem-with-Grafana)
----
### Does my node work properly?
Your node should have at least 40 connected peers and you should see some traffic in and out, in the Grafana board.
1. Run `docker ps` and check that the “[harbor.status.im/wakuorg/nwaku](http://harbor.status.im/wakuorg/nwaku)” container is not continuously restarting
2. Use the following commands to check the node better:
1. `curl -X GET http://localhost:8645/health`
2. `curl -X GET http://localhost:8645/debug/v1/info`
3. `curl -X GET http://localhost:8645/debug/v1/version`
4. `curl -X GET http://localhost:8645/admin/v1/peers`
5. `curl -X GET http://localhost:8645/admin/v1/filter/subscriptions`
6. `curl -X GET http://localhost:8003/metrics`
3. Check the following local services:
1. Grafana: [http://localhost:3000/](http://localhost:4000/)
2. Local node front end: http://localhost:4000/
### My node is not able to start properly
If you are using Contabo, we recommend moving to a different VPS vendor.
If not, remove the keystore and rln_tree folders, run the ./register_rln script again, and try to run your node again.
### Does running a node have any incentives?
There are currently no incentives in place, but it's something currently being researched and designed.
### Error when running .register_rln.sh
> ERR 2024-06-23 16:05:04.984+00:00 failure while initializing OnchainGroupManager topics="rln_keystore_generator" tid=1 file=rln_keystore_generator.nim:61 error="Failed to get the chain id: Forbidden"
There is a problem with you EthClient account.
Take a closer look on how you set the values of the .env file paying attention to example, and make sure you have a valid EthClient.
### Does my Grafana looks right?
It should look like:
http://5.196.26.230:3000/d/yns_4vFVk/nwaku-monitoring?orgId=1&refresh=1m

View File

@ -94,3 +94,7 @@ For nodes running on `v0.30` or newer, updating the node is as simple as running
2. `docker-compose down`
3. `git pull origin master`
4. `docker-compose up -d`
-----
# FAQ
[see](FAQ.md)