2751075392:error:141970DF:SSL routines:tls_construct_cke_psk_preamble:psk identity not fount:../openssl-1.1.1s/ssl/statem_clnt.c:2919: 2751075392:error:140E0197:SSL routines:SSL_shutdown:shutdown while in init:../openssl-1.1.1s/ssl/ssl_lib.c:2111:
时间: 2024-04-28 11:22:50 浏览: 238
这似乎是一个与 SSL/TLS 握手过程相关的错误。错误信息中提到了缺少预共享密钥身份标识(PSK identity not found),这可能意味着客户端没有正确地配置或提供必要的 PSK 身份标识,导致 SSL/TLS 握手失败。
您可以检查客户端的 SSL/TLS 配置和 PSK 身份标识设置,确保它们正确无误。您还可以查看服务器端的 SSL/TLS 日志,以了解更多有关握手失败的信息。如果问题仍然存在,请尝试使用其他 SSL/TLS 库或升级您当前使用的库版本。
相关问题
[root@iZuf60b2oqkencqmwd57z1Z bin]# wget https://downloads.xiph.org/releases/speex/speex-1.2.0.tar.gz --2023-05-30 00:47:30-- https://downloads.xiph.org/releases/speex/speex-1.2.0.tar.gz Resolving downloads.xiph.org (downloads.xiph.org)... 140.211.166.31, 2001:470:eb26:42::1 Connecting to downloads.xiph.org (downloads.xiph.org)|140.211.166.31|:443... connected. OpenSSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version Unable to establish SSL connection.
这个错误提示表明您的 OpenSSL 版本可能太旧,无法与 Xiph.Org Foundation 官方网站使用的 TLS 协议版本进行通信。您可以尝试使用以下命令禁用 SSLv3 协议和 TLSv1.0 协议,强制使用 TLSv1.2 协议进行连接:
```
wget --secure-protocol=TLSv1.2 https://downloads.xiph.org/releases/speex/speex-1.2.0.tar.gz
```
如果您仍然无法成功连接,请确保您的 OpenSSL 版本已经更新到最新版本,并尝试在其他时间重新连接。
atest-7.noarch.rpm --2023-06-11 01:06:23-- https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 正在解析主机 dl.fedoraproject.org... 38.145.60.22, 38.145.60.24, 38.145.60.23 正在连接 dl.fedoraproject.org|38.145.60.22|:443... 已连接。 OpenSSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version 无法建立 SSL 连接。
这个错误通常是由于您的系统使用的是较旧的 TLS 版本而导致的。在这种情况下,您可以尝试手动下载 epel-release 包并安装。请按照以下步骤操作:
1. 使用 curl 命令下载 epel-release 包:
```
curl -O http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
```
2. 安装下载的 epel-release 包:
```
sudo yum install epel-release-latest-7.noarch.rpm
```
3. 更新 yum 缓存:
```
sudo yum update
```
现在,您可以按照之前的步骤安装 vsftpd 服务并启用 FTP 服务。
阅读全文