bookmark_borderInstalling PHP 7.x on Rocky Linux 8

Hello,

In this week’s feature highlight, we look at How to Install PHP 7 x on Rocky Linux 8

Installing the EPEL and Remi Repository

For this we use the PHP 7.x packaged by Remi, a third-party repository which offers multiple versions of PHP 7.x and 8.x

First, lets install the EPEL repository,

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

Next, install the Remi repository with the following command,

yum install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm

List the available PHP module stream

To check/list the available PHP … Read More

bookmark_borderJune 2021 OpenVZ and KVM Templates Updated

Greetings,
As part of our commitment to provide you with the latest and most ready-to-use service, we’ve updated all our available templates to the latest available.

This template update process ensures that any new VPS deployed will come along with the latest available packages so you don’t have to spend time running a large initial update.

Templates for the following distributions/operating systems have been updated,

  • CentOS 7
  • CentOS 8
  • CentOS Stream 8
  • Debian 9
  • Debian 10
  • Ubuntu 18.04
  • Ubuntu 20.04
Read More

bookmark_borderInstalling Composer on Rocky Linux 8

Hello,

In this week’s feature highlight, we look at How to Composer on Rocky Linux 8

Composer is basically a dependency manager for the programming language, PHP. It functions as some sort of project manager that helps the programmer manage dependencies that will be used on a project to project basis.

Installing PHP

Install PHP by running the following command.

dnf install @php

Output:

[root@server ~]# dnf install @php
Last metadata expiration check: 0:50:18 ago on Thu 13 May 2021 
Read More

bookmark_borderInstalling Docker on Rocky Linux 8

Hello,

In this week’s feature highlight, we look at How to Docker on Rocky Linux 8

What is Docker?

Docker is basically a container engine which uses the Linux Kernel in order to create the containers on top of an operating system. Which is use to create, deploy and run applications in a containerized environment.

First, check and install any pending system updates.

yum update 

Adding Docker repository

Enable the Docker CE repository by running the following command.

dnf config-manager 
Read More

bookmark_borderInstalling Fail2Ban on Rocky Linux 8

Hello,

In this week’s feature highlight, we look at How to Fail2Ban on Rocky Linux 8

Fail2Ban is an intrusion prevention framework written in the Python programming language. It works by reading SSH, ProFTP, Apache logs, etc. And uses iptables profiles to block brute-force attempts.

To install Fail2ban, The EPEL repository needs to be installed first.

yum install epel-release

Note: It will prompt for several permission Press “y” and “Enter” to continue.

Next, install fail2ban package.

yum install fail2ban

Note:

Read More