error while loading shared libraries: xxx.so.1: cannot open shared object file: No such file or directory
错误原因是缺少依赖库,使用ldd命令查看依赖库,例如:
查找lib库文件的位置(可以使用命令 whereis xxx ),并把目录添加到/etc/ld.so.conf.d/libc.conf中,没有则新建这个文件。然后再运行ldconfig才可以生效。
解决:用以下shell命令解决:(用root用户)