English
Ask or search…
K
Links
Comment on page

Node Troubleshooting

Issues During Installation

Unable to download docker image
During the installation process, docker is used to download cess image. If the following error occurs when installing the cess-nodeadm:
Docker Daemon Issue
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.
Failed to locate docker package
If the following error occurs when installing the cess-nodeadm:
Docker Package Issue
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

Issues During Configuration

Failed to download CESS image
If the following error occurs when setting up the config:
CESS Image Download Issue
Ensure the commands are run in the root privilege or prefixed with sudo command.
Try cess config set command.
Invalid config file (config.yaml)
Invalid Config Issue
Delete file /usr/bin/yq:
sudo rm /usr/bin/yq
Reinstall cess-nodeadm again:
./install.sh