Centos7 启动MySQL5.7.28 ERROR! The server quit without updating PID file

问题

在Centos7 启动MyMySQL5.7.28 报错ERROR! The server quit without updating PID file(/usr/local/software/mysql/data/VM_0_7_centos.pid).

 

发现原因

由于MySQL启动,运行,关闭过程中出现的问题都会记录在错误日志(error_log)之中,在Linux找不到MySQL启动的错误日志文件error_log,初步猜测是在/etc/my.cnf文件没有配置MySQL错误日志信息

 

解决方案

1.在MySQL的安装目录创建mysqld_error.log,并赋权读写,修改文件的属主及属组为mysql

我的MySQL安装目录为/usr/local/software/mysql

 

touch /usr/local/software/mysql/mysqld_error.log

chmod 666 /usr/local/software/mysql/mysqld_error.log

chown mysql:mysql /usr/local/software/mysql/mysqld_error.log

 

Centos7 启动MySQL5.7.28 ERROR! The server quit without updating PID file_第1张图片

2.在文件/etc/my.cnf里面的[mysqld]节点下添加log_error属性

[mysqld]

socket=/var/lib/mysql/mysql.sock

port = 3306

basedir=/usr/local/software/mysql

datadir=/usr/local/software/mysql/data

max_connections=200

character-set-server=utf8mb4

default-storage-engine=INNODB

lower_case_table_names=1

max_allowed_packet=16M

explicit_defaults_for_timestamp=true

######log error

log_error=/usr/local/software/mysql/mysqld_error.log

 

校验

重新启动,并登陆

 

通过show VARIABLES LIKE '%log_error%' 可以看到刚设置的错误日志文件位置

Centos7 启动MySQL5.7.28 ERROR! The server quit without updating PID file_第2张图片

其他场景出现这个报错可以参考博客

https://javawind.net/p141  MySql提示:The server quit without updating PID file(…)失败

你可能感兴趣的:(Linux)