博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
service mysqld start MySQL Daemon failed to start.
阅读量:7061 次
发布时间:2019-06-28

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

正常是MySQL开机自动启动的,可是这次没有启动;

使用 service mysqld start 启动时提示:MySQL Daemon failed to start.

正在启动 mysqld:                                          [失败]

查看MySQL日志

vi /var/log/mysqld.log
:$ 移动到文件尾,发现如下错误:
2016-07-02T01:34:44.454839Z 0 [ERROR] InnoDB: Write to file ./ibtmp1failed at offset 0, 1048576 bytes should have been written, only 0 were written. Operating system error number 28. Check that your OS and file system support files of this size. Check also that the disk is not full or a disk quota exceeded.
2016-07-02T01:34:44.454863Z 0 [ERROR] InnoDB: Error number 28 means 'No space left on device'
2016-07-02T01:34:44.454909Z 0 [Note] InnoDB: Some operating system error numbers are described at http://dev.mysql.com/doc/refman/5.7/en/operating-system-error-codes.html
2016-07-02T01:34:44.454925Z 0 [ERROR] InnoDB: Could not set the file size of './ibtmp1'. Probably out of disk space
2016-07-02T01:34:44.454936Z 0 [ERROR] InnoDB: Unable to create the shared innodb_temporary
2016-07-02T01:34:44.454948Z 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error
2016-07-02T01:34:45.056320Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2016-07-02T01:34:45.056344Z 0 [ERROR] Plugin 'InnoDB' init function returned error.
2016-07-02T01:34:45.056354Z 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2016-07-02T01:34:45.056364Z 0 [ERROR] Failed to initialize plugins.
2016-07-02T01:34:45.056372Z 0 [ERROR] Aborting
其中注意到:'No space left on device',没有磁盘空间了;

删除了一部分没用的文件,然后再启动就可以了。

相关:

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

你可能感兴趣的文章
android起源
查看>>
网页结构与表现原则
查看>>
MATLAB读取CCS保存的数据
查看>>
Java superArray2
查看>>
这几道Java集合框架面试题在面试中几乎必问
查看>>
HDU4545:魔法串(DP)
查看>>
协程补充
查看>>
ASS字幕制作和压制教程
查看>>
ccf 送货
查看>>
(27)回复泛型,注解、日志组件、枚举在实际项目中的使用
查看>>
安装配置Glusterfs
查看>>
分治法排序
查看>>
【WEBAPI】常用参数传递方法总结
查看>>
UVA11825 黑客的攻击 Hackers' Crackdown 状压DP,二进制,子集枚举
查看>>
爬虫间隔抓取服务器网页
查看>>
const define区别
查看>>
Python 面向对象(初级篇)
查看>>
头指针与头结点的异同
查看>>
学习Python的捷径
查看>>
方法中(+),(-)的区分
查看>>