「MariaDB」の版間の差分

提供:MoodleDocs
移動先:案内検索
編集の要約なし
15行目: 15行目:
</code>
</code>


現在、ドライバは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.
現在、ドライバはMySQLのものと類似していますが実装では大きく異なる場合があります。MoodleのMariaDBドライバはMyISAMデータベースエンジンと互換性がありません。Moodle MariaDB driver is not compatible with MyISAM database engine.


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

2018年8月2日 (木) 15:03時点における版

作成中です - 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のものと類似していますが実装では大きく異なる場合があります。MoodleのMariaDBドライバはMyISAMデータベースエンジンと互換性がありません。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

関連情報