CentOs 6.5 安装OpenSSL解析
哈哈
阅读:592
2021-03-31 21:49:51
评论:0
今天在搭建Tomcat +nginx 时,提示我没有安装OpenSSl。
提示的错误代码如下:
</pre><pre name="code" class="html">./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option.
发现了问题,我们就得解决问题,CentOs 安装OpenSSL 的详细步骤如下:
1、安装OpenSSL
# tar zxvf openssl-1.0.0a.tar.gz
# cd openssl-1.0.0a
# ./config --prefix=/usr/local/openssl
# make && make install
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。