HowtoForge provides user-friendly Linux tutorials.
-
How to Install TeamPass Password Manager on Ubuntu 20.04
Author: Hitesh Jethva • Tags: linux, security, ubuntu • Comments: 1TeamPass is a Collaborative Passwords Manager used for managing passwords and sharing them among team members. In this tutorial, we will be going to show you how to install TeamPass Password Manager on Ubuntu 20.04 with Let's Encrypt SSL.
-
How to Install Rudder System Auditing Tool on Ubuntu 20.04
Author: Hitesh Jethva • Tags: linux, monitoring, ubuntu • Comments: 1Rudder is a free, open-source and multi-platform tool that helps you to automate system configuration across large IT infrastructures. It is an IT Infrastructure Automation & Compliance tool that allows you to manage and maintain your production infrastructure via its auditing feature.
-
How to Install Lighttpd with PHP-FPM and MySQL on Ubuntu 20.04 LTS
Author: Muhammad Arul • Tags: linux, ubuntu, web server • Comments: 0In this tutorial, we will show you how to install and configure the LLMP Stack on the Ubuntu 20.04 Server. We will install the Lighttpd web server with the MariaDB database server and the PHP-FPM on the latest version of the Ubuntu 20.04 server.
-
-
How to Install LiteCart e-commerce platform on Ubuntu 20.04 LTS
Author: Hitesh Jethva • Tags: linux, ubuntu, web server • Comments: 0LiteCart is an open-source and lightweight e-commerce platform in written in PHP, HTML 5, and CSS 3. It is simple, easy to use, and has an elegant and simple admin panel. In this tutorial, we will show you how to install LiteCart shopping cart platform on Ubuntu 20.04.
-
InitContainers in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0Init containers are used to set up custom code that is not present in an app image. Init containers can be used to offer a mechanism to block or delay app container startup until a set of preconditions are met.
-
How to Install GitLab with Docker on Ubuntu 20.04 LTS
Author: Muhammad Arul • Tags: linux, programming, server, ubuntu • Comments: 3In this tutorial, we will show you how to install GitLab using the Docker and Docker Compose. Also, we will be using the Ubuntu 20.04 as our primary operating system, and install docker from the official Ubuntu FocalFossa repository.
-
How to create Multi-Container Pods in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 0Pods usually have a single container i.e. single container pods are the most common use case and it is not necessary to have a single container in the pod. One of the reasons to use a multi-container pod is simpler communication between containers. In this article, we will create a pod with 2 containers inside it. This example will help to understand the creation of a pod with multiple containers.
-
How to Setup an iSCSI Storage Server on Ubuntu 20.04 LTS
Author: Hitesh Jethva • Tags: linux, storage, ubuntu • Comments: 7iSCSI stands for Internet Small Computer System Interface is a Storage Area Network protocol that can be used to share block devices such as HDD/SSD partitions, or LVM partitions, or block files on the network. In this tutorial, we will explain how to setup iSCSI targets and iSCSI initiator on Ubuntu 20.04 server.
-
How to Install a CentOS 8 Minimal Server
Author: Till Brehm • Tags: centos, linux, server • Comments: 2This document describes the basic installation of a CentOS 8 server in detail with many screenshots. The purpose of this guide is to provide a minimal setup that can be used as basis for all kinds of CentOS server setups.
-
How to use Node Selectors in Kubernetes
Author: Rahul Shivalkar • Tags: cloud • Comments: 2We can restrict a Pod to only be able to run on a particular Node. In this article, we will create pods to see them get deployed on the worker as well as the master node, then we will attach a label to the master node and point pods to get deployed on the master node only using the nodeSelector.