Posts

Showing posts from September, 2021

How To Install Docker on Ubuntu 20.04

  How To Install Docker on Ubuntu 20.04 This tutorial covers how to install Docker on an Ubuntu 20.04 Installing Docker on Ubuntu is fairly straightforward. We’ll enable the Docker repository, import the repository GPG key, and install the package. First, update the packages index and install the dependencies necessary to add a new HTTPS repository : sudo apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Import the repository’s GPG key using the following curl command: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Add the Docker APT repository to your system: sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" Now that the Docker repository is enabled, you can install any Docker version that is available in the repositories. To install the latest version of Docker, run the commands below. If you want to install a

How To Install & Configure Zabbix on Ubuntu

  How to Install Zabbix Server on Ubuntu 20.04 Zabbix is an open-source web-based monitoring tool for monitoring a diverse range of IT components. This includes network devices such as servers, virtual machines, and applications. It provides a plethora of monitoring metrics such as network utilization, CPU load, and disk utilization. This makes troubleshooting easier when the system is behaving abnormally. You can visualize the performance metrics in the form of graphs, screens, maps, and overviews. In this guide, we show you how to install Zabbix server 5. 4 on Ubuntu 20.04 LTS. https://www.zabbix.com/download?zabbix=5.0&os_distribution=ubuntu&os_version=20.04_focal&db=mysql&ws=apache Prerequisites Before getting started, ensure you have a running Ubuntu 20.04 instance with sudo privileges . Also, ensure you are connected to a stable internet connection. Step 1: Install and Setup Apache In this step, we install the Apache webserver. First, update al