「MariaDB」の版間の差分

提供:MoodleDocs
移動先:案内検索
編集の要約なし
(done.)
 
(同じ利用者による、間の14版が非表示)
1行目: 1行目:
作成中です - [[利用者:Mitsuhiro Yoshida|Mitsuhiro Yoshida]] ([[利用者・トーク:Mitsuhiro Yoshida|トーク]])
MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。MariaDBはさらにオープンであると考えられており、現在の主要Linuxディストリビューションに互換性のあるデフォルトのMySQLデータベースとして公開されています。


MariaDBはMariaDB Foundationの下でMySQLの初期開発者によって開発および管理されているMySQLのフォークです。is a MySQL fork that is developed and maintained by original MySQL developers organised under MariaDB Foundation.
MariaDBはOracle MySQLの暫定的な代替データベースであり、あなたは標準的なmysqlドライバを使用してサポートされるMoodleのバージョンすべてに使用することができます。
MariaDB is a MySQL fork that is developed and maintained by original MySQL developers organised under MariaDB Foundation. 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==
==MariaDBドライバ MariaDB driver==




There is a dedicated driver for MariaDB. It is recommended to explicitly specify mariadb Moodle driver in config.php:
MariaDBには専用のドライバがあります。config.phpでmariadb Moodleドライバを明確に指定することをお勧めします。


<code php>
<code php>
16行目: 13行目:
</code>
</code>


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データベースエンジンと互換性がありません。


See [[MySQL]] for more information, the setup procedure is nearly identical.
詳細は[[MySQL]]をご覧ください。セットアップ手順はほぼ同じです。


==FAQ==
==FAQ==
It fails during installation due to binlog_format configuration:
binlog_format設定を原因としてインストールに失敗した場合:
In my.cnf file set binlog_format = ROW under [mysqld] and restart mysql service
my.cnfファイルで[mysqld]の下に「binlog_format = ROW」を記述した後、mysqlサービスをリスタートしてください。


==関連情報==
==関連情報==

2018年8月9日 (木) 15:51時点における最新版

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データベースエンジンと互換性がありません。

詳細はMySQLをご覧ください。セットアップ手順はほぼ同じです。

FAQ

binlog_format設定を原因としてインストールに失敗した場合: my.cnfファイルで[mysqld]の下に「binlog_format = ROW」を記述した後、mysqlサービスをリスタートしてください。

関連情報