MariaDB

提供:MoodleDocs
2018年8月1日 (水) 15:11時点におけるMitsuhiro Yoshida (トーク | 投稿記録)による版
移動先:案内検索

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

MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。MariaDBはさらにオープンであると考えられており、現在の主要Linuxディストリビューションに互換性のあるデフォルトのMySQLデータベースとして公開されています。

MariaDBはOracle MySQLの暫定的な代替データベースであり、あなたは標準的なmysqlドライバを使用してサポートされるMoodleのバージョンすべてに使用することができます。

MariaDBドライバ MariaDB driver

MariaDBには専用のドライバがあります。config.phpでmariadb Moodleドライバを明確に指定することをお勧めします。

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

現在、ドライバはMySQLのものと類似していますが実装では大きく異なる場合があります。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

関連情報