Chapter 10. Working with Databases
In this chapter, we will cover:
- Installing a MariaDB database server
- Managing a MariaDB database
- Allowing remote access to a MariaDB server
- Installing a PostgreSQL server and managing a database
- Configuring remote access to a PostgresSQL
- Installing phpMyAdmin and phpPgAdmin
Introduction
This chapter is a collection of recipes that deliver the necessary steps to implement and maintain two of the most popular database management systems in the Linux world. The need for data is everywhere and is a must have service for almost any server, and this chapter provides the starting point required to deploy these database systems in any environment.
Installing a MariaDB database server
Supporting over 70 collations, more than 30 character sets, multiple storage engines, and deployment in virtualized environment, MySQL is a mission-critical database server that is used by production servers all over the world. It is capable of hosting a vast number of individual...