MySQL/Error
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** MySQL Run Time Error [#ua568b70]
*** InnoDB のログファイルサイズ [#oa327158]
151219 18:48:00 InnoDB: ERROR: the age of the last chec...
InnoDB: which exceeds the log group capacity 9433498.
InnoDB: If you are using big BLOB or TEXT rows, you must...
InnoDB: combined size of log files at least 10 times big...
InnoDB: largest such row.
- InnoDB 用のログファイル (ib_logfile0,1) のサイズが小さ...
-- MySQL で次のコマンドを実行
SET GLOBAL innodb_fast_shutdown=0;
-- MySQL を止める
-- ib_logfile0,1 を移動
mv mysql/ib_logfile* .
-- サイズの変更
vi /etc/my.cnf
[mysqld] に innodb_log_file_size=64M を追加
-- MySQL を起動
*** redo log size [#u31f0ae3]
InnoDB: The total blob data length (15867691) is greater...
- my.cnf で innodb_log_file_size, innodb_buffer_pool_siz...
[mysqld]
innodb_log_file_size=512M
innodb_buffer_pool_size=1024M
終了行:
** MySQL Run Time Error [#ua568b70]
*** InnoDB のログファイルサイズ [#oa327158]
151219 18:48:00 InnoDB: ERROR: the age of the last chec...
InnoDB: which exceeds the log group capacity 9433498.
InnoDB: If you are using big BLOB or TEXT rows, you must...
InnoDB: combined size of log files at least 10 times big...
InnoDB: largest such row.
- InnoDB 用のログファイル (ib_logfile0,1) のサイズが小さ...
-- MySQL で次のコマンドを実行
SET GLOBAL innodb_fast_shutdown=0;
-- MySQL を止める
-- ib_logfile0,1 を移動
mv mysql/ib_logfile* .
-- サイズの変更
vi /etc/my.cnf
[mysqld] に innodb_log_file_size=64M を追加
-- MySQL を起動
*** redo log size [#u31f0ae3]
InnoDB: The total blob data length (15867691) is greater...
- my.cnf で innodb_log_file_size, innodb_buffer_pool_siz...
[mysqld]
innodb_log_file_size=512M
innodb_buffer_pool_size=1024M
ページ名: