This is an article about checking system requirements for the Management Console installation. Full system requirements can be found here.
Windows
Open Windows Command Prompt (cmd) and run winver command to verify your Windows version.
Linux
Example output on the screenshot below.
Run this command to check your kernel version:
uname -r
Run this command to check you GLIBC version:
ldd --version
Ubuntu
Run this command in Terminal to locate the path to the active library:
/sbin/ldconfig -p | grep stdc++
Run these commands using the path from before to verify which version of ABI and library is available:
strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep CXXABI
strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep LIBCXX
RHEL
Run these commands to verify which version of ABI and library is available:
nm /usr/lib/libstdc++.so.6 | fgrep CXXABI
nm /usr/lib/libstdc++.so.6 | fgrep LIBCXX