Skip to main content

Troubleshooting

Less than 1 minute

Troubleshooting

Logging

To run the daemon with logging:

GOLOG_LOG_LEVEL=warn,signal/p2p=debug kube daemon

Reinstalling KUBE

In the rare case of breaking changes it might be required to manually remove KUBE from system services.

In order to do that use sudo kube uninstall command. If manual removal is required, a combination of commands can be used:

Darwin:

sudo kube stop
sudo rm /Library/LaunchDaemons/kube.plist

Linux:

sudo kube stop
service=kube.service;
sudo systemctl stop $service
sudo systemctl disable $service
sudo rm /etc/systemd/system/$service
sudo systemctl daemon-reload
sudo systemctl reset-failed