go-mmproxy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
go-mmproxy: command not found
or when using sudo you get the following error message
sudo: go-mmproxy: command not found
Solutions to go-mmproxy: command not found
How To Fix go-mmproxy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu go-mmproxy is provided by go-mmproxy package.
go-mmproxy is:
‘go-mmproxy’ is a standalone application that unwraps HAProxy’s PROXY-protocol so that the TCP connection to the end server comes from client’s - instead of proxy server’s - IP address and port number.
This is a Golang reimplementation of mmproxy created to improve on mmproxy’s runtime stability while providing potentially greater performance in terms of connection and packet throughput.
To fix this problem, we can install more using the command below.
sudo apt-get -y install go-mmproxy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install go-mmproxy.
sudo apt -y install go-mmproxy
Or if you have aptitude installed you can use the following command.
sudo aptitude install go-mmproxy
Summary
In this tutorial we learn how to fix go-mmproxy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.