zoukankan      html  css  js  c++  java
  • 解决IDEA提示Untrusted Server's certificate 证书不可用( Server's certificate is not trusted )

    Untrusted Server's certificate

     如果你用的是Intellij系列IDE(GoLand, PHPStorm, WebStorm, IDEA),突然弹出个提示『Untrusted Server's certificate 』

    莫慌,这是因为你用了破解版的 IDE,破解过程中有个hosts绑定的操作:

    0.0.0.0 account.jetbrains.com
    0.0.0.0 www.jetbrains.com
    

    而本机恰好做过一个 SSL 绑定,IDE 查询注册码是否正版时,触发了https访问导致,而本机的 SSL 证书多数是自己生成的,不是正规机构颁发的证书,所以会弹出这个不可信证书的提示框。

    解决办法

    1. 去除本机的nginx https解析即可
    2. 让 IDE 自动认可未授信证书,操作路径:Setting -> Tools -> Server Certificates -> Accept non-trusted certificates automatically (此项打勾)

    以上方法二选一即可

  • 相关阅读:
    Linux基础
    杂谈
    MySQL基础
    Effective Java-第4章
    Effective Java-第三章
    Effective Java-第二章
    mybatis
    mapper.xml文件
    Mybatis
    mybatis-config.xml文件详解
  • 原文地址:https://www.cnblogs.com/gentlemanwuyu/p/11587094.html
Copyright © 2011-2022 走看看