Smartnode Setup
1: Switch to root user, update your server and install Unzip and fail2ban.
sudo suapt update && sudo apt upgrade -y && sudo apt install -y unzip fail2ban2: Add a swap file
swapon --showsudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab3: Secure server: Enable UFW, open ports
sudo apt install ufw -y
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow ssh
sudo ufw allow 8788/tcp
sudo ufw enable4: Secure server: Enable UFW, open ports
5: Add a system user, create a Neoxa Directory and download the latest daemon
6: Setup wallet locally
7: Build protx command within your wallet
8: Complete Smartnode configuration on VPS
Last updated