I'm having issues updating node.js for a single user in a shared hosting server, which is being installed by NVM package.Whenever we try to switch versions to a newer one, this error is displayed:
node: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.14' not found (required by node)
node: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.18' not found (required by node)
node: /usr/lib64/libstdc++.so.6: version `CXXABI_1.3.5' not found (required by node)
node: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by node)
node: /lib64/libc.so.6: version `GLIBC_2.16' not found (required by node)
node: /lib64/libc.so.6: version `GLIBC_2.17' not found (required by node)
node: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by node)
As far as I'm concerned, those dependencies are locater in the root. But I'm not sure whether to proceed to the update or to leave it as it is...
My question is:
Is there a way to update those libraries without affecting the rest of the server? Is there another way to update node without affecting the rest of the client of that server?
Any help will be appreciated, thanks in advance