web-dev-qa-db-ja.com

erlangインストールエラー:「必要なもの:libcrypto.so.10(OPENSSL_1.0.2)(64bit)」

Erlangをインストールして、rabbitMQをインストールできるようにしようとしています。これが私のシーケンスとエラーです:

_>yum install erlang
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-
              : manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Resolving Dependencies
--> Running transaction check
---> Package erlang.x86_64 0:22.0.4-1.el7 will be installed
--> Processing Dependency: libcrypto.so.10(OPENSSL_1.0.2)(64bit) for package: erlang-22.0.4-1.el7.x86_64
--> Finished Dependency Resolution
Error: Package: erlang-22.0.4-1.el7.x86_64 (rabbitmq_erlang)
           Requires: libcrypto.so.10(OPENSSL_1.0.2)(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
_

私のLinux情報は次のとおりです。

_>cat /proc/version
Linux version 3.10.0-327.el7.x86_64 ([email protected]) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Thu Oct 29 17:29:29 EDT 2015

>cat /etc/redhat-release
Red Hat Enterprise Linux Server release 7.2 (Maipo)

>cat /etc/*elease
NAME="Red Hat Enterprise Linux Server"
VERSION="7.2 (Maipo)"
ID="rhel"
ID_LIKE="Fedora"
VERSION_ID="7.2"
PRETTY_NAME="Red Hat Enterprise Linux Server 7.2 (Maipo)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.2:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"

REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.2
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="7.2"
Red Hat Enterprise Linux Server release 7.2 (Maipo)
Red Hat Enterprise Linux Server release 7.2 (Maipo)
_

...そしてこれが私のopenssl情報です:

_>openssl version
OpenSSL 1.0.2s  28 May 2019
_

libcrypto.so.10(OPENSSL_1.0.2)(64bit)はどこにあり、インストールできますか?

ご協力いただきありがとうございます!

1
Jonathan M

RHELサーバーにはアクティブなサブスクリプションがありませんが、 これはパッケージをインストールするために必要ですシステムを登録subscription-manager registerと既存または新規の資格を使用する必要があります。 Red Hat Enterprise Linuxサブスクリプションをお持ちでない場合は、サブスクリプションを購入する必要があります。

システムが適切にサブスクライブされると、yumを実行したときに警告メッセージが表示されなくなり、パッケージをインストールできるようになります。

1
Michael Hampton