mysqld: error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory
时间: 2023-11-21 14:58:46 浏览: 394
这个错误通常是由于缺少libnuma.so.1库文件导致的。您可以按照以下步骤解决此问题:
1.首先,使用以下命令检查系统中是否已安装numactl软件包:
```shell
yum list installed | grep numactl
```
2.如果未安装,请使用以下命令安装numactl软件包:
```shell
yum install numactl
```
3.如果已安装numactl软件包但仍然出现此错误,请使用以下命令查找libnuma.so.1库文件:
```shell
find / -name libnuma.so.1
```
4.如果找到了库文件,请将其路径添加到/etc/ld.so.conf文件中:
```shell
echo "/usr/lib64" >> /etc/ld.so.conf
```
5.最后,使用以下命令更新库缓存:
```shell
ldconfig
```
阅读全文