Page 1 of 1

Debug deployments on your evernode node

Posted: Wed Sep 11, 2024 12:20 am
by wroomwroom
You can debug deployments on your own evernode node by doing following:

Log into your node (ssh)

#1:
Write sudo evernode list to get a list of your tenants.

#2:
After that, write sudo -H -u <user> bash to log in as a tenant (remember to take the username from the list)

#3:
write docker logs <instance name> (you get the name of the instance from the sudo sashi list command aswell)

Re: Debug deployments on your evernode node

Posted: Wed Jul 15, 2026 8:25 pm
by wroomwroom
On Everpanel instances (with --sec--none)

use
docker service logs $(docker service ls -q)

instead of docker logs <instance name>



docker ps will hsow u the container id


docker exec containerid commands (e.g. ls) works


docker restart <contrainer>


good trick, do this:
lol="docker exec <containerid>"

then just write $lol ls for example to list files