Centos 5.7 `GLIBC_2.7' 上的 JProfiler未找到
JProfiler代理似乎需要glibc 2.7,但Centos有glibc 2.5。有没有人成功编译了 glibc 2.5 的 jprofiler 代理,或者以前版本的 JProfiler 是否使用 2.5 创建了代理?
实际错误是:
VM 初始化期间发生错误
无法在绝对路径中找到代理库 /opt/jprofiler/bin/linux-x64/libjprofilerti.so,错误:/lib64/libc.so.6:找不到版本“GLIBC_2.7”(/opt/jprofiler 需要) /bin/linux-x64/libjprofilerti.so)
JProfiler agent seems to require glibc 2.7, but Centos has glibc 2.5. Has anyone successfully compiled the jprofiler agent for glibc 2.5 or did previous version of JProfiler create agents with 2.5?
The actual error is:
Error occurred during initialization of VM
Could not find agent library /opt/jprofiler/bin/linux-x64/libjprofilerti.so in absolute path, with error: /lib64/libc.so.6: version `GLIBC_2.7' not found (required by /opt/jprofiler/bin/linux-x64/libjprofilerti.so)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是您使用的 JProfiler 是在使用 glibc-2.7(或更高版本)的系统上构建的。
一般来说,UNIX 系统支持向后兼容性(在旧系统上编译的代码可以继续在较新的系统上工作),但不支持前向兼容性(您不能指望在较新的系统上构建的代码可以在较旧的系统上工作)。
您的选择是:升级您的 glibc 版本,或获取不同版本的 JProfiler(基于 glibc-2.5 或更早版本的系统构建)。
The problem is that JProfiler you are using has been built on a system with glibc-2.7 (or later).
In general, UNIX systems support backwards compatibility (code compiled on an older system continues to work on a newer one), but not forward compatibility (you can't expect code built on a newer system to work on an older one).
Your choices are: upgrade your version of glibc, or obtain a different build of JProfiler (that was built on glibc-2.5 based system or older).
这实际上是 7.0.1 中的回归,一个简单的解决方法是使用 7.0:
http: //download.ej-technologies.com/jprofiler/jprofiler_linux_7_0.tar.gz
我们很快就会解决这个依赖问题(我的公司开发JProfiler)。感谢您告知我们。
That's actually a regression in 7.0.1, an easy workaround is to use 7.0:
http://download.ej-technologies.com/jprofiler/jprofiler_linux_7_0.tar.gz
We'll fix this dependency problem shortly (my company develops JProfiler). Thanks for letting us know.