apachetop command not found

In this troubleshooting guide we learn how to fix apachetop command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

apachetop: command not found

or when using sudo you get the following error message

sudo: apachetop: command not found

Solutions to apachetop: command not found

How To Fix apachetop: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu apachetop is provided by apachetop package.

apachetop is:

Apache top is a curses-based realtime utility to display information from a running copy of Apache.

It is modelled after the standard ’top’ utility, and displays information such as the requests pers second, bytes per second and the most popular URLs displayed.

It must be run from a machine running Apache, as it works by processing the logfiles found in /var/log/apache.

To fix this problem, we can install more using the command below.

sudo apt-get -y install apachetop

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install apachetop.

sudo apt -y install apachetop

Or if you have aptitude installed you can use the following command.

sudo aptitude install apachetop

Summary

In this tutorial we learn how to fix apachetop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.