博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL测试环境遇到 mmap(xxx bytes) failed; errno 12解决方法
阅读量:6255 次
发布时间:2019-06-22

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

查看Mysql日志

InnoDB: Initializing buffer pool, size = 128.0MInnoDB: mmap(137363456 bytes) failed; errno 12InnoDB: Completed initialization of buffer poolInnoDB: Fatal error: cannot allocate memory for the buffer pool[ERROR] Plugin 'InnoDB' init function returned error.[ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.[ERROR] Unknown/unsupported storage engine: InnoDB[ERROR] Aborting

 

缓存太少了

[root@dep5 ~]# free -m             total       used       free     shared    buffers     cachedMem:          1152        464        687          0          8         92-/+ buffers/cache:        363        789Swap:          199        194          5

增加缓存

$  dd if=/dev/zero of=/swapfile bs=1M count=1024 #增加1G的SWAP进去$  mkswap /swapfile$  swapon /swapfile$ free             total       used       free     shared    buffers     cachedMem:        608476     601432       7044          0        824      88752-/+ buffers/cache:     511856      96620Swap:      1048572          0    1048572

此处不建议将swapon 写到/etc/fstab这里,直接写到/etc.rc.local中更为稳妥

启动解决...

出自:

转载地址:http://anxsa.baihongyu.com/

你可能感兴趣的文章
Activity与Fragment数据传递之Fragment从Activity获取数据 分类: ...
查看>>
libFM 简介
查看>>
非均衡数据分布的分类问题
查看>>
用JAVA代码构造一个日历
查看>>
oracle密码过期ORA-28002:口令将过期的解决方法
查看>>
webdriver css选取器
查看>>
浏览器窗口最大化
查看>>
B+树
查看>>
[转] Yslow-网站性能评分工具的图文解析
查看>>
简单工厂设计模式计算器
查看>>
WinFrom“动态”WebService
查看>>
【钢铁侠3】【高清1280版HD-RMVB.英语中字】【2013最新美国票房科幻动作大片】...
查看>>
Eclipse 修改JVM
查看>>
状态者模式 c#
查看>>
最长回文子串
查看>>
Node-mongodb链接数据库函数的封装
查看>>
在CentOS上简单安装tengine
查看>>
c语言——字符串变量、函数
查看>>
解决Type safety: The expression of type List needs
查看>>
POJ 3233 (矩阵)
查看>>