Centos7升级Glibc

简介: Centos7升级Glibc

使用场景

Centos7默认的glibc函数库的版本为2.17,无法运行一些对glibc版本有要求的中间件。为了在centos7上可以正常运行此类中间件,则需要对glibc进行升级

image.png

注意事项

直接升级到glibc2.25会出现各种崩溃的问题(如:无法远程、常规基础命令无法使用等等),可直接升级到glibc2.31(升级过程中会自动安装缺失的版本)。

环境准备

升级glibc2.31前需要确保基础环境满足以下条件:gcc版本要在9以上(默认4.8.5),make版本要在4.0以上(默认3.82)

1、make升级

make -v 查看当前make版本,如果是3.x则需要升级,4.x直接跳过此步骤

# 1.安装依赖

yum -y install gcc gcc+

# 2.建立安装包存放目录

mkdir /backup

# 3.下载make安装包

cd /backup

wget https://mirrors.aliyun.com/gnu/make/make-4.3.tar.gz

# 4.解压压缩包并建立构建目录

tar -xf make-4.3.tar.gz

cd make-4.3

mkdir build

cd build

# 5.指定安装到具体的目录下,此示例表示将make安装到/opt下

../configure --prefix=/opt/make

# 6.编译安装

make && make install

# 7.建立软连接

ln -sf /opt/make/bin/make /usr/bin/make

# 8.检查make版本

make --version

# 输出

GNU Make 4.3

Built for x86_64-pc-linux-gnu

Copyright (C) 1988-2020 Free Software Foundation, Inc.

License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.

2、gcc升级

gcc -v 查看当前gcc版本,如果显示 4.x 则需要升级,9.x直接跳过此步骤

# 1.安装升级依赖

yum install -y gcc-c++ glibc-devel mpfr-devel libmpc-devel gmp-devel glibc-devel.i686

# 2.下载gcc9.3.1安装包

cd /backup

wget https://ftp.gnu.org/gnu/gcc/gcc-9.3.0/gcc-9.3.0.tar.gz --no-check-certificate

# 3.解包并执行编译前的准备

tar -xf gcc-9.3.0.tar.gz

cd gcc-9.3.0

# 下载依赖包

./contrib/download_prerequisites

# 建立构建目录

mkdir build

# 进入构建目录

cd build

# 4.指定安装到具体的目录下,此示例表示将make安装到/usr下(说明:若安装到非/usr目录,如安装到/opt/gcc,则在编译完成后需要配置环境变量、建立软连接。)

../configure --enable-checking=release --enable-language=c,c++ --disable-multilib --prefix=/usr

# 5.编译安装

make -j4 # -j代表编译时的任务数,一般有几个cpu核心就写几,构建速度会更快一些。该步骤执行时间很长

make install

# 6.上一步若安装目录不是/usr,则需要在编译完成后配置环境变量、建立软连接,若为/usr目录则跳过此步骤

# 假设将gcc编译安装到了/opt/gcc目录

# 6.1配置环境变量

vi /etc/profile.d/gcc.sh

# gcc环境配置

export PATH=/opt/gcc/bin:$PATH

export LD_LIBRARY_PATH=/opt/gcc/lib

# 编辑完成后:wq保存并退出

# 6.2重载环境变量

source /etc/profile

# 6.3重新生成新的链接

# 取消原始链接

unlink /usr/bin/cc

# 建立新链接

ln -sf /opt/gcc/bin/gcc /usr/bin/cc

ln -sf /opt/gcc/lib/gcc/x86_64-pc-linux-gnu/9.3.0/include /usr/include/gcc

# 设置库文件

echo "/opt/gcc/lib64" >> /etc/ld.so.conf.d/gcc.conf

# 加载动态连接库

ldconfig -v

# 查看加载结果

ldconfig -p | grep gcc

# 7.安装完成后检查gcc版本,若gcc升级失败则需查找失败原因并重新进行升级操作

gcc -v

Using built-in specs.

COLLECT_GCC=gcc

COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/9.3.0/lto-wrapper

Target: x86_64-pc-linux-gnu

Configured with: ../configure --enable-checking=release --enable-language=c,c++ --disable-multilib --prefix=/usr

Thread model: posix

gcc version 9.3.0 (GCC)

升级glibc

# 1.查看glibc函数库版本

strings /lib64/libc.so.6 | grep -E "^GLIBC" | sort -V -r | uniq

# 输出

GLIBC_2.2.5

GLIBC_2.2.6

GLIBC_2.3

GLIBC_2.3.2

GLIBC_2.3.3

GLIBC_2.3.4

GLIBC_2.4

GLIBC_2.5

GLIBC_2.6

