返回顶部
首页 > 资讯 > 数据库 >mysql can't start dues to the disk space is full
  • 736
分享到

mysql can't start dues to the disk space is full

2024-04-02 19:04:59 736人浏览 独家记忆
摘要

use ./Mysqld_safe --user=mysql &start mysql.The mysql can not start. There are much mysql restart info

use ./Mysqld_safe --user=mysql &
start mysql.

The mysql can not start. There are much mysql restart info show on the screen always. And can not find the /var/lib/mysql/mysql.sock file.

The reason:
Then find the space is full. So the mysql can not start naturally. Delete some log info, then the mysql start correctly.


The big log files are two:
1. Our application log
2. The /var/log/audit.d

在/var/log/audit.d目录下的文件是由linux审计子系统(Linux Audit Subsystem,简称LAuS)产生的。

为了安全目的,LAuS在启动以后,默认配置是会记录一些特定的系统活动。如果不需要进行安全审计,可

以通过以下命令关机LAuS服务:

service audit stop
chkconfig audit off
停止LAuS服务以后,在/var/log/audit.d目录下面的任何save.*文件都可以删除。我们推荐您原封不动的

保留bin.*文件,以备将来使用。LAuS功能在红帽企业版Linux3以上版本默认没有打开。

因为LAuS被用来作安全审计,所以它的日志文件是不会自动删除,会一直保留。如果您的系统负载比较重

,并且在执行LAuS监控系统,LAuS的日志文件会增长的很快,有可能会占满/var的空间导致系统崩溃。有

几种方式可以用来阻止以上事件发上。最简单的方法是定时监控/var/log/audit.d目录的大小,删除过时

的save.*文件。另一种技术是不要把归档的审计日志保存为save.*文件。修改/etc/audit/audit.conf里

面的notify行,用/bin/true代替原先的/usr/sbin/audbin:

/etc/audit/audit.conf


output {
mode = bin;
num-files = 4;
file-size = 20M;
file-name = "/var/log/audit.d/bin";
notify = "/bin/true";

第三种方式是写一个脚本定时删除save.*文件。

[@more@]

您可能感兴趣的文档:

--结束END--

本文标题: mysql can't start dues to the disk space is full

本文链接: https://lsjlt.com/news/47588.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作