2018年01月25日
Tweet
最後のところでエラーに。
Error while trying to create admin user: An exception occurred while executing 'INSERT INTO `oc_migrations` (`app`,`version`) SELECT ?,? FROM `oc_migrations` WHERE `app` = ? AND `version` = ? HAVING COUNT(*) = 0' with params ["core", 20170101010100, "core", 20170101010100]:
SQLSTATE[HY000]: General error: 1665 Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.
以下の方法で解決しました。
・ config/config.php の確認
dbuser などの記載を確認します。僕のところでは、 dbuser と dbpassword が変な値になっていました。
mariaDB の設定ファイルの修正。
# vi /etc/mysql/my.cnf
参考
An exception occurred while executing ‘INSERT INTOエラーの対処方-owncloud
> binlog_format=mixed を追記する
[mysqld] セクションに追加しました。
サービス再起動
# service mysql restart
解決しました。
Error while trying to create admin user: An exception occurred while executing 'INSERT INTO `oc_migrations` (`app`,`version`) SELECT ?,? FROM `oc_migrations` WHERE `app` = ? AND `version` = ? HAVING COUNT(*) = 0' with params ["core", 20170101010100, "core", 20170101010100]:
SQLSTATE[HY000]: General error: 1665 Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.
以下の方法で解決しました。
・ config/config.php の確認
dbuser などの記載を確認します。僕のところでは、 dbuser と dbpassword が変な値になっていました。
mariaDB の設定ファイルの修正。
# vi /etc/mysql/my.cnf
参考
An exception occurred while executing ‘INSERT INTOエラーの対処方-owncloud
> binlog_format=mixed を追記する
[mysqld] セクションに追加しました。
サービス再起動
# service mysql restart
解決しました。
stock_value at 19:16│Comments(0)│技術