I have two spaces in my netdata cloud. I want to transfer one of my servers to another space. but somehow I couldn’t. I’m getting the space docker-compose file I want to transfer, but it still works in the old space. can someone help, how can I bring another space my Server?
You will still see the node as unreachable in the old space (we have temporarily disabled the functionality to remove obsolete nodes from the cloud, stay tuned).
i made a docker container exec and deleted the cloud.d file. The container stopped, then I deleted it.
i just ran docker-compose, but docker container is constantly just Restarting and not running.
run docker volume ls and find the lib volume, its name is USERNAME_netdatalib.
run docker compose down to stop the Netdata container.
run docker run -d --rm --name tmp -v USERNAME_netdatalib:/var/lib/netdata alpine sleep infinity (replace USERNAME_netdatalib with the actual volume name).
run docker exec -it tmp sh to enter the temp container
run rm /var/lib/netdata/registry/netdata.public.unique.id
exit from the container and run docker stop tmp
Now just run docker compose up to start the Netdata container, the problem should be fixed.