当前位置:   article > 正文

Unable to establish SSL connection.

unable to establish ssl connection.

前言:

  • 出现Unable to establish SSL connection.无法建立连接错误,如果跳过证书验证后(wget --no-check-certificate)wget一直0%,那么有可能是SELinux导致的。

问题出现原因:

  • selinux 是一种安全增强机制,可以限制程序和用户的访问权限,以提高系统的安全性。
  • 然而,有时候 selinux 的设置可能会导致 wget 出现 “Unable to establish SSL connection” 错误。
  • 该错误可能是由于 selinux 限制了 wget 访问网络的权限所致。
  • 当 wget 尝试建立 SSL 连接时,selinux 可能会拦截该操作,导致连接失败。

一、查看selinux状态

  • 查看SELinux status
  • 如果状态为enabled说明selinux已启用
/usr/sbin/sestatus -v
  • 1

二、关闭selinux

  • 临时关闭selinux
setenforce 0
  • 1
  • 永久关闭selinux
# 将selinux禁用
vim /etc/sysconfig/selinux
SELINUX=disabled
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号