How to install Monkey webserver on linuxmint-18.03

To install Monkey web server on linuxmint-18.03
Monkey HTTP Server is a very fast and Lightweight Web Server for Linux operating system. It has been designed to be very scalable with low memory and CPU consumption and many more.

Installation

Download the monkey webserver using the following command.

linuxhelp ~ # wget -qO - http://apt.monkey-project.com/monkey.key | sudo apt-key add -
sudo: unable to resolve host linuxhelp
OK

Then, add the repository file monkey source file into source directory.
linuxhelp ~ # sh -c " echo ' deb http://apt.monkey-project.com/ubuntu wily main'  >  /etc/apt/sources.list.d/monkey.list" 

Update the system repository as follows

linuxhelp ~ # apt-get update
Hit:1 http://ppa.launchpad.net/ondrej/php/ubuntu xenial InRelease
Hit:2 http://archive.canonical.com/ubuntu xenial InRelease                                                
Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease                                                   
Ign:4 http://packages.linuxmint.com sylvia InRelease                                                      
Get:5 http://apt.monkey-project.com/ubuntu wily InRelease [2,676 B]                                       
Hit:6 http://packages.linuxmint.com sylvia Release                                             
Get:7 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]                     
.
.
.
Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [636 kB]                   
Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/universe i386 Packages [581 kB]                    
Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [256 kB]                   
Get:24 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7,400 B]                
Get:25 http://archive.ubuntu.com/ubuntu xenial-backports/universe i386 Packages [7,084 B]                 
Fetched 5,638 kB in 9s (590 kB/s)                                                                         
Reading package lists... Done

Install the monkey web server application.

linuxhelp ~ # apt-get install monkey -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  monkey
0 upgraded, 1 newly installed, 0 to remove and 353 not upgraded.
Need to get 917 kB of archives.
After this operation, 2,684 kB of additional disk space will be used.
Get:1 http://apt.monkey-project.com/ubuntu wily/main amd64 monkey amd64 1.6.8-1 [917 kB]
Fetched 917 kB in 4s (191 kB/s)
.
.
.
Selecting previously unselected package monkey.
(Reading database ... 221200 files and directories currently installed.)
Preparing to unpack .../monkey_1.6.8-1_amd64.deb ...
Unpacking monkey (1.6.8-1) ...
Processing triggers for systemd (229-4ubuntu21) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for man-db (2.7.5-1) ...
Setting up monkey (1.6.8-1) ...
Processing triggers for systemd (229-4ubuntu21) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...

Start and enable the monkey webserver service

linuxhelp ~ # systemctl start monkey.service 
linuxhelp ~ # systemctl enable monkey.service
Synchronizing state of monkey.service with SysV init with /lib/systemd/systemd-sysv-install...
Executing /lib/systemd/systemd-sysv-install enable monkey

Access the following URL from the browser http://ip-address or domain name

With this, the method to install Monkey web server on linuxmint-18.03 comes to an end.

Tag : Linux Mint
FAQ
Q
Can Update the system repository?
A
Run the following command:
# apt-get update
Q
How to install Monkey webserver on linuxmint?
A
Run the following command:
# apt-get install monkey
Q
How can i download the monkey web server package?
A
# wget -qO - http://apt.monkey-project.com/monkey.key | sudo apt-key add -
Q
What is Monkey Web server?
A
Monkey HTTP Server is a very fast and Lightweight Web Server for Linux operating system. It has been designed to be very scalable with low memory and CPU consumption and many more.
Q
How to Start and enable the monkey webserver service
A
Execute the following command:
# systemctl start monkey.service
# systemctl enable monkey.service