Linux OpenSSL 如何禁用和/或卸载

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/14680315/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 18:54:55  来源:igfitidea点击:

OpenSSL how to Disable and/or Uninstall

linuxapachesslhttpsopenssl

提问by u775856

I installed OpenSSL on the Apache/RHEL and now I will have certified SSL 'Trusted Root CA' and will install it. So I need to disable or uninstall OpenSSL.

我在 Apache/RHEL 上安装了 OpenSSL,现在我将认证 SSL“受信任的根 CA”并安装它。所以我需要禁用或卸载 OpenSSL。

How can I:

我怎样才能:

  • Disable the OpenSSL?
  • Uninstall the OpenSSL?
  • 禁用 OpenSSL?
  • 卸载 OpenSSL?

采纳答案by user207421

I have no idea why you think acquiring a signed certificate implies that you need to uninstall OpenSSL, but whatever your reason, you are mistaken. It doesn't. Leave it alone. You need it.

我不知道为什么您认为获得签名证书意味着您需要卸载 OpenSSL,但无论您出于何种原因,您都错了。它没有。不要管它。你需要它。

回答by JakeGould

Depends on how you installed it to begin with.

取决于您如何安装它。

sudo yum remove openssl

Should work. But you might need to find the exact name of the package that was installed. To search on your local system for the package do this:

应该管用。但是您可能需要找到已安装包的确切名称。要在本地系统上搜索包,请执行以下操作:

rpm -qa | grep openssl

And then yum removethe exact named package you have installed.

然后yum remove是您已安装的确切命名包。

Or you can search the repository for all packages named opensslor a variant.

或者,您可以在存储库中搜索所有已命名的包openssl或变体。

sudo yum search openssl