MySQL to MariaDB data migration
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
CONTENTS
#contents
----
Lastmodified &lastmod;
----
&size(24){&color(red){OBSOLETE};};
*MySQL to MariaDB データ移行 [#ga143b94]
https://www.unixmen.com/migrate-from-mysql-to-mariadb-in-...
https://dillix.com/blog/how-to-migrate-from-mysql-to-mari...
開発用の MySQL の使用は無料です。
その製品 (MySQL) を配布するわけではないため、GPL 制限は適...
MySQL を何らかの形式で配布する場合は、ライセンスが適用さ...
参照: MySQL 商用ライセンス
MariaDB はコミュニティによって開発された MySQL リレーショ...
主要なオープンソース ソフトウェア システムの分岐点として...
寄稿者は、Monty Program AB と著作権を共有する必要がありま...
また、その目的は、MySQL との高い互換性を維持し、ライブラ...
これには、InnoDB の代替としての XtraDB ストレージ エンジ...
ノート:
1) この移行を開始する前にデータベースをバックアップしてく...
2) 次のコマンドを使用して MySQL デーモンを停止します。
# service mysql-server stop
3) Update ports collection
4) Check which version of MySQL you have:
# pkg_version -v | grep mysql
mysql-client-5.5.17 = up-to-date with ...
mysql-server-5.5.17 = up-to-date with ...
...
5) MySQL サーバーとクライアントのポートをアンインストール...
# cd /usr/ports/databases/mysql55-server/
# make deinstall clean
# cd /usr/ports/databases/mysql55-client/
# make deinstall clean
6) MariaDB サーバー、MariaDB クライアント、MariaDB スクリ...
# cd /usr/ports/databases/mariadb-server
# make install clean
次のオプションを確認する必要があります。
[X] SSL Activate SSL support (yassl)
[X] ARIADB Aria storage engine
[X] ARCHIVE Archive storage plugin
[X] BLACKHOLE Blackhole storage engine
[X] SPHINX SE client for Sphinx search daemon
[X] FEDX FederatedX storage engine (Federated repl...
[X] XTRADB XtraDB (InnoDB replacement) engine
[X] PBXT MVCC-based transactional engine
MariaDB クライアントは自動的にインストールされます。
次のオプションをチェックする必要があります。
[X] THREADSAFE Build thread-safe client
[X] SSL Activate SSL support (yassl)
MariaDB Scriptsをインストール
# cd /usr/ports/databases/mariadb-scripts/
# make install clean
7) すべてのポートが正常にインストールされているかどうかを...
# pkg_version -v | grep maria
mariadb-client-5.2.9 = up-to-date with ...
mariadb-scripts-5.2.9 = up-to-date with ...
mariadb-server-5.2.9 = up-to-date with ...
8) MariaDB サーバーの起動:
# service mysql-server start
9) 以前に MySQL サーバーを持っていなかった場合は、MariaDB...
# mysqladmin -u root password YOURSECUREPASSWORD
10) 次のようなエラーが発生した場合のヒント:
/libexec/ld-elf.so.1: Shared object "libmysqlclient.so.1...
#1286 - Unknown table engine 'InnoDB'
PDOException: SQLSTATE[42000]: Syntax error or access vi...
apache-2.2.17_1 cannot install: unknown MySQL version: 52.
ヒント 1: MySQL をサポートする Postfix または Dovecot を...
ヒント 2: ポートのインストール時に MySQL バージョンが不明...
MYSQL52_LIBVER=16
ヒント 3: Drupal 7、Postfixadmin、または InnoDB テーブル...
# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or ...
Your MariaDB connection id is 4656
Server version: 5.2.9-MariaDB-log Source distribution
This software comes with ABSOLUTELY NO WARRANTY. This is...
and you are welcome to modify and redistribute it under ...
Type 'help;' or '\h' for help. Type '\c' to clear the cu...
MariaDB [(none)]> INSTALL PLUGIN sphinx SONAME 'ha_sp...
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> INSTALL PLUGIN innodb SONAME 'ha_xt...
Query OK, 0 rows affected (0.11 sec)
MariaDB [(none)]> show engines;
| Engine | Support | Comment ...
| MyISAM | DEFAULT | Default engine as of MySQL 3.23 ...
| InnoDB | YES | XtraDB engine based on InnoDB pl...
| PBXT | YES | High performance, multi-versioni...
| MEMORY | YES | Hash based, stored in memory, us...
| CSV | YES | CSV storage engine ...
| SPHINX | YES | Sphinx storage engine 0.9.9 ...
| Aria | YES | Crash-safe tables with MyISAM he...
| MRG_MYISAM | YES | Collection of identical MyISAM t...
8 rows in set (0.00 sec)
MariaDB [(none)]> exit;
----
Total access &counter(total);:本日 &counter(today);:昨...
#counter([total|today|yesterday]);
終了行:
CONTENTS
#contents
----
Lastmodified &lastmod;
----
&size(24){&color(red){OBSOLETE};};
*MySQL to MariaDB データ移行 [#ga143b94]
https://www.unixmen.com/migrate-from-mysql-to-mariadb-in-...
https://dillix.com/blog/how-to-migrate-from-mysql-to-mari...
開発用の MySQL の使用は無料です。
その製品 (MySQL) を配布するわけではないため、GPL 制限は適...
MySQL を何らかの形式で配布する場合は、ライセンスが適用さ...
参照: MySQL 商用ライセンス
MariaDB はコミュニティによって開発された MySQL リレーショ...
主要なオープンソース ソフトウェア システムの分岐点として...
寄稿者は、Monty Program AB と著作権を共有する必要がありま...
また、その目的は、MySQL との高い互換性を維持し、ライブラ...
これには、InnoDB の代替としての XtraDB ストレージ エンジ...
ノート:
1) この移行を開始する前にデータベースをバックアップしてく...
2) 次のコマンドを使用して MySQL デーモンを停止します。
# service mysql-server stop
3) Update ports collection
4) Check which version of MySQL you have:
# pkg_version -v | grep mysql
mysql-client-5.5.17 = up-to-date with ...
mysql-server-5.5.17 = up-to-date with ...
...
5) MySQL サーバーとクライアントのポートをアンインストール...
# cd /usr/ports/databases/mysql55-server/
# make deinstall clean
# cd /usr/ports/databases/mysql55-client/
# make deinstall clean
6) MariaDB サーバー、MariaDB クライアント、MariaDB スクリ...
# cd /usr/ports/databases/mariadb-server
# make install clean
次のオプションを確認する必要があります。
[X] SSL Activate SSL support (yassl)
[X] ARIADB Aria storage engine
[X] ARCHIVE Archive storage plugin
[X] BLACKHOLE Blackhole storage engine
[X] SPHINX SE client for Sphinx search daemon
[X] FEDX FederatedX storage engine (Federated repl...
[X] XTRADB XtraDB (InnoDB replacement) engine
[X] PBXT MVCC-based transactional engine
MariaDB クライアントは自動的にインストールされます。
次のオプションをチェックする必要があります。
[X] THREADSAFE Build thread-safe client
[X] SSL Activate SSL support (yassl)
MariaDB Scriptsをインストール
# cd /usr/ports/databases/mariadb-scripts/
# make install clean
7) すべてのポートが正常にインストールされているかどうかを...
# pkg_version -v | grep maria
mariadb-client-5.2.9 = up-to-date with ...
mariadb-scripts-5.2.9 = up-to-date with ...
mariadb-server-5.2.9 = up-to-date with ...
8) MariaDB サーバーの起動:
# service mysql-server start
9) 以前に MySQL サーバーを持っていなかった場合は、MariaDB...
# mysqladmin -u root password YOURSECUREPASSWORD
10) 次のようなエラーが発生した場合のヒント:
/libexec/ld-elf.so.1: Shared object "libmysqlclient.so.1...
#1286 - Unknown table engine 'InnoDB'
PDOException: SQLSTATE[42000]: Syntax error or access vi...
apache-2.2.17_1 cannot install: unknown MySQL version: 52.
ヒント 1: MySQL をサポートする Postfix または Dovecot を...
ヒント 2: ポートのインストール時に MySQL バージョンが不明...
MYSQL52_LIBVER=16
ヒント 3: Drupal 7、Postfixadmin、または InnoDB テーブル...
# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or ...
Your MariaDB connection id is 4656
Server version: 5.2.9-MariaDB-log Source distribution
This software comes with ABSOLUTELY NO WARRANTY. This is...
and you are welcome to modify and redistribute it under ...
Type 'help;' or '\h' for help. Type '\c' to clear the cu...
MariaDB [(none)]> INSTALL PLUGIN sphinx SONAME 'ha_sp...
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> INSTALL PLUGIN innodb SONAME 'ha_xt...
Query OK, 0 rows affected (0.11 sec)
MariaDB [(none)]> show engines;
| Engine | Support | Comment ...
| MyISAM | DEFAULT | Default engine as of MySQL 3.23 ...
| InnoDB | YES | XtraDB engine based on InnoDB pl...
| PBXT | YES | High performance, multi-versioni...
| MEMORY | YES | Hash based, stored in memory, us...
| CSV | YES | CSV storage engine ...
| SPHINX | YES | Sphinx storage engine 0.9.9 ...
| Aria | YES | Crash-safe tables with MyISAM he...
| MRG_MYISAM | YES | Collection of identical MyISAM t...
8 rows in set (0.00 sec)
MariaDB [(none)]> exit;
----
Total access &counter(total);:本日 &counter(today);:昨...
#counter([total|today|yesterday]);
ページ名: