Skip to content

Guide and script to install Node.js (v18+) on Ubuntu Server 22.04 using NodeSource.

Notifications You must be signed in to change notification settings

pepe11166/Install-node-on-Ubuntu-Server-22.04

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 

Repository files navigation

πŸ“˜ Tutorial – Install Node on Ubuntu Server 22.04

Install a node for your coin on Ubuntu Server 22.04 by following the steps below:

βœ… Step 1: Update your Ubuntu server bash Copy Edit

sudo apt-get update && sudo apt-get upgrade -y

βœ… Step 2: Download the daemon bash Copy Edit

wget "https://dl.walletbuilders.com/download?customer=8488a66cf086ed7ef420d4c166af6447866634f64d49b90bc4&filename=pepehash-daemon-linux.tar.gz" -O pepehash-daemon-linux.tar.gz πŸ“¦ Extract the daemon archive: bash Copy Edit tar -xzvf pepehash-daemon-linux.tar.gz

βœ… Step 3: Download the wallet tools bash Copy Edit

wget "https://dl.walletbuilders.com/download?customer=8488a66cf086ed7ef420d4c166af6447866634f64d49b90bc4&filename=pepehash-qt-linux.tar.gz" -O pepehash-qt-linux.tar.gz πŸ“¦ Extract the tools archive: bash Copy Edit

tar -xzvf pepehash-qt-linux.tar.gz βœ… Step 4: Install binaries system-wide bash Copy Edit

sudo mv pepehashd pepehash-cli pepehash-tx /usr/bin/ βœ… Step 5: Create the data directory bash Copy Edit

mkdir $HOME/.pepehash βœ… Step 6: Configure your node Open nano:

bash Copy Edit

nano $HOME/.pepehash/pepehash.conf Paste the following configuration:

conf Copy Edit

rpcuser=rpc_pepehash

rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2

rpcbind=127.0.0.1

rpcallowip=127.0.0.1

listen=1

server=1

txindex=1

daemon=1

Save with: Ctrl + X, then press Y and Enter.

βœ… Step 7: Start your node bash Copy Edit pepehashd

Your PepeHash node is now running πŸŽ‰