「MariaDB」の版間の差分

提供:MoodleDocs
移動先:案内検索
編集の要約なし
編集の要約なし
1行目: 1行目:
作成中です - [[利用者:Mitsuhiro Yoshida|Mitsuhiro Yoshida]] ([[利用者・トーク:Mitsuhiro Yoshida|トーク]])
作成中です - [[利用者:Mitsuhiro Yoshida|Mitsuhiro Yoshida]] ([[利用者・トーク:Mitsuhiro Yoshida|トーク]])


MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。It is considered to be more open and is being distributed as default MySQL compatible database by majority of modern linux distributions.
MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。MariaDBはさらにオープンであると考えられており、現在の主要Linuxディストリビューションに互換性のあるデフォルトのMySQLデータベースとして公開されています。It is considered to be more open and is being distributed as default MySQL compatible database by majority of modern linux distributions.


MariaDB is a drop-in replacement for Oracle MySQL, you can use it with any stable supported Moodle version using standard mysqli drivers.
MariaDB is a drop-in replacement for Oracle MySQL, you can use it with any stable supported Moodle version using standard mysqli drivers.

2018年7月26日 (木) 20:11時点における版

作成中です - Mitsuhiro Yoshida (トーク)

MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。MariaDBはさらにオープンであると考えられており、現在の主要Linuxディストリビューションに互換性のあるデフォルトのMySQLデータベースとして公開されています。It is considered to be more open and is being distributed as default MySQL compatible database by majority of modern linux distributions.

MariaDB is a drop-in replacement for Oracle MySQL, you can use it with any stable supported Moodle version using standard mysqli drivers.

MariaDBドライバ MariaDB driver

There is a dedicated driver for MariaDB. It is recommended to explicitly specify mariadb Moodle driver in config.php:

$CFG->dbtype = 'mariadb'; $CFG->dblibrary = 'native';

At the moment the driver is similar to MySQL but in the future the implementations may diverge significantly. Moodle MariaDB driver is not compatible with MyISAM database engine.

See MySQL for more information, the setup procedure is nearly identical.

FAQ

It fails during installation due to binlog_format configuration: In my.cnf file set binlog_format = ROW under [mysqld] and restart mysql service

関連情報