#查询日志
journalctl -xe
#关键句定位
/usr/sbin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
#分析
Linux-centos版本的问题,有的版本缺少libaio.so.1文件
#解决
whereis libaio.so.1 #检查是否存在libaio.so.1文件
libaio.so: /usr/lib<i class="chrome-extension-mutihighlight chrome-extension-mutihighlight-style-6">64</i>/libaio.so.1 #若没有出现此路径则需要安装libaio.so.1文件<br><br>yum install -y libaio #安装完成<br>systemctl restart mysqld #重启mysql