执行sql语句时报错cncurrency mode is disabled not creating a lock manager
时间: 2024-02-28 14:54:05 浏览: 136
MySQL提示The InnoDB feature is disabled需要开启InnoDB的解决方法
这个错误通常是因为在执行 SQL 语句时,MySQL 的并发模式没有启用导致的。并发模式可以通过设置参数 innodb_concurrency_tickets 和 innodb_adaptive_hash_index 来启用。
你可以尝试在 MySQL 的配置文件 my.cnf 中添加以下参数来启用并发模式:
```
innodb_concurrency_tickets=5000
innodb_adaptive_hash_index=ON
```
如果还是无法解决问题,你还可以尝试升级 MySQL 版本或者重新安装 MySQL。
阅读全文