☑️Limiting your CPU usage
Quilibrium will use 90-100% of your CPU power all the time. Take precautions to avoid being banned by your provider (or damaging your machine).
Steps to follow
Get your number of vCores by running nproc
Open your service file
nano /lib/systemd/system/ceremonyclient.service
Add this line in the [Service] section (adjust the percentage as needed)
CPUQuota=1120% # Adjust the percentage as needed
Here is how the file should look like
[Unit]
Description=Ceremony Client Go App Service
[Service]
Type=simple
Restart=always
RestartSec=5s
WorkingDirectory=/root/ceremonyclient/node
ExecStart=/root/ceremonyclient/node/release_autorun.sh #this line may be different for some of you
CPUQuota=1120% # Adjust the percentage as needed
[Install]
WantedBy=multi-user.target
To save press CTRL + X, then Y, then ENTER
Reload your systemd manager configuration
systemctl daemon-reload
Restart your service
service ceremonyclient restart
Done!
Check your server performance:
Monitor the node log to ensure everything is functioning correctly:
sudo journalctl -u ceremonyclient.service -f --no-hostname -o cat
I also like to use Hetrixtools to monitor system resources more closely (free to use on up to 15 servers)
Last updated