CentOS7.9安装gmssl时,make test后再../test/recipes/70-test_sslcbcpadding.t卡住不动
时间: 2024-01-03 21:02:53 浏览: 68
hue-4.10.0_Centos7.9安装部署手册.rar
这个问题可能与 OpenSSL 版本有关,因为 CentOS 7.9 默认安装的 OpenSSL 版本比较老,而 GmSSL 依赖的 OpenSSL 版本要求比较高。可以尝试升级 OpenSSL 和 GmSSL,或者手动编译 GmSSL。
以下是手动编译 GmSSL 的步骤:
1. 下载 GmSSL 源代码包,可以从官网下载最新版本:https://gmssl.org/
2. 解压源代码包,进入源代码目录。
3. 执行以下命令编译和安装 GmSSL:
```
./config --prefix=/usr/local/gmssl --openssldir=/usr/local/gmssl enable-ssl3 enable-ssl3-method
make
make test
sudo make install
```
其中,`--prefix` 指定 GmSSL 的安装目录,`--openssldir` 指定 OpenSSL 的安装目录,`enable-ssl3` 和 `enable-ssl3-method` 开启 SSLv3 支持。
4. 添加 GmSSL 的库路径到 LD_LIBRARY_PATH 环境变量中,例如:
```
export LD_LIBRARY_PATH=/usr/local/gmssl/lib:$LD_LIBRARY_PATH
```
5. 然后再次执行 `../test/recipes/70-test_sslcbcpadding.t` 测试命令,应该可以正常运行了。
如果还有问题,可以尝试升级 OpenSSL 和 GmSSL 版本,或者查看 GmSSL 的文档和错误日志,排查问题。
阅读全文