LogoLogo
  • Etho Protocol
  • Project Info
    • Getting Involved
      • How to Contribute to Docs
      • Docs Style Guide
    • Social Media
      • Discord (chat)
      • Telegram (chat/general)
      • Twitter
      • Reddit
    • Network Specifications
    • What do the Network Specifications Mean?
    • API documentation
    • Etho Explorer
      • Rich List
  • Governance
    • Etho Protocol Democratic Council
    • Etho Protocol Council Multisig Wallet
    • Etho Protocol ECP Logistics
      • Opening ECP Pull Request
  • Nodes
    • Nodes Introduction
    • Installing/Uninstalling Etho Protocol Nodes
      • Installing Etho Protocol Nodes
      • Installing Etho Protocol Nodes with Unit
      • Installing Etho Protocol Nodes with Alis
      • Installing Etho Protocol Nodes with Pecunia
      • Uninstalling Etho Protocol Nodes
    • Updating Etho Protocol Nodes
    • Upgrade Service Node or Masternode to Gateway Node
  • ethofs
    • ethoFS Introduction
    • How to Upload to ethoFS
      • How to Upload to ethoFS using our Website Upload App
    • How to Host a Website on ethoFS
    • How to attach your Website hosted on ethoFS to your own Domain
    • How to host your own ethoFS dashboard at home on macOS
    • NFT marketplace
  • Wallets
    • ETHO Wallets Introduction
    • Using Desktop Wallets
      • Using Windows ETHO Wallet
      • Deleting Desktop Wallet Chain Data
      • Backup your desktop wallets
  • Setup MetaMask For Etho Protocol
  • Wrap/Unwrap ETHO on the ETH/BSC/BASE network using the bridge
  • Exchanges
    • How to use Uniswap to provide liquidity | ETHO - ETH
  • Pools & Mining
    • Introduction to ETHO mining
    • SMOS ETHO Mining Guide
    • Windows ETHO Mining Guide (TeamRedMiner)
    • Windows ETHO Mining Guide (Claymore)
  • STAKING
    • How to stake ETHO
Powered by GitBook
On this page
  • Introduction
  • Disable Etho Protocol Services
  • Delete Application Data
  • Reversing The Process
  • Checking Etho Protocol Service Status

Was this helpful?

Export as PDF
  1. Nodes
  2. Installing/Uninstalling Etho Protocol Nodes

Uninstalling Etho Protocol Nodes

How to quickly disable the Etho Protocol Node services and delete the application data.

Introduction

Removing the Etho Protocol node services and data is as simple as disabling the services and deleting the application data. When you disable the services, they still exist on your system but they are not executed upon reboot.

This guide assumes you installed the Etho Protocol Node software as the ether1node user. If you installed the software as a different user, adjust the instructions accordingly, specifically on the last step replace /ether1node/ with the username for your Etho Protocol user.

Disable Etho Protocol Services

Regardless of which node you're running, executing all the following commands will disable all Etho Protocol Node services.

sudo systemctl stop ether1node
sudo systemctl disable ether1node

Delete Application Data

Delete all IPFS data and chain data by executing:

rm -rf /home/ether1node/.ipfs/*
rm -rf /home/ether1node/.ether1/*

Reversing The Process

If you've changed your mind and want to run the Etho Protocol Node (regardless of type) after all, you can reverse the whole process and return into a fully synchronized and running node by executing:

sudo systemctl enable ether1node
sudo systemctl start ether1node

Checking Etho Protocol Service Status

Whether you've decided to stick with your decision to disable the Etho Protocol Node services or decided to enable them again, you can use the commands below to determine their status.

Make sure the Etho Protocol processes are either running or not running by executing:

sudo journalctl -f -u ether1node

You should see no records indicating activity if the services are disabled. If you see activity, the services are running.

You can also check the operational status of the Etho Protocol Node services by executing:

sudo systemctl status ether1node

The first 2 commands are specifically for Gateway Nodes while the last one is common across all Etho Protocol nodes. If the services are disabled, that will be reflected in the status message returned.

PreviousInstalling Etho Protocol Nodes with PecuniaNextUpdating Etho Protocol Nodes

Last updated 4 years ago

Was this helpful?