Skip to content

The Ultimate Guide to Setting Up and Troubleshooting NodeOps Network (Formerly Atlas Node)

Notifications You must be signed in to change notification settings

winkzo/Nodeops-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

5 Commits
ย 
ย 

Repository files navigation

New-Project-6

๐ŸŒŒ The Ultimate Guide to Setting Up and Troubleshooting NodeOps Network (Formerly Atlas Node) ๐ŸŒŒ

Welcome to the definitive guide for running a node on NodeOps Network, the rebranded evolution of Atlas Node! Whether youโ€™re a beginner setting up your first node or an expert troubleshooting pesky issues like "Pending" status or leftover processes, this article is your one-stop resource. Packed with detailed steps, vibrant code blocks, and emoji-driven clarity, weโ€™ll ensure your node runs smoothly on a VPS. Letโ€™s get started! ๐Ÿš€

Current Date: February 24, 2025
Focus: NodeOps Network (formerly Atlas Node)


๐Ÿ“‹ Table of Contents

  1. ๐Ÿ” Step 1: Verify Your VPS Meets NodeOps Requirements
  2. ๐Ÿ”“ Step 2: Open Required Network Ports
  3. ๐Ÿ› ๏ธ Step 3: Update Your System
  4. ๐Ÿ“ด Step 4: Disable Swap (The Critical Fix)
  5. ๐Ÿ—‘๏ธ Step 5: Remove an Old Node (If Needed)
  6. โœ… Step 6: Install and Run Your NodeOps Node
  7. ๐Ÿ”ง Step 7: Troubleshoot Common Issues
  8. ๐Ÿ’ก Step 8: Tips for Long-Term Success

๐Ÿ’ฐ Step 0: Staking with Arbitrum Sepolia ETH

To fully activate your NodeOps node, youโ€™ll need to stake using Arbitrum Sepolia ETH and a you need small amount of real *0.001 ETH in Arbitrum one mainnet ** to get "Arbitrum Sepolia ETH" . Hereโ€™s how to handle this step smoothly!

Process

  1. Get Arbitrum Sepolia ETH:

    • Create a wallet (e.g., MetaMask ๐ŸฆŠ).
    • Visit the faucet: Alchemy Arbitrum Sepolia Faucet ๐Ÿ’ง.
    • Claim some testnet ETH for staking you need to have in your wallet a real *0.001 ETH in Arbitrum one mainnet ** to get "Arbitrum Sepolia ETH"" .
  2. Connect to NodeOps Testnet:

    • Head to testnet-providers.nodeops.network ๐ŸŒ.
    • Connect your wallet ๐Ÿ”—โ€”itโ€™s super easy!
  3. Stake Your Tokens:

    • Initial staking uses Arbitrum Sepolia ETH.
    • If you hit a snag (e.g., page freezes), hit F5 to reload ๐Ÿ”„.
    • After paying with Sepolia ETH, youโ€™ll be prompted for **0.005 Arbitrum Sepolia ETH **.
    • Reload again with F5 ๐Ÿ”„, then enter your username and email โœ๏ธ.
  4. Run Your Machine:

    • Once staked, your node will launchโ€”boom, youโ€™re live! ๐Ÿ˜Ž

Troubleshooting

  • Staking Fails? Reload the page (F5) and retry.
  • Need More Sepolia ETH? Revisit the faucet โฌ†๏ธ.
  • Check Logs:

๐Ÿ” Step 1: Verify Your VPS Meets NodeOps Requirements

Before diving into setup, confirm your VPS can handle NodeOps Network. Below are the minimum specs and commands to check them!

Minimum Requirements

  • CPUs or vCPUs: โ‰ฅ2
  • RAM: โ‰ฅ4GB
  • Storage: โ‰ฅ80GB NVMe SSD
  • Bandwidth: โ‰ฅ1Gbps unlimited
  • Uptime: โ‰ฅ99%
  • OS: Debian 12+ or Ubuntu 22.04+ with Linux kernel 6.1+

Verification Commands

1. Check CPU Cores

nproc
  • Expected: โ‰ฅ2 โœ…
  • Why: Ensures enough processing power.

2. Check RAM

free -m | awk '/Mem:/ {print $2}'
  • Expected: โ‰ฅ4096 MB (4GB) โœ…
  • Why: Confirms sufficient memory.

3. Check Storage

