感谢您的关注,我们一直致力于为您提供放心、满意的服务。
www/server/php/56/sbin/php-fpm eror while loading shared libraries: libcaresso.2: cannot open shared object file: No such file ordirectory
出现这个错误提示是缺少动态库:libcares.so.2
Centos系统输入SSH内输入依次以下内容安装所需库后重启PHP:
sudo yum install -y c-ares
sudo ldconfigDebian/Ubuntu系统SSH中依次输入以下内容安装成功后重启PHP即可。
sudo apt update
sudo apt install -y libc-ares2
sudo ldconfig