Each instance has built in ssl keys, they are located at following:
/contract/cfg/tlscert.pem
/contract/cfg/tlskey.pem
Search found 18 matches
- Mon Oct 06, 2025 1:29 pm
- Forum: Evernode Tutorials & Ideas
- Topic: Built-in SSL file location
- Replies: 0
- Views: 49
- Wed Oct 01, 2025 11:11 pm
- Forum: Evernode Developing
- Topic: Cluster Violations
- Replies: 1
- Views: 13522
Re: Cluster Violations
Additionally, it seems like using the UNL keypairs for client-side communication alert violations too. Not always, but sometimes.
- Mon Sep 29, 2025 12:27 am
- Forum: Evernode Developing
- Topic: Cluster Violations
- Replies: 1
- Views: 13522
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...
- 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: 441
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
sed -i s/800000/1000000/ /etc/sashimono/sa.cfg
then reboot your node by writing reboot
- Fri Aug 08, 2025 10:18 pm
- Forum: Hosting An Evernode
- Topic: Adjust your journal so it generates logs easier
- Replies: 0
- Views: 221
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.
SystemMaxUse=50M
Afterwards roll a systemctl restart systemd-journald
This will make your evernode logs easier to be read.
- Fri Aug 08, 2025 9:59 pm
- Forum: Hosting An Evernode
- Topic: Get logs for troubleshooting
- Replies: 0
- Views: 221
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 ...
- Fri Sep 27, 2024 3:54 pm
- Forum: Evernode Tutorials & Ideas
- Topic: Evernode Decentralized Personal/Institutional Backup Service
- Replies: 2
- Views: 20218
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 !
- Wed Sep 11, 2024 12:20 am
- Forum: Evernode Developing
- Topic: Debug deployments on your evernode node
- Replies: 0
- Views: 8386
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...
- Sun Sep 01, 2024 11:49 pm
- Forum: Evernode Developing
- Topic: Got problems with evdevkit + windows?
- Replies: 0
- Views: 8369
Got problems with evdevkit + windows?
This might help you:
Go to your startmenu, write powershell, rightclick on it and open it as admin, then write "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine" and hit enter. This will allow your computer to work with scripts, in this case the evernode development kit.
Go to your startmenu, write powershell, rightclick on it and open it as admin, then write "Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine" and hit enter. This will allow your computer to work with scripts, in this case the evernode development kit.
- Wed Aug 28, 2024 3:17 pm
- Forum: Evernode Tutorials & Ideas
- Topic: Evernode PWA APP
- Replies: 4
- Views: 20887
Re: Evernode PWA APP
This is exactly possible, there's about 60 000 instances available for rent right now, and you can use a load balancer to direct traffic towards an other node if one is down. You can also use simple multiple A record solutions or other dns solutions to solve this issue :) It's important to treat eve...