博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS启动MySQL服务失败
阅读量:6531 次
发布时间:2019-06-24

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

150112 15:21:28 mysqld_safe Starting mysqld daemon with databases from /data/mysql150112 15:21:28 [Warning] Can't create test file /data/mysql/localhost.lower-test150112 15:21:28 [Warning] Can't create test file /data/mysql/localhost.lower-test^G/usr/libexec/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13)150112 15:21:28 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.150112 15:21:28  InnoDB: Initializing buffer pool, size = 8.0M150112 15:21:28  InnoDB: Completed initialization of buffer pool150112 15:21:28  InnoDB: Operating system error number 13 in a file operation.InnoDB: The error means mysqld does not have the access rights toInnoDB: the directory.InnoDB: File name ./ibdata1InnoDB: File operation call: 'open'.InnoDB: Cannot continue operation.150112 15:21:28 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

貌似是SELinux的问题,做了以下两步可以了

1. 修改配置文件修改配置文件/etc/selinux/config(未验证不修改是否可以)

  修改SELINUX=enforcing为SELINUX=permissive

2. chcon -R -t mysqld_db_t /data/mysql

  

转载于:https://www.cnblogs.com/jieyuefeng/p/4218586.html

你可能感兴趣的文章
【Oracle 数据迁移】环境oracle 11gR2,exp无法导出空表的表结构【转载】
查看>>
3D印花芭蕾舞鞋为舞者科学地保护双脚
查看>>
通过ActionTrail监控AccessKey的使用
查看>>
从 JavaScript 到 TypeScript
查看>>
一个mysql复制中断的案例
查看>>
【最佳实践】OSS开源工具ossutil-大文件断点续传
查看>>
Linux常用的服务器构建
查看>>
深入了解 Weex
查看>>
异构数据库
查看>>
iOS.ObjC.Basic-Knowledge
查看>>
透视校正插值
查看>>
Cobertura代码覆盖率测试
查看>>
【selenium学习笔记一】python + selenium定位页面元素的办法。
查看>>
Linux禁止ping
查看>>
【Matplotlib】 标注一些点
查看>>
[AX]乐观并发控制Optimistic Concurrency Control
查看>>
自定义类加载器
查看>>
MySQL数据库事务各隔离级别加锁情况--Repeatable Read && MVCC(转)
查看>>
C++构造函数例程
查看>>
把某一列值转换为逗号分隔字符串
查看>>