You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vmtool --action getInstances --className java.lang.String --limit 10 报错
vmtool error: /tmp/ArthasJniLibrary5353081237739333147.tmp: libstdc++.so.6: cannot open shared object file: No such file or directory
ldd libArthasJniLibrary-x64.so 报错
/lib/ld-musl-x86_64.so.1 (0x7ff1ab04f000)
Error loading shared library libstdc++.so.6: No such file or directory (needed by libArthasJniLibrary-x64.so)
libc.so.6 => /lib/ld-musl-x86_64.so.1 (0x7ff1ab04f000)
Error relocating libArthasJniLibrary-x64.so: _ZNSt8ios_base4InitC1Ev: symbol not found
Error relocating libArthasJniLibrary-x64.so: _ZNSt8ios_base4InitD1Ev: symbol not found
The text was updated successfully, but these errors were encountered:
出现错误信息 "libstdc++.so.6: cannot open shared object file: No such file or directory" 通常意味着你的系统中缺少 libstdc++.so.6 这个库文件,或者库文件的版本不满足运行时的需求。这个库是 GCC(GNU Compiler Collection)的一部分,提供了 C++ 标准库的实现。
当你使用 ldd 命令检查一个共享库时,如果出现 "Error loading shared library libstdc++.so.6: No such file or directory (needed by ...)" 的错误,这表明你的系统中没有找到所需的 libstdc++.so.6 库,或者库的版本不符合要求。
vmtool --action getInstances --className java.lang.String --limit 10 报错
vmtool error: /tmp/ArthasJniLibrary5353081237739333147.tmp: libstdc++.so.6: cannot open shared object file: No such file or directory
ldd libArthasJniLibrary-x64.so 报错
/lib/ld-musl-x86_64.so.1 (0x7ff1ab04f000)
Error loading shared library libstdc++.so.6: No such file or directory (needed by libArthasJniLibrary-x64.so)
libc.so.6 => /lib/ld-musl-x86_64.so.1 (0x7ff1ab04f000)
Error relocating libArthasJniLibrary-x64.so: _ZNSt8ios_base4InitC1Ev: symbol not found
Error relocating libArthasJniLibrary-x64.so: _ZNSt8ios_base4InitD1Ev: symbol not found
The text was updated successfully, but these errors were encountered: