LAMP server setup on Ubuntu 22.04 Jammy Jellyfish

Ubuntu 22.04 LAMP installation

A LAMP stack is an assortment of software that contains everything you need in order to serve a website, show dynamic content, and store or retrieve data from a database. The software is all within the LAMP acronym, namely the Linux operating system, Apache web server, MySQL database (or MariaDB alternatively), and PHP programming language.

Read more

Graphical user interface (GUI) applications for managing MySQL

Graphical user interface (GUI) applications for managing MySQL

When working with MySQL, it can be very difficult to visualize an entire database of information, especially if there are relational databases that all work in tandem to present data. Fortunately for us, there are numerous GUI based applications that can be downloaded and installed on a Linux system that make the process of managing databases much easier. Many users prefer interacting with MySQL through a GUI rather than a command line, where it is difficult to visualize multiple columns of data and understanding how they correspond to each other.

Read more

How to setup Linux Apache Mysql Python server

How to setup Linux Apache Mysql Python server

Apache, MySQL, and Python can be used in tandem to host and serve a website from a Linux system. This assortment of software is known as a LAMP stack (Linux, Apache, MySQL, Python) although sometimes the ‘P’ means PHP, which can either be used in addition to or as a replacement of Python. Apache serves the website, MySQL stores and retrieves information from a database, and Python can generate HTML and related code for the site’s visitors to view.

Read more

Mysql server has gone away - Fix

Mysql server has gone away – Fix

The MySQL server has gone away error can occur when you have an established connection to the MySQL server and for one reason or another, the connection times out or otherwise goes down. In the context of a Linux system, the error can sometimes be seen from the MySQL client. In this tutorial, we will show several solutions for dealing with and troubleshooting the MySQL error.

Read more

Allowing MySQL connections through firewall and creating a new user that allows connections from all hosts

MySQL: Allow all hosts

If you wish to access your MySQL server remotely, it will be necessary to configure one or more users to allow access from remote hosts. If you do not know all the IP addresses of the connecting hosts, then you can simply allow connections from all hosts.

Read more