nodejs12 v12.13.0-0 errors when running node -v

Issue #91 resolved
John S created an issue

I upgraded node to the latest version of nodejs (v12.13.0-0) using yum update nodejs12.

After the upgrade had completed, I issued the command node -v. It generated the following errors:

Could not load program node:
rtld: 0712-001 Symbol ENGINE_by_id was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_ctrl_cmd_string was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_finish was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_free was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_init was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_load_builtin_engines was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_load_private_key was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ENGINE_set_default was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol ERR_load_ENGINE_strings was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-001 Symbol SSL_CTX_set_client_cert_engine was referenced
from module node(), but a runtime definition
of the symbol was not found.
rtld: 0712-002 fatal error: exiting.

This occurs using a PUTTY session as well as QP2TERM.

Comments (5)

  1. Kevin Adler

    Sorry, it seems that Node.js was rebuilt with a newer build of OpenSSL but the dependency was not added automatically. Please run yum upgrade libopenssl1_1 to get the needed version. I will update the package so that in the future it will be done automatically.

  2. Kevin Adler

    FYI, we have pushed out an update of nodejs12 that will pull in the necessary version of the OpenSSL package so you shouldn’t run in to this problem again.

  3. Log in to comment