启动performance schema
时间: 2023-10-17 07:12:41 浏览: 111
出现错误mysql Table ‘performance_schema…解决办法
启动 MySQL 的 performance schema 可以通过以下步骤完成:
1. 登录 MySQL,使用 root 用户或其他具有管理员权限的用户。
2. 执行以下命令开启 performance schema:
```
mysql> SET GLOBAL performance_schema = ON;
```
3. 如果需要关闭 performance schema,可以执行以下命令:
```
mysql> SET GLOBAL performance_schema = OFF;
```
注意:如果你的 MySQL 版本较老,可能需要先检查是否已经安装了 performance schema,可以通过执行以下命令进行检查:
```
mysql> SELECT * FROM information_schema.plugins WHERE plugin_name = 'performance_schema';
```
如果返回的结果为空,说明 performance schema 没有安装,需要先安装。
阅读全文