安装owncloud出现:Error while trying to create admin user: An exception occurred while executing
1.安装owncloud出现如下报错
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”, “13000Date20170705121758”, “core”, “13000Date20170705121758”]: 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.
2.解决方法
mysql> SET GLOBAL binlog_format = ‘MIXED‘;
原因:Mysql不能存储二进制数据
原文地址:https://www.cnblogs.com/heyongboke/p/10534664.html
时间: 2024-10-01 03:28:02