Search notes:

MariaDB

sudo apt-get install mariadb-server mariadb-client

Scripts, utilities etc

mysqld_safe: the recommended script to start mysqld
mysqladmin: adminstering mysqld: used to monitor sessions, show statistics, create and drop databases, flush logs, kill queries, stop the server etc.

Configuration files

Default options from the first file found in the following list (seems to be subject to changes over time)

Charactersets

Default ist latin 1. In order to use UTF-8, add
default-character-set = utf8mb4
to the [client] and [server] section in one of the configuration files

See also

/etc/mysql/mariadb.cnf, /etc/mysql/mariadb.conf.d

Index