GLIBC_2.7

GLIBC_2.8

GLIBC_2.9

GLIBC_2.10

GLIBC_2.11

GLIBC_2.12

GLIBC_2.13

GLIBC_2.14

GLIBC_2.15

GLIBC_2.16

GLIBC_2.17 # 当前最高版本

GLIBC_PRIVATE

# 2.下载glibc-2.31安装包

cd /backup

wget https://mirrors.aliyun.com/gnu/glibc/glibc-2.31.tar.gz

# 3.进入到解压目录

tar -xf glibc-2.31.tar.gz

cd glibc-2.31

# 4.查看安装glibc的前提依赖,对于不满足的依赖需要进行升级,使用yum -y install xxx 升级或安装即可

cat INSTALL | grep -E "newer|later" | grep "*"

# 输出

* GNU 'make' 4.0 or newer

* GCC 6.2 or newer

* GNU 'binutils' 2.25 or later

* GNU 'texinfo' 4.7 or later

* GNU 'bison' 2.7 or later

* GNU 'sed' 3.02 or newer

* Python 3.4 or later

* GDB 7.8 or later with support for Python 2.7/3.4 or later

* GNU 'gettext' 0.10.36 or later

# 假设上述依赖条件已全部满足

# 5.建立构建目录,执行编译安装

mkdir build

# 6.指定安装到具体的目录下,此示例表示将make安装到/opt下

cd build/

../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin --disable-sanity-checks --disable-werror

# 7.编译安装

make -j4 # 此处时间较长

make install

# 解决新启动远程终端时报一个WARNING

make localedata/install-locales

# install结束会出现一个错误,此错误可忽略

# 错误输出

Execution of gcc -B/usr/bin/ failed!

The script has found some problems with your installation!

Please read the FAQ and the README file and check the following:

- Did you change the gcc specs file (necessary after upgrading from

Linux libc5)?

- Are there any symbolic links of the form libXXX.so to old libraries?

Links like libm.so -> libm.so.5 (where libm.so.5 is an old library) are wrong,

libm.so should point to the newly installed glibc file - and there should be

only one such link (check e.g. /lib and /usr/lib)

You should restart this script from your build directory after you've

fixed all problems!

Btw. the script doesn't work if you're installing GNU libc not as your

primary library!

make[1]: *** [Makefile:120: install] Error 1

make[1]: Leaving directory '/backup/glibc-2.31'

make: *** [Makefile:12: install] Error 2'

# 8.安装完成后检查glibc版本

strings /lib64/libc.so.6 | grep -E "^GLIBC" | sort -V -r | uniq


image.png

适用于

  • 云服务器ECS
相关文章
|
5月前
|
Linux Perl
Linux centos7升级内核(两种方法:内核编译和yum更新)
Linux centos7升级内核(两种方法:内核编译和yum更新)
1650 1
Linux centos7升级内核(两种方法:内核编译和yum更新)
|
5月前
|
安全 Linux
CentOS7下快速升级至OpenSSH9.4p1安全版本
CentOS7下快速升级至OpenSSH9.4p1安全版本
469 1
|
5月前
|
安全 Linux Shell
CentOS7下快速升级至OpenSSH9.3p2安全版本
CentOS7下快速升级至OpenSSH9.3p2安全版本
412 0
|
安全 Linux
Centos 7.x 升级内核
千万不要小瞧这操作。
339 0
|
10天前
|
Linux 数据安全/隐私保护 Perl
CentOS7中升级OpenSSL详细教程
这篇文章提供了在CentOS 7系统中升级OpenSSL到3.2版本的详细步骤,包括备份现有配置、安装依赖、下载安装新版本以及验证安装结果。
46 1
|
2月前
|
Linux
centos7升级内核到最新稳定版
centos7升级内核到最新稳定版
164 0
|
2月前
|
Linux Python
CentOS7升级python3到最新版
CentOS7升级python3到最新版
|
4月前
|
Java
Centos8 openjdk升级
Centos8 openjdk升级
|
5月前
|
Linux
Centos7.4升级7.9失败,救援:/boot目录下文件丢失error: file ‘/initramfs-3.10.0-957.el7.x86_64.img‘ not found
以上步骤应该可以帮助你解决问题。如果问题仍然存在,可能需要更深入的排查。
123 1
|
Linux
百度搜索:蓝易云【Centos8升级到Centos 8 stream教程。】
CentOS 8 stream 是 CentOS 8 的下一代版本,它采用的是“滚动发布”的方式,即在 CentOS 8.4 发布后,每个组件的更新都将立即推送给用户,而不是等到下一个大版本发布。
153 1
下一篇
无影云桌面