报错信息:
Job for mysqld.service failed because the control process exited with error code. See “systemctl status mysqld.service” and “journalctl -xe” for details.
定位错误:
vim /var/log/mysqld.log #查看日志信息
看到最后一行(shift+G)
原因分析:
MySQL 数据存放位置改为 数据盘地址,重启机器,然后磁盘挂载没有设置为开机自动挂载,导致PID 文件找不到。
解决方法: 1.在/etc/my.cnf 中查看pid-file的位置
2. 创建对应的目录并修改权限
mkdir -p /var/run/mysqld
chown mysql.mysql /var/run/mysqld
这时可以尝试重启MySQL了,可以启动就ok,如果还不行继续第三步。
3. 创建一个pid文件并修改权限
touch /var/run/mysql/mysqld.pid
chown mysql.mysql /var/run/mysql/mysqld.pid
再启动MySQL应该就没问题了!
这只是一个临时解决的办法,如果虚拟机重新开机就需要再次操作,暂时还没有找到解决根本问题的方案,大家就暂时挂起虚拟机,后续找到解决方法会在文章中更新!
到此这篇关于Mysql systemctl start mysqld报错的问题解决的文章就介绍到这了,更多相关Mysql systemctl start mysqld报错的问题解决内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:- Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法
- mysql登录报错提示:ERROR 1045 (28000)的解决方法
- mysql报错:Deadlock found when trying to get lock; try restarting transaction的解决方法
- MySQL 启动报错:File ./mysql-bin.index not found (Errcode: 13)
- mysql 报错This function has none of DETERMINISTIC解决方案
- MySql报错Table mysql.plugin doesn’t exist的解决方法
- mysql报错:MySQL server version for the right syntax to use near type=InnoDB的解决方法
- MySQL关于ERROR 1290 (HY000)报错解决方法
- MySQL无法重启报错Warning: World-writable config file ‘/etc/my.cnf’ is ignored的解决方法