df -h / | awk 'NR==2 {print $2}'
  • Expected: โ‰ฅ80G โœ…
  • Why: Verifies enough disk space.

4. Check Network Speed

curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -
  • Expected: โ‰ฅ100MB or 1Gbps โœ…
  • Why: Ensures fast, unlimited bandwidth.

5. Check OS and Kernel

cat /etc/os-release; uname -r
  • Expected: Debian 12+ or Ubuntu 22.04+, kernel โ‰ฅ6.1 โœ…
  • Why: Ensures OS compatibility.

6. Check Security Updates

sudo apt update && apt list --upgradable
  • Expected: No critical updates pending โœ…
  • Why: Keeps your system secure.

๐Ÿ’ก Tip: If your VPS falls short, upgrade with providers like Contabo, Vultr, Hetzner, or DigitalOcean!


๐Ÿ”“ Step 2: Open Required Network Ports

NodeOps needs specific ports open to function. Letโ€™s configure your firewall based on your setup.

Required Ports

  • UDP: 8472, 51820, 51821
  • TCP: 10250

Port Opening Commands

1. Check Active Services

sudo netstat -tuln | grep -E '8472|10250|51820|51821'
  • Expected: Ports listed if services are running โœ…
  • Why: Confirms Cilium, Kubelet, and WireGuard are active.

2. For UFW Users

sudo ufw allow 8472/udp
sudo ufw allow 10250/tcp
sudo ufw allow 51820/udp
sudo ufw allow 51821/udp
sudo ufw reload
  • Why: Opens ports and reloads the firewall.

3. For iptables Users

sudo iptables -A INPUT -p udp --dport 8472 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 10250 -j ACCEPT
sudo iptables -A INPUT -p udp --dport 51820 -j ACCEPT
sudo iptables -A INPUT -p udp --dport 51821 -j ACCEPT
sudo iptables-save > /etc/iptables/rules.v4
  • Why: Adds rules and saves them persistently.

๐Ÿ› ๏ธ Step 3: Update Your System

A fresh system prevents compatibility issues. Hereโ€™s how to update and secure your VPS.

Update Commands

sudo apt update -y && sudo apt upgrade -y && \
UBUNTU_VERSION=$(lsb_release -rs | cut -d '.' -f1) && \
if [ "$UBUNTU_VERSION" = "20" ]; then \
  KERNEL_PACKAGE="linux-generic-hwe-20.04"; \
elif [ "$UBUNTU_VERSION" = "22" ]; then \
  KERNEL_PACKAGE="linux-generic-hwe-22.04"; \
elif [ "$UBUNTU_VERSION" = "24" ]; then \
  KERNEL_PACKAGE="linux-generic-hwe-24.04"; \
else \
  echo "Ubuntu Version Not Supported: $UBUNTU_VERSION"; \
  exit 1; \
fi && \
sudo apt-get install --install-recommends $KERNEL_PACKAGE -y && \
sudo apt autoremove --purge -y
  • Why: Updates packages, installs the latest kernel, and removes leftovers.

๐Ÿ“ด Step 4: Disable Swap (The Critical Fix)

NodeOps requires swap to be disabledโ€”hereโ€™s the most important step to fix "Pending" or "auto-restart" issues.

Commands to Disable Swap

1. Turn Off Swap Temporarily

sudo swapoff -a
  • Why: Disables swap immediately.

2. Verify Swap is Off

swapon --summary
  • Expected: No output โœ…
  • Why: Confirms swap is disabled.

3. Disable Swap Permanently

  • Edit /etc/fstab:
sudo nano /etc/fstab
  • Find the swap line (e.g., /swapfile none swap sw 0 0) and comment it out:
# /swapfile none swap sw 0 0
  • Save (Ctrl+O, Enter) and exit (Ctrl+X).

4. Reboot

sudo reboot
  • Why: Applies changes permanently.

๐Ÿ’ก Tip: After reboot, recheck with free -hโ€”swap should show 0 everywhere!


๐Ÿ—‘๏ธ Step 5: Remove an Old Node (If Needed)

Stuck with an old Atlas Node? Wipe it clean with this script.

Removal Script

