你的连接不是私人的 NET::ERR_CERT_WEAK_SIGNATURE_ALGORITHM

your connection is not private NET::ERR_CERT_WEAK_SIGNATURE_ALGORITHM

我在我的机器上安装了 chrome。我正在使用 ubuntu 14.04 我可以访问除 google 网站之外的网站.. 当试图访问 google 网站时我收到此错误,

我该如何解决?

安装 libnss3 在 Ubuntu 14.04

上为我修复了它

sudo apt-get 安装 libnss3-1d

https://nobopintu.wordpress.com/2017/06/10/ubuntu-google-chrome-your-connection-is-not-private-neterr_cert_weak_signature_algorithm-error/

上找到了这个解决方案

运行 此命令以 XML 格式创建 plist 文件

cat >com.google.Chrome.plist <<POLICY
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>EnableSha1ForLocalAnchors</key>
    <true/>
</dict>
</plist>
POLICY

使用 plutil -convert binary1 com.google.Chrome.plist

将其转换为二进制格式

把它移到你的系统首选项中 sudo cp com.google.Chrome.plist /Library/Preferences/

现在访问 chrome://policy 并确保 EnableSha1ForLocalAnchors 设置为 true 并且状态正常(需要 Chrome 重启)