Component | Requirement |
---|---|
Operating System (OS) | Ubuntu (Recommended) |
CPU Architecture | amd64 (x86 architecture) |
Storage | 100GB available storage |
Memory (RAM) | 4GB RAM |
Processor | 6 cores |
You can buy VPS from Contabo) using cryptocurrency.
First, install Docker in your system if it is not already installed by running the following command:
source <(wget -O - https://raw.githubusercontent.com/winsnip/privasea/refs/heads/main/docker.sh)
Add the current user to the Docker group:
sudo groupadd docker && sudo usermod -aG docker $(whoami) && newgrp docker
Pull the Docker image using the following command:
docker pull privasea/acceleration-node-beta:latest
waiting 20 secound
Create a directory for Privasea and navigate into it:
mkdir -p ~/privasea/config && cd ~/privasea
Run the following command to generate a new wallet keystore:
docker run --rm -it -v "$HOME/privasea/config:/app/config" privasea/acceleration-node-beta:latest ./node-calc new_keystore
Note: You need to input a password during this step. Save this password securely for future use. Also, note down the node address displayed during this process.
Move the generated keystore file to a specific location:
mv $HOME/privasea/config/UTC--* $HOME/privasea/config/wallet_keystore
Visit the Privanetix Dashboard) Dashboard to configure your node:
-
Connect a wallet to receive rewards.
-
Enter the node address you noted earlier.
-
Set up the node name and commission (e.g., 1%).
-
Click Set up my node.
Run the following command to start your Privasea Privanetix Node. Replace ENTER_YOUR_KEYSTORE_PASSWORD with the password you used earlier:
KEYSTORE_PASSWORD=ENTER_YOUR_KEYSTORE_PASSWORD && docker run -d --name privanetix-node -v "$HOME/privasea/config:/app/config" -e KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD privasea/acceleration-node-beta:latest