#!/bin/bash
systemctl stop atlasnetwork-provider.service 2>/dev/null
systemctl disable atlasnetwork-provider.service 2>/dev/null
rm -f /etc/systemd/system/atlasnetwork-provider.service
systemctl daemon-reload
pkill -9 -f "atlas" 2>/dev/null
pkill -9 -f "containerd-shim" 2>/dev/null
rm -f /usr/local/bin/atlas*
rm -rf /.atlas-network
rm -rf /var/log/pods/atlasnetwork-system_net-check-*
rm -f /var/log/containers/net-check-nqm2d_atlasnetwork-system_net-check-*.log
rm -rf /sys/fs/cgroup/system.slice/atlasnetwork-provider.service
rm -rf /run/calico/cgroup/system.slice/atlasnetwork-provider.service
systemctl stop containerd 2>/dev/null
rm -rf /var/lib/rancher/k3s
rm -rf /run/k3s
rm -rf /etc/rancher
rm -f /usr/local/bin/k3s*
systemctl start containerd 2>/dev/null
sed -i '/vm.panic_on_oom/d' /etc/sysctl.d/90-kubelet.conf 2>/dev/null
sed -i '/vm.overcommit_memory/d' /etc/sysctl.d/90-kubelet.conf 2>/dev/null
sed -i '/kernel.panic/d' /etc/sysctl.d/90-kubelet.conf 2>/dev/null
sed -i '/kernel.panic_on_oops/d' /etc/sysctl.d/90-kubelet.conf 2>/dev/null
sysctl -p /etc/sysctl.d/90-kubelet.conf 2>/dev/null
swapon -a 2>/dev/null
reboot
  • Why: Completely removes old node files and reboots for a fresh start.

โœ… Step 6: Install and Run Your NodeOps Node

Now, letโ€™s get your new node up and running!

Installation Command

curl -L https://get.atlasnetwork.dev | sh -s - <YOUR_KEY>
  • Replace <YOUR_KEY> with your unique key from testnet-providers.nodeops.network.

Check Status

sudo systemctl status atlasnetwork-provider.service
  • Expected: Active: active (running) โœ…

๐Ÿ”ง Step 7: Troubleshoot Common Issues

Encountered a snag? Hereโ€™s how to fix common NodeOps problems.

Issue 1: "Pending" Status

  • Cause: Swap enabled or insufficient resources.
  • Fix:
    • Disable swap (Step 4).
    • Verify VPS specs (Step 1).
    • Restart service:
sudo systemctl restart atlasnetwork-provider.service

Issue 2: "Left-over Processes" Error

  • Cause: Unclean termination of previous runs.
  • Fix:
    • Kill processes:
sudo pkill -f atlasnetwork-provider
  • Restart service:
sudo systemctl restart atlasnetwork-provider.service

Issue 3: Node Stops After SSH Disconnect

  • Fix: Use tmux or nohup:
    • tmux:
tmux new -s atlas
<run your node command>
  • Detach: Ctrl+B, then D.
  • Reattach: tmux attach -t atlas.
  • nohup:
nohup <your-node-command> &

Check Logs for Errors

journalctl -u atlasnetwork-provider.service -f

๐Ÿ’ก Step 8: Tips for Long-Term Success

Keep your node humming with these pro tips!

  • Monitor Status:
sudo systemctl status atlasnetwork-provider.service
  • Check Resources:
free -h

or

top
  • Stay Updated: Regularly run system updates (Step 3).
  • One Node Per VPS: Avoid conflicts by running only one node per server.

๐Ÿ”ฅ๐Ÿš€ CRITICAL NODE RESET & STATUS CHECK GUIDE ๐Ÿš€๐Ÿ”ฅ (If Needed)


๐Ÿ”„ Restart Node Command:

sudo systemctl restart atlasnetwork-provider.service

๐Ÿ“ด Disable SWAP Temporarily

sudo swapoff -a

๐Ÿ” Check Node Status:

sudo systemctl status atlasnetwork-provider.service

๐Ÿ“œ (Optional) View Latest Logs:

journalctl -u atlasnetwork-provider.service --no-pager --lines=50

๐ŸŒŸ Final Words

Congratulations! Youโ€™ve now mastered setting up and troubleshooting a NodeOps Network node. From verifying your VPS to disabling swap and fixing issues, youโ€™re ready to contribute to the network like a pro. If you hit any roadblocks, revisit the steps or check the logsโ€”success is just a command away! ๐Ÿš€

LSG Nodeops team ! ๐Ÿ˜Ž

About

The Ultimate Guide to Setting Up and Troubleshooting NodeOps Network (Formerly Atlas Node)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published