Search found 38 matches

by wroomwroom
Fri Jul 17, 2026 2:52 am
Forum: Hpcore development
Topic: Filesync flaw potentially solved
Replies: 0
Views: 21

Filesync flaw potentially solved

Background: Sometimes when trying to sync an instance to a cluster you get error Error in getting dir metadata: /state/dir This error is caused by linux trying to inspect the state folder on the linux file system instead of the mount. Solution: src/hpfs/hpfs_serve.cpp LIne 324-328 struct stat st; if...
by wroomwroom
Wed Jul 15, 2026 8:57 pm
Forum: Evernode Developing
Topic: Cluster Violations
Replies: 2
Views: 17310

Re: Cluster Violations

Could be related to being online with the same public key from two different places! Not sure though!
by wroomwroom
Wed Jul 15, 2026 8:25 pm
Forum: Evernode Developing
Topic: Debug deployments on your evernode node
Replies: 1
Views: 10850

Re: Debug deployments on your evernode node

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...
by wroomwroom
Wed Jul 15, 2026 3:24 am
Forum: Hosting An Evernode
Topic: Common error: Freezing server when deploying
Replies: 0
Views: 45

Common error: Freezing server when deploying

A common error is that you experience that your server freeze when deploying.

You can limit your write speed to protect against slow disk + hardware raid cache being filled up. This will remove a lot of freeze lagg.

Image
by wroomwroom
Tue Jul 14, 2026 12:34 am
Forum: Hosting An Evernode
Topic: IO delay
Replies: 0
Views: 40

IO delay

A good initial way to troubleshoot IO delay in proxmox PVE shell:

Code: Select all

apt update && apt install -y iotop sysstat

Code: Select all

iostat -y -xzN 1

u want a low w_await, and if it goes to thousand+ u want that for a short period of time
by wroomwroom
Mon Jul 13, 2026 1:47 am
Forum: Hosting An Evernode
Topic: Failed to retrieve latest version data
Replies: 0
Views: 51

Failed to retrieve latest version data

"so, what happened here was, I did a evernode config command and stopped it right after tessucccess, and the xahau server halted at that point and the connection was busy for ALL evernode nodes!!! And the evernode nodes did not try the fallback server, they got that error, failed to retrieve la...
by wroomwroom
Fri Jul 10, 2026 11:38 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 25493

Re: How to install proxmox + xahau server + your first evernode VM

Make sure UFW is enabled and firewall is off in proxmox for the vm's!

Best is to enable ufw before installing.

And sometimes you need to edit your /etc/hosts file to have connectivity from the xahau machine to the evernode machines , and vice versa (point domains to local ips)
by wroomwroom
Thu Jul 02, 2026 2:21 pm
Forum: Hosting An Evernode
Topic: Alternative way to remove instance
Replies: 0
Views: 418

Alternative way to remove instance

sudo /usr/bin/sashimono/user-uninstall.sh user
by wroomwroom
Sun Jun 21, 2026 8:16 pm
Forum: Hosting An Evernode
Topic: Check docker rate limitation
Replies: 0
Views: 377

Check docker rate limitation

TOKEN=$(curl -s "https://auth.docker.io/token?service=registry.docker.io&scope=repository:ratelimitpreview/test:pull" | jq -r '.token') && RATE_LIMIT_REMAINING=$(curl --head -s -H "Authorization: Bearer $TOKEN" https://registry-1.docker.io/v2/ratelimitpreview/test/ma...
by wroomwroom
Tue May 26, 2026 7:37 am
Forum: Evdevkit developing
Topic: Sendmax flag
Replies: 1
Views: 464

Re: Sendmax flag

To get it working with aquire-and-deploy .option('-a, --contract-args [contract-args]', 'Contract binary arguments') .option('-m, --moments [moments]', 'Life moments') .option('-c, --contract-id [contract-id]', 'Contract id') .option('-i, --image [image]', 'Instance image') .action(acquireAndDeploy)...