Ubuntu 安装MySQL报共享库找不到
Posted yjt1993
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 安装MySQL报共享库找不到相关的知识,希望对你有一定的参考价值。
错误信息1:
./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
解决办法:安装改库
# apt-get install libaio1 -y 注意:是libaio后面有个 1
继续安装,报错,错误如下
./mysqld: error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory
解决,安装libnuma1
# apt-get install libnuma1 -y
接下来就可以正常初始化了。
以上是关于Ubuntu 安装MySQL报共享库找不到的主要内容,如果未能解决你的问题,请参考以下文章
免安装版--- mysql 启动报错--发现系统错误2,系统找不到指定的文件。解决办法
在ubuntu中编译安装mysql,但是没有生成/tmp/mysql.sock文件?