Difference between revisions of "Mariadb101"
Unnilennium (talk | contribs) |
Unnilennium (talk | contribs) |
||
Line 6: | Line 6: | ||
<!-- we define the language --> | <!-- we define the language --> | ||
{{#vardefine:lang| {{lc: {{#titleparts: {{PAGENAME}} | | -1}} }} |en }} | {{#vardefine:lang| {{lc: {{#titleparts: {{PAGENAME}} | | -1}} }} |en }} | ||
− | + | {{Warning box|Mariadb 10.1 support ended 17 Oct 2020, see: [https://endoflife.date/mariadb], probably you prefer use one newer version available see [[Mariadb103]] or [[Mariadb105]]}} | |
{{Infobox contribs | {{Infobox contribs | ||
|name={{#var:contribname}} | |name={{#var:contribname}} |
Latest revision as of 20:02, 19 March 2022
mariadb101 logo | |
Maintainer | unnilennium |
---|---|
Url | https://mariadb.com |
Category | |
Tags | mariadb, mysql, db, database |
Maintainer
Version
Description
Koozali SME Server configuration package for mariadb101 RH SCLo This RPM will allow you to have 2 or more (if also using another contrib for another sclo version) versions of MySQL running side by side. You will have to select the one to use in the setup of the specific application - please see "usage" below. Please note that applications and contribs like phpmyadmin etc. will as standard use the original Mysql DBM for your OS unless you change the database connection.
Most of configuration options are explained for mysql/mariadb here : MySQL are also available for mariadb101 ( except innoDB options). Only difference is to prefix mariadb and mysql.init db entry by "mariadb101-". ie: mariadb101-mariadb and mariadb101-mysql.init
Note that on SME all mariadb service will share the same /etc/my.cnf configuration file. Generik part are read by all servers (eg: [mysqld] or [mariadb]), while specific version will only be read by the same version server (eg: [mariadb-10.1] for mariadb101). Also multiple for occurrence of one option where a server is able to read , the last one is used.
Note that default behaviour will be socket only, and if you enable networking, it will listen on default port on localhost. You then will need to open port to access remotely on LAN (private) or on web (public). Be careful that you need to manually configure yourself TLS encryption for mariadb before doing this kind of access as this is not part of base configuraiton and will leave your mysql traffic visible non encrypted.
Also if you want another port you need to define port to whatever you want. Also remember that default 3306 mysql port is reserved to original mariadb server
Installation
yum install smeserver-extrarepositories-centos-sclo yum --enablerepo=smecontribs install smeserver-mariadb101
then try PHPMyAdmin for better experience
Configuration
you can list the available configuration with the following command :
config show mariadb101-mariadb config show mariadb101-mysql.init
Some of the properties are not shown, but are defaulted in a template or a script. Here a more comprehensive list with default and expected values :
property mariadb101-mariadb | default | values | |
---|---|---|---|
LocalNetworkingOnly | yes | yes,no | default provides only socket acces |
TCPPort | port empty | keep empty for security prupose | |
port | port number | default 3310 if empty | |
access | private, public,'' | default empty for only localhost access | |
status | enabled | enabled,disabled |
property mariadb101-mysql.init | default | values | |
---|---|---|---|
status | enabled | enabled,disabled |
Usage
you can access using command line with the following commands, a few similar ones. in doubt you can use the --socket=/var/lib/mysql/mariadb101.sock after the mysql command you want.
mysql101 msqlshow101 mysqladmin101 mysqldump101 mysqlimport101 mysqlbinlog101
Alternatively:
The complete path to the specific version of mysql57 server with the mysql client would be:
/opt/rh/rh-mariadb101/root/usr/bin/mysql --socket=/var/lib/mysql/mariadb101.sock
or
mysql --socket=/var/lib/mysql/mariadb101.sock
For Wordpress adjust the DB_HOST value in the wp-config.php file accordingly.
define( 'DB_HOST', 'localhost:/var/lib/mysql/mariadb101.sock' );
or
define( 'DB_HOST', '127.0.0.1:/var/lib/mysql/mariadb101.sock' );
some other php app migh need something like
localhost;unix_socket=/var/lib/mysql/mariadb101.sock
Resetting the MySQL root password
To reset the password for the MySQL root account. The MySQL root user on SME Server has a random generated password which is generated during installation. You do not need to know this password to login to MySQL with root privileges on SME Server. If you might have changed the MySQL root password you can reset it like this after getting command line access as root user. Any restart of the server will do the job
systemctl restart mariadb101-mariadb.service
Uninstall
yum remove smeserver-mariadb101 rh-mariadb101*
Bugs
Please raise bugs under the SME-Contribs section in bugzilla
and select the smeserver-mariadb101 component or use this link
Below is an overview of the current issues for this contrib:
Changelog
Only released version in smecontrib are listed here.
2023/11/23 Jean-Philippe Pialasse 2.7.0-18.sme
- fix OpenFilesLimit too low preventing backup [SME: 12417]
- fix mariadb overriding skip-networking for other versions [SME: 12262]
- use dedicated log file for *mysql.init [SME: 11953]
- Fix init for MariaDB 104+ [SME: 11991]
- /usr/libexec/mysql-wait-stop not used after mariadb101 [SME: 11936]