Skip to content
Home » Nodes » Installing Penumbra Node and Running a Validator

Installing Penumbra Node and Running a Validator

The new version is available here:

Significant Update to the Penumbra Node Installation Script

Installation Script

To install a Penumbra node, run the following command:

curl -O https://nodes.bond/penumbra_64-0.sh && chmod +x penumbra_64-0.sh && ./penumbra_64-0.sh

This script sets up the necessary environment and installs Penumbra software.

Running the Validator

Before starting your validator, ensure you have test tokens. Request them in the Discord channel -testnet-faucet.

To initialize a validator, execute:

curl -O https://nodes.bond/penumbra_validator.sh && chmod +x penumbra_validator.sh && ./penumbra_validator.sh

Note on Commands

Use commands in the form:

./target/release/pcli query validator list -i

instead of:

pcli query validator list -i

To fix this, make sure pcli is installed and added to your PATH. Here’s how you can do this:

Locate the pcli executable:

find / -name pcli 2>/dev/null

Add the directory where pcli resides to your PATH: Suppose pcli is in /root/penumbra/target/release/, then:

echo "export PATH=\$PATH:/root/penumbra/target/release" >> $HOME/.profile
source $HOME/.profile

After that, try running the command again:

pcli query validator list -i

 

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *