Error while running chromedriver: “/lib64/libc.so.6: version `GLIBC_2.14' not found” in CentOS6

时光怂恿深爱的人放手 提交于 2019-12-03 11:24:13

/lib64/libc.so.6: version GLIBC_2.15

The binary you are trying to run was built on a GLIBC-2.15 based system. It will not run on any system with older GLIBC (and your GLIBC is older than 2.14).

/usr/lib64/libstdc++.so.6: version GLIBCXX_3.4.15

Likewise, your binary requires libstdc++.so.6 3.4.15 or above (3.4.15 corresponds to GCC 4.6).

You need to run this binary on a newer system, or to get that binary built for an older one.

And where can I find an OS with GLIBC-2.15

Use distrowatch.com. For example, this link shows that there are no CentOS distributions that fit the bill, but Fedora 17 and later are sufficiently new.

Actually , There is a way to run both chrome and chromedriver on amazon linux, centos 6.x and rhel. basic idea to use libs from a newer os.

See the fully automated script here https://github.com/staier/chromedriver-centos6-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!