博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql启动问题
阅读量:5009 次
发布时间:2019-06-12

本文共 1178 字,大约阅读时间需要 3 分钟。

/usr/local/mysql/bin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)2017-09-14 09:02:25 21605 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.2017-09-14 09:02:25 21605 [Note] InnoDB: Using atomics to ref count buffer pool pages2017-09-14 09:02:25 21605 [Note] InnoDB: The InnoDB memory heap is disabled2017-09-14 09:02:25 21605 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins2017-09-14 09:02:25 21605 [Note] InnoDB: Memory barrier is not used2017-09-14 09:02:25 21605 [Note] InnoDB: Compressed tables use zlib 1.2.32017-09-14 09:02:25 21605 [Note] InnoDB: Using CPU crc32 instructions2017-09-14 09:02:25 21605 [Note] InnoDB: Initializing buffer pool, size = 128.0MInnoDB: mmap(137363456 bytes) failed; errno 122017-09-14 09:02:25 21605 [ERROR] InnoDB: Cannot allocate memory for the buffer pool2017-09-14 09:02:25 21605 [ERROR] Plugin 'InnoDB' init function returned error.
Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied) 主要是权限不足引起的,进入mysql数据库
cd /usr/local/mysql/data/mysql

添加权限

chown mysql *chgrp mysql *chmod ug+rwx *

重新启动数据库服务。

转载于:https://www.cnblogs.com/liter7/p/7518939.html

你可能感兴趣的文章
Save (Not Permitted) Dialog Box
查看>>
装饰模式(Decorator)
查看>>
3-11
查看>>
任务13:在Core Mvc中使用Options
查看>>
利用Excel 2010数据透视图实现数字的可视化的图形直观展示
查看>>
Sort Colors
查看>>
HTML文本框水印
查看>>
2048记录反查(ruby)
查看>>
用ssh整合时,用sessionfactory的getCurrentSession()获取不到session
查看>>
【Alpha版本】 第四天 11.10
查看>>
软件公司书籍推荐——按角色划分
查看>>
剑指offer和leetcode都有的_反转链表
查看>>
chrome 插件地址 知乎
查看>>
javascript全局变量都是window对象的属性
查看>>
第八届蓝桥杯省赛第七题---日期问题
查看>>
iview树的修改某个节点,树刷新后自动展开你刚才展开的所有节点
查看>>
oracle服务起不来以及无法监听问题解决
查看>>
Mvc--Html.ActionLink()的用法
查看>>
delphi 基础书籍推荐
查看>>
《面向对象程序设计》2018年春学期寒假及博客作业总结
查看>>