How to uninstall Edge Orchestrator Agent

To uninstall Azion Edge Orchestrator Agent:

  1. Access your device from which you want to remove the agent.
  2. Open the terminal and go to the folder where the agent is installed.
  3. Run:
Terminal window
sudo ./edge-orchestrator uninstall

Output:

Terminal window
Edge Orchestrator was uninstalled successfully

From this moment on, your node won’t receive updates anymore.


  1. Access Azion Console > Edge Nodes.
  2. Find the edge node you wish to remove.
  3. Hover over the edge node and click on the icon of a trash can.
  4. Confirm the deletion by entering the word delete.
  1. Run the following GET request in your terminal, replacing [TOKEN VALUE] with your personal token and retrieve the edge node ID you wish to delete:
Terminal window
curl --location 'https://api.azionapi.net/edge_nodes/' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]'
  1. Run the following DELETE request in your terminal, replacing [TOKEN VALUE] with your personal token and :id with the edge node ID:
Terminal window
curl --location --request DELETE 'https://api.azionapi.net/edge_nodes/:id' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]'

Contributors