bookmark_borderInstalling LAMP Stack with MariaDB on Ubuntu 23.04

Hello,

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

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, … Read More

bookmark_borderInstalling PostgreSQL on Ubuntu 22.10

Hello,

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

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.

Install PostgreSQL

Install PostgreSQL on Ubuntu by using the following command

apt update

apt install postgresql postgresql-contrib

Output:

root@crown:~# apt install postgresql postgresql-contrib
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The 
Read More

bookmark_borderInstalling PhpMyAdmin in Ubuntu 22.10

Hello,

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

In this guide, we will demonstrate how PhpMyAdmin is installed on a Ubuntu 22.10 system. PhpMyAdmin requires a standalone Database or as part of the LEMP stack, installed and running on the system beforehand.

Prerequisites:

Server with Apache, PHP, and MariaDB. You can find our LAMP Installation guide here.

Installing PhpMyAdmin

apt install phpmyadmin

Output:

root@crown:~# apt install phpmyadmin
Reading package lists... Done
Read More