bookmark_borderInstalling and use Docker Compose on Ubuntu 21.04

Hello,
In this week’s feature highlight, we look at How to Install and use Docker Compose on Ubuntu 21.04

Installing Docker on Ubuntu

Check for system updates and install it.

apt update

apt upgrade

Install basic dependencies.

apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

Output:

root@vps:~# apt install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
ca-certificates is already the newest version (20210119build1).
ca-certificates set to manually installed.
curl is already 
Read More

bookmark_borderHow to Install Python 3.9 on Ubuntu 21.04

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

Ubuntu has had Python installed by default since at least version 8.04 and since 18.04 LTS the python included in the base system is Python 3.

Use python command to run commands for any older Python 2.x version, to run a command using the newer version, use python3.

You can check the python version by executing the following command.

python3 --version

If … Read More

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_borderAlmaLinux ISO is now available for KVM

Hello,

We’re happy to announce that AlmaLinux ISO is now available as an operating system choice for our KVM based plans in our control panel.

You can refer to the following guide to install the operating system on KVM based VPS’s,

https://wiki.crowncloud.net/?how_to_install_almalinux8_4stable

Or, choose our 1-click install template and have it online in minutes.

https://wiki.crowncloud.net/?Reinstalling_your_kvm_vm_on_crownpanelRead More

bookmark_borderRocky Linux ISO is now available for KVM

Hello,

We’re happy to announce that Rocky Linux ISO is now available as an operating system choice for our KVM based plans in our control panel.

You can refer to the following guide to install the operating system on KVM based VPS’s,

https://wiki.crowncloud.net/?How_to_Install_Rocky_Linux

Or, choose our 1-click install template and have it online in minutes.

https://wiki.crowncloud.net/?Reinstalling_your_kvm_vm_on_crownpanelRead More

bookmark_borderDebian 11 ISO is now available for KVM

Hello,

We’re happy to announce that Debian 11 Bullseye ISO is now available as an operating system choice for our KVM based plans in our control panel.

You can refer to the following guide to install the operating system on KVM based VPS’s,

https://wiki.crowncloud.net/?How_to_install_debian11

We’re also working on a 1-click install template which will be available soon for all users!

Stay tuned for further updates!… Read 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