Running a Pryzm node is crucial for participating in the Pryzm network. This guide covers various methods to set up and run a Pryzm node, including binary executions and Docker configurations.
./pryzmd [command] [flags]
. For starting the daemon, use ./pryzmd start
.pryzmd
to run as a systemd service for reliability.
/usr/bin
with cp pryzmd /usr/bin/
./etc/systemd/system/pryzmd.service
with appropriate configurations.sudo systemctl daemon-reload
sudo systemctl restart pryzmd
sudo systemctl enable pryzmd
journalctl -u pryzmd -f
$HOME/.pryzm/config
.
config.toml
: General settings.app.toml
: Application-specific settings.client.toml
: Pryzm client settings.europe-docker.pkg.dev/pryzm-zone/core/pryzmd:0.18.0
.docker-compose.yml
file for running Pryzmd with Docker Compose.docker-compose up -d
and verify with docker-compose ps
.$ node ./lib/vote.js [config file path]
to start the Pryzm feeder with the appropriate configuration.config.yaml
file, details of which can be obtained from the documentation resources page.docker-compose.yml
file tailored to running the pryzm-feeder.By following these guidelines, you can effectively set up and manage Pryzm nodes and feeders using both binary and Docker methods, ensuring robust participation in the Pryzm network.