Search found 20 matches

by wroomwroom
Mon Nov 17, 2025 3:30 pm
Forum: EverPanel
Topic: Config Location
Replies: 0
Views: 41

Config Location

Config is located at...
/etc/sashimono/mb-xrpl/mb-xrpl.cfg
by wroomwroom
Tue Oct 28, 2025 2:05 am
Forum: Evernode Developing
Topic: Nodejs script for fetching node list from registry
Replies: 0
Views: 335

Nodejs script for fetching node list from registry

Just do a npm i evernode-js-client Run the script with node scriptname.js (and wait an hour for it to load all nodes) const fs = require("fs"); const evernode = require("evernode-js-client"); async function main() { evernode.Defaults.set({ governorAddress: "rBvKgF3jSZWdJcwSs...
by wroomwroom
Mon Oct 06, 2025 1:29 pm
Forum: Evernode Tutorials & Ideas
Topic: Built-in SSL file location
Replies: 0
Views: 410

Built-in SSL file location

Each instance has built in ssl keys, they are located at following:
/contract/cfg/tlscert.pem
/contract/cfg/tlskey.pem
by wroomwroom
Wed Oct 01, 2025 11:11 pm
Forum: Evernode Developing
Topic: Cluster Violations
Replies: 1
Views: 13854

Re: Cluster Violations

Additionally, it seems like using the UNL keypairs for client-side communication alert violations too. Not always, but sometimes.
by wroomwroom
Mon Sep 29, 2025 12:27 am
Forum: Evernode Developing
Topic: Cluster Violations
Replies: 1
Views: 13854

Cluster Violations

Violations are different "metrics" HotPocket uses to identify bad network peers. Violation means that peer has displayed some undesired network activity like sending malformed messages, abruptly dropping connection etc... Multiple repeated violations within a short time period will cause t...
by wroomwroom
Fri Aug 15, 2025 1:13 am
Forum: Hosting An Evernode
Topic: How to allocate full cpu instead of just 80% of it
Replies: 0
Views: 758

How to allocate full cpu instead of just 80% of it

First, write
sed -i s/800000/1000000/ /etc/sashimono/sa.cfg

then reboot your node by writing reboot
by wroomwroom
Fri Aug 08, 2025 10:18 pm
Forum: Hosting An Evernode
Topic: Adjust your journal so it generates logs easier
Replies: 0
Views: 507

Adjust your journal so it generates logs easier

in the file, /etc/systemd/journald.conf you can uncomment and set the following setting:
SystemMaxUse=50M

Afterwards roll a systemctl restart systemd-journald

This will make your evernode logs easier to be read.
by wroomwroom
Fri Aug 08, 2025 9:59 pm
Forum: Hosting An Evernode
Topic: Get logs for troubleshooting
Replies: 0
Views: 507

Get logs for troubleshooting

Reputation logs: sudo -u sashireputationd bash -c 'journalctl --user -u sashimono-reputationd | tail -n 250' sudo -u sashimbxrpl bash -c 'journalctl -u sashimono-agent.service | tail -n 100' sudo -u sashimbxrpl bash -c 'journalctl --user -u sashimono-mb-xrpl | tail -n 100' Sometimes you need to run ...
by wroomwroom
Fri Sep 27, 2024 3:54 pm
Forum: Evernode Tutorials & Ideas
Topic: Evernode Decentralized Personal/Institutional Backup Service
Replies: 2
Views: 20661

Re: Evernode Decentralized Personal/Institutional Backup Service

A starting point here would be to have GPG encryption done on client side, that way the files are safely stored on evernode without risking getting compromised !
by wroomwroom
Wed Sep 11, 2024 12:20 am
Forum: Evernode Developing
Topic: Debug deployments on your evernode node
Replies: 0
Views: 8653

Debug deployments on your evernode node

You can debug deployments on your own evernode node by doing following: Log into your node (ssh) #1: Write sudo sashi 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 n...