只为我自己和其他人添加这个参考。
第一次安装了xampp,并在尝试运行启动脚本时遇到此错误。
error while loading shared libraries: libc.so.6
解决方法是更改/ opt / lampp / xampp脚本中的内核版本
##export LD_ASSUME_KERNEL=2.2.5
export LD_ASSUME_KERNEL=3.11.6
xampp脚本将redhat内核设置为2.2.5,但我的发现是3.11.6,如下所示
[root@2008pc etc]# rpm -q kernel
kernel-3.11.6-200.fc19.x86_64
答案 0 :(得分:0)
很可能你可以在lampp脚本的第50行找到错误,它应该如下所示:
if egrep "Fedora" /etc/redhat-release > /dev/null
对于CentOS,我们需要将Centora替换为CentOS,之后改变如下:
if egrep "CentOS" /etc/redhat-release > /dev/null
进行上述更改后,尝试使用以下操作启动lampp,它应该没有任何问题。
$ /opt/lampp/lampp start
或
./lampp start
其中/ opt / lampp是lampp服务器的根目录。