Skip to main content

Posts

Showing posts with the label phpMyAdmin

How To Install MariaDB and phpMyAdmin on Debian 9

The MariaDB database server is published as free and open source software under the General Public License version 2. It uses a relational database and SQL (Structured Query Language) to manage its data. MariaDB was forked from MySQL in 2009 due to licensing concerns. It can run on anything, anywhere – servers, virtual machines or containers, in a private data center or in the cloud (public, private or hybrid) – and is the default database on leading Linux distributions, including Red Hat Enterprise Linux/CentOS and SUSE Linux Enterprise. Installing MariaDB apt -y install mariadb-server nano /etc/mysql/mariadb.conf.d/50-server.cnf # line 111,112: change like this character-set-server  = utf8 # collation-server      = utf8mb4_general_ci systemctl restart mariadb Initial Settings for MariaDB: Since we are doing fresh installation, we'll need to run the included security script. This changes some of the less secure default option...