bookmark_borderNL1 Datacenter New Location Update

We are happy to announce that our NL1 datacenter is now located at the BiT datacenter in Ede, The Netherlands.

All existing customers of our NL1 setup are now located in the BiT datacenter, and any new order directed to the NL1 datacenter will be provisioned at this datacenter.

Datacenter Information:

Address: BIT datacenter Galileïlaan 19, 6716 BP Ede, Netherlands

Datacenter FeatureInformation
Fire detectionan independent, certified very early warning system with
automatic notification to fire brigade
Fire extinguishing
Read More

bookmark_borderInstalling LAMP Stack (MariaDB) on Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install LAMP Stack (MariaDB) on Ubuntu 22.10

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 MySQL or MariaDB database, and dynamic content is processed by PHP.

First, check … Read More

bookmark_borderInstalling Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install Ubuntu 22.10

Ubuntu is one of the most popular Linux distributions out there that is based on Debian and composed mostly of free and open-source software.

In this article, we will learn how to install Ubuntu 22.10 on a server.

Login to Crownpanel

Login to your CrownPanel account.

To start the installation, First, mount the Ubuntu 22.10 ISO.

To mount the ISO, click on CD-ROM and then select … Read More

bookmark_borderInstalling Python 3.10 on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install Python 3.10 on Rocky Linux 9

Python is an interpreted high-level general-purpose programming language. Its design philosophy emphasizes code readability with its use of significant indentation. Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.

First, check for any pending system updates,

dnf update

Install required packages.

dnf install gcc openssl-devel bzip2-devel libffi-devel zlib-devel wget 
Read More

bookmark_borderRunning your own self hosted Git service with Gitea on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at Running your own self hosted Git service with Gitea on Rocky Linux 9

Gitea is an open-source forge software package for hosting software development version control using Git as well as other collaborative features like bug tracking, wikis, and code review. It supports self-hosting but also provides a free public first-party instance hosted in China on DiDi’s cloud.

Prerequisites

  • Rocky Linux 9 installed
  • Full SSH root access.
  • Gitea supports the following
Read More

bookmark_borderInstalling Xrdp with GNOME GUI on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install Xrdp with GNOME GUI on Rocky Linux 9

Xrdp is a free and open-source implementation of the Microsoft RDP server that enables operating systems other than Microsoft Windows to provide a fully functional RDP-compatible remote desktop experience. In this article, we are going to learn how to install Xrdp with GNOME GUI on Rocky Linux 9. So, let’s get started.

Checkout the Xrdp Project Here.

Try this

Read More

bookmark_borderInstalling Composer on Rocky Linux 9

Hello,

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

Composer is 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 using the dnf package manager as shown below,

dnf install php

Output:

[root@server ~]# dnf install php
Last metadata expiration check: 2:53:03 ago on Tue 
Read More

bookmark_borderInstalling Let’s Encrypt SSL with LAMP Stack on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install Let’s Encrypt SSL with LAMP Stack on Rocky Linux 9


Let’s Encrypt is a non-profit certificate authority run by Internet Security Research Group that provides X.509 certificates for Transport Layer Security encryption at no charge. In this article, we are going to learn how to install Let’s Encrypt SSL on Rocky Linux 9. So, let’s get started.

Checkout the Let’s Encrypt SSL Project Here.

Get started with

Read More

bookmark_borderInstalling Joomla with LAMP Stack on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install Joomla with LAMP Stack on Rocky Linux 9

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, user communities, and numerous other web-based applications. In this article, we are going to learn how to install Joomla on Rocky Linux 9. So, let’s get started.

Checkout the Joomla Project Here.

Try this wiki

Read More

bookmark_borderInstalling LEMP Stack on Rocky Linux 9

Hello,

In this week’s feature highlight, we look at How to Install LEMP Stack on Rocky Linux 9

LEMP is a combination of free, open-source software. The acronym LEMP refers to the first letters of Linux (Operating system), Nginx Server, MySQL (database software), and PHP, PERL, or Python, principal components to build a viable general-purpose web server.

Update system

First, we will update the system to the latest with the following commands,

dnf update

Install Nginx Web Server

First, we … Read More