Categories: TutorialsUbuntu

How to Install Ginger Management Interface in Ubuntu 16.04

In this guide, we will be installing Ginger, Gingerbase, Wok and Nginx to make a simple to use Management Interface to manage your Ubuntu 16.04 Server where we can manage standard things in our system, like package management, Network interface settings, disks and mounts, User Management, Services, Among other things.

You can find more info on Ginger here

Installation

Connect to your server as the admin user via SSH.

ssh [email protected]

Update and upgrade your web server

sudo apt-get update && sudo apt-get upgrade -y

Install all the required components

sudo apt-get install nginx

wget https://github.com/kimchi-project/kimchi/releases/download/2.5.0/wok-2.5.0-0.noarch.deb

wget http://kimchi-project.github.io/gingerbase/downloads/latest/ginger-base.noarch.deb

wget http://kimchi-project.github.io/ginger/downloads/latest/ginger.noarch.deb
sudo dpkg -i wok-2.5.0-0.noarch.deb

sudo apt-get install -f

sudo dpkg -i ginger-base.noarch.deb

sudo apt-get install -f

sudo dpkg -i ginger.noarch.deb

sudo apt-get install -f

#If you have UFW enabled please add the port
sudo ufw allow 8001/tcp

#reboot here
sudo shutdown -r now
Sponsored

And that is it we now have a management page ready to go on the following port

https://Server_IP:8001

You should see the following

We need to log in using your normal ubuntu username and password.

Sponsored

Here is a look of a few of the things that we can manage using Ginger.

Main Dashboard

Repositories and Updates

Full System Configuration Backups and User Management

Disks and Storage

System Services

Loaded Modules Management

Ubuntu Server Admin

Recent Posts

Canonical announces 12 year Kubernetes LTS

Canonical’s Kubernetes LTS (Long Term Support) will support FedRAMP compliance and receive at least 12…

2 hours ago

Ubuntu Weekly Newsletter Issue 878

Welcome to the Ubuntu Weekly Newsletter, Issue 878 for the week of February 2 –…

20 hours ago

How your feedback shapes the way we support open source software

At Canonical, we firmly believe that delivering an outstanding, customer-centric support experience is impossible without…

1 day ago

How To Install osTicket v1.14 On Ubuntu 20.04

I want to share how to install osTicket v1.14 for Ubuntu 20.04 server. osTicket written…

2 days ago

How To Install WordPress On Ubuntu 20.04

Now I want to share how to install WordPress on ubuntu 20.04 server. WordPress is…

2 days ago

How To Install DNS Server (Bind9) On Ubuntu 20.04

Now I want to share the DNS server installation process on your Ubuntu 20.04 server.…

2 days ago