mysql初始化出现问题:
解决:
参考链接:
https://www.cnblogs.com/Roobbin/p/17772445.html
https://blog.csdn.net/qq_35896718/article/details/131803958
libm.so.6、libc.so.6错误由于glibc版本较低导致,从错误来看至少需要2.28的版本
先查询版本:ll | grep libc.so.6
wget https://mirror.bjtu.edu.cn/gnu/libc/glibc-2.35.tar.xz
tar -xf glibc-2.35.tar.xz -C /usr/local
mkdir build
cd build/
../configure --prefix=/usr/local/glibc-2.35/
yum -y install centos-release-scl
yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++ devtoolset-8-binutils
scl enable devtoolset-8 bash
echo "source /opt/rh/devtoolset-8/enable" >>/etc/profile
/make-4.2
wget http://ftp.gnu.org/gnu/make/make-4.2.tar.gz
tar -xzvf make-4.2.tar.gz -C /test1/knowledge_graph/install
cd make-4.2/
./configure
make
sudo make install
sudo rm -rf /usr/bin/make
sudo cp ./make /usr/bin/
make -v
/usr/local/glibc-2.35/build
../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin
make #make 运行时间较长,可能会有半小时
make install
残留问题
最后一步make install后出现问题如下,但由于mysql初始化能顺利进行,暂时搁置