centos7 安装lnmp后图形界面中的用户和组打不开了

centos7.9安装了lnmp后(php 7.2.34 mysql5.7.34)图形界面中的用户和组打不开了,使用命令模式 提示如下报错,看报错好像是python的问题,没安装lnmp之前是可以用的。centos7默认是python2.7。有人知道什么原因吗?怎么解决?

img

图形界面下 这些都打不开 会报错误

img

现在python环境版本是多少?
可以参考一下我写的这篇文章:

你php 和mysql版本相差有点大 可能不兼容 要么都用7以上的版本 要么都用7以下的版本
为了安全起见 用最新版最好 还有就是把python的默认版本改成python3

undefine symbol 可能是装了和当前系统软件版本不匹配的东西

说下安装过程?

已经解决了,记录下
可能是存在多个freetype版本造成的

[root@VM-4-9-centos ~]# ldconfig -v|grep freetype
ldconfig: 多次给出路径“/usr/lib”
ldconfig: 多次给出路径“/usr/local/lib”
ldconfig: 多次给出路径“/lib”
ldconfig: 多次给出路径“/lib64”
ldconfig: 无法对 /libx32 进行 stat 操作: 没有那个文件或目录
ldconfig: 多次给出路径“/usr/lib”
ldconfig: 多次给出路径“/usr/lib64”
ldconfig: 无法对 /usr/libx32 进行 stat 操作: 没有那个文件或目录
/usr/local/freetype/lib:
        libfreetype.so.6 -> libfreetype.so.6.12.6
        libfreetype.so.6 -> libfreetype.so.6.14.0

解决办法:
rm -f /etc/ld.so.conf.d/freetype.conf
ldconfig

[root@VM-4-9-centos ~]# ldconfig
[root@VM-4-9-centos ~]# ldconfig -v|grep freetype
ldconfig: 多次给出路径“/usr/lib”
ldconfig: 多次给出路径“/usr/local/lib”
ldconfig: 多次给出路径“/lib”
ldconfig: 多次给出路径“/lib64”
ldconfig: 无法对 /libx32 进行 stat 操作: 没有那个文件或目录
ldconfig: 多次给出路径“/usr/lib”
ldconfig: 多次给出路径“/usr/lib64”
ldconfig: 无法对 /usr/libx32 进行 stat 操作: 没有那个文件或目录
        libfreetype.so.6 -> libfreetype.so.6.14.0
[root@VM-4-9-centos ~]#