Comment on page
Node Troubleshooting
During the installation process, docker is used to download cess image. If the following error occurs when installing the
cess-nodeadm
:

Make sure commands are in the root privilege or prefixed with
sudo
command. Start docker on your system:systemctl start docker
Reinstall the
cess-nodeadm
:./install.sh
⚠️ Note that most CESS program commands must have root privileges.
If the following error occurs when installing the
cess-nodeadm
:

Try to delete Docker with following commands:
sudo systemctl stop docker
docker stop $(docker ps -aq)
docker rm -v $(docker ps -aq)
docker rmi $(docker images -aq)
docker volume rm $(docker volume ls -q)
brew uninstall docker
Reinstall Docker:
sudo apt-get install docker-ce
sudo systemctl enable docker
sudo systemctl start docker
Last modified 1mo ago