bookmark_borderAnnouncing cPanel SSD Powered Shared and Reseller hosting available!

Greetings,

We’re happy to announce a performance upgrade to our cPanel ATL and DE shared and reseller hosting available in Frankfurt, DE, and Atlanta, US.

The cPanel powered services are now powered by SSD-based storage with a much newer CPU and faster DDR4 memory as well.

SSD disks should net a 5-10x performance gain allowing your websites to load faster and serve your users quicker. The improved CPU performance as well will enable websites to load faster and run more … Read More

bookmark_borderInstalling LAMP Stack with MariaDB on Ubuntu 21.04

Hello,
In this week’s feature highlight, we look at How to Install LAMP Stack with MariaDB on Ubuntu 21.04

Update the system

First, lets check for any pending system package updates,

apt update
apt upgrade

Install Apache

A command to install apache2 and with its utilities.

apt install -y apache2 apache2-utils

Next, check the Status of Apache.

systemctl status apache2

Output:

root@server:~# systemctl status apache2
● apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor prese>
     Active: active 
Read More

bookmark_borderInstalling WordPress on Ubuntu 21.04

Hello,

In this week’s feature highlight, we look at How to Install WordPress on Ubuntu 21.04

Prerequisites:

Creating database

Log into MySQL with the following command.

mysql

First, we’ll create a new database.

MariaDB [(none)]> CREATE DATABASE wordpress_db;

Next, create a new MySQL user account that we will use to operate on WordPress’s new database, with username “wordpress_user”.

MariaDB [(none)]> CREATE USER 
Read More

bookmark_borderInstalling LAMP Stack on Debian 11 bullseye

Hello,

In this week’s feature highlight, we look at How to Install LAMP Stack on Debian 11 bullseye

A LAMP stack is a group of open-source software that is typically installed together to enable a server to host dynamic websites and web apps. This term is actually an acronym which represents the Linux operating system, with the Apache web server. The site data is stored in a MariaDB database, and dynamic content is processed by PHP.

Update Debian 11 BullseyeRead More

bookmark_borderInstalling Joomla 4 on Ubuntu 21.04

Hello,

In this week’s feature highlight, we look at How to Install Joomla 4 on Ubuntu 21.04

Joomla is a free and open-source content management system for publishing web content on websites. Web content applications include discussion forums, photo galleries, e-Commerce, and user communities, and numerous other web-based applications.

Let us first check for any pending updates in the Ubuntu server and install if any are available.

apt update

apt upgrade

LAMP Stack Configuration

Joomla like any other CMS application, … Read More

bookmark_borderInstalling WordPress on Debian 11

Hello,

In this week’s feature highlight, we look at How to Install WordPress on Debian 11

Updating the system

We first update the system to make sure that all our installed packages are upto date. Your Debian system can be updated easily with the following command.

apt update

apt upgrade

Installing Nginx

We will start by installing the Nginx web server. To complete the installation, use the following command.

apt-get install nginx

Once the installation is complete, enable Nginx (to … Read More

bookmark_borderHow to Install Debian 11

Hello,

In this week’s feature highlight, we look at How to Install Debian 11

  • Login to CrownPanel for managing the server.
  • To start the installation, you will have to mount the Debian 11 ISO. To mount the ISO click on CD-ROM and then select the required ISO from the drop-down menu and click on Mount button(It will take 2-3 minutes) Deb11installer
  • Once it is mounted, click on Power Control and then Click on the Reboot button to reboot the server. You
Read More

bookmark_borderInstalling PostgreSQL in Rocky Linux 8

Hello,

In this week’s feature highlight, we look at How to Install PostgreSQL in Rocky Linux 8

PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.

List the PostgreSQL Module

List the PostgreSQL module by using the following command:

dnf module list postgresql

Output:

[root@server ~]# dnf module list postgresql
Last metadata expiration check: 2:22:31 ago on Fri 14 May 
Read More

bookmark_borderInstalling GNOME GUI on Rocky Linux 8

Hello,

In this week’s feature highlight, we look at GNOME GUI on Rocky Linux 8

To use Rocky Linux 8 in graphical mode, you will need to install GNOME package on the system to enable GUI. We will go through the steps required to install GNOME GUI.

Check the available package groups for Rocky Linux 8.

yum group list

Output:

[root@server ~]# yum group list
Last metadata expiration check: 0:01:49 ago on Fri 14 May 2021 10:00:46 AM EDT.
Available 
Read More

bookmark_borderInstalling OwnCloud on Rocky Linux 8

Hello,

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

OwnCloud is an open source project that can be installed on your server to securely store and access files. Also allows you to share and collaborate contents that lets teams work on data easily from anywhere, on any device.

Find out more about OwnCloud.

Prerequisites

Before we begin with installing ownCloud, you would need either a LAMP or LEMP Stack installed and … Read More