问题背景
本文向大家介绍Centos系统在启动一些服务的时候会碰到的/lib64/libc.so.6: version `GLIBC_2.28’ not found (required by…的问题的解决方法,根据提示可知碰到此问题,是因为没有找到GLIBC_2.28版本,需要添加GLIBC的2.28版本
解决方案
cd /usr/local/wget https://mirror.bjtu.edu.cn/gnu/libc/glibc-2.28.tar.xz --no-check-certificatetar -xf glibc-2.28.tar.xzcd glibc-2.28/mkdir buildcd build/../configure --prefix=/usr/local/glibc-2.28
运行该命令后会报下面两个错误
报错1
configure: error: in `/root/test/glibc-2.28/build’:configure: error: no acceptable C compiler found in $PATH
先执行
yum install gcc
之后再执行
../configure --prefix=/usr/local/glibc-2.28
会遇到报错2
报错2
These critical programs are missing or too old: make bison compilerCheck the INSTALL file for required versions.
make bison compiler太过老旧
解决:
升级GCC编译器
yum -y install centos-release-sclyum -y install devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-binutilsscl enable devtoolset-8 bashecho "source /opt/rh/devtoolset-8/enable" >>/etc/profile
升级make
wget http://ftp.gnu.org/gnu/make/make-4.2.tar.gztar -xzvf make-4.2.tar.gzcd make-4.2sudo ./configuresudo makesudo make installsudo rm -rf /usr/bin/makesudo cp ./make /usr/bin/make -v
再次回到GLIBC目录
cd /usr/local/glibc-2.28/build/yum install -y bisonsudo ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/binmake //make 运行时间较长make install
验证GLIBC是否存在GLIBC-2.28版本
[root@centos-dm ~]# strings /lib64/libc.so.6 |grep GLIBCGLIBC_2.2.5GLIBC_2.2.6GLIBC_2.3GLIBC_2.3.2GLIBC_2.3.3GLIBC_2.3.4GLIBC_2.4GLIBC_2.5GLIBC_2.6GLIBC_2.7GLIBC_2.8GLIBC_2.9GLIBC_2.10GLIBC_2.11GLIBC_2.12GLIBC_2.13GLIBC_2.14GLIBC_2.15GLIBC_2.16GLIBC_2.17GLIBC_2.18GLIBC_2.22GLIBC_2.23GLIBC_2.24GLIBC_2.25GLIBC_2.26GLIBC_2.27GLIBC_2.28GLIBC_PRIVATE
重启服务器后,即可启动DmAPService.service
启动服务systemctl start DmAPService.service查看状态systemctl status DmAPService.service
技术博客社区地址
https://eco.dameng.com
来源地址:https://blog.csdn.net/NinjaKilling/article/details/125979091