在安装mysql时需要安装numactl.x86_64
使用yum -y install numactl.x86_64时报错
[root@sdp6 mysql]# yum -y install numactl.x86_64 Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Setting up Install Process No package numactl.x86_64 available. Error: Nothing to do
解决方式:
1.首先查看设置联网DNS
cat /etc/resolv.conf
2.测试是否接通外网
ping www.baidu.com
3.检查yum源配置
cd /etc/yum.repos.d/ ll
说明缺少了yum源配置的文件
从其他机器上copy以下四个文件到当前目录
4.继续安装numactl.x86_64
yum -y install numactl.x86_64
如果出现以下提示
说明需要使用yum命令来清空下资源
yum clean all
然后再重新执行安装命令
说明OK,可以继续安装了