php -v 报错error while loading shared libraries: libonig.so.5:cannot open share directory

当前从PHP5.6升级到php 7.4时,直接将编译好的安装包替换,输入php -v 时,就会报错error while loading shared libraries: libonig.so.5:cannot open share directory

#php -v
#php: error while loading shared libraries: libonig.so.5:cannot open share directory

 解决办法: 

步骤一、 

修改/ect/ld.so.conf   加入 以下行  

#vim /etc/ld.so.conf
include ls.so.conf.d/*.conf
/usr/local/lib
/usr/local/x264/lib
/usr/local/openssl/lib
/usr/local/python3.7.1/lib

保存后  执行ldconfig

#ldconfig

 步骤二、

安装oniguruma库   

下载地址:

https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/o/oniguruma-devel-6.8.2-1.el7.x86_64.rpm

https://download-ib01.fedoraproject.org/pub/epel/7/x86_64/Packages/o/oniguruma-6.8.2-1.el7.x86_64.rpm

oniguruma-6.8.2-1.el7.x86_64.rpm   

oniguruma-devel-6.8.2-1.el7.x86_64.rpm

使用命令进行安装 

#rpm -ivh oniguruma-devel-6.8.2-1.el7.x86_64
#rpm -ivh oniguruma-6.8.2-1.el7.x86_64

然后在运行命令 php -v   完美显示

安装报错 

Generating autotools files.
./autogen.sh: line 6: autoreconf: command not found

解决办法

[root@yjweb oniguruma-6.9.4]# yum install autoconf automake libtool

posted @ 2022-01-25 18:05  树下水月  阅读(612)  评论(0编辑  收藏  举报