如何解决在Ubuntu下GoAgent访问Youtube,Google相关站点SSL错误

引言: 在Ubuntu系统上,访问Youtube总是报证书无法识别,由于其是基于SSL协议而来,所以,就是无法正常访问,终于找到类似网友的解决方案。


该办法是从互联网上找到的,具体解决办法如下:

google plus, twitter等网站遇到“the site's security certificate is not trusted ****”此类错误提示。其实这是因为goagent证书没有导入到系统的证书库中,而Google Chrome浏览器本身无法导入证书(这与Firefox不同),它使用系统的证书库。为此,需要我们手动导入。
      1,安装证书导入工具:
           sudo apt-get install libnss3-tools
      2, 将goAgent文件夹内的证书文件CA.crt导入(下面中括号内是证书的绝对路径,因人而异,注意)
           certutil -d sql:$HOME/.pki/nssdb -A -t TC -n "goagent" -i [/path/to/goagent/local/CA.crt]
      之后重新打开G+等就没有提示证书错误了。
二,google plus的图标显示不正常。据说原因是因为这些图像保存在googleusercontent.com域,需要重新设置host ip。
        1,root下打开host文件:sudo gedit /etc/hosts
        2,把以下内容添加到host文件:173.194.38.143 ssl.gstatic.com
        3,在goagent添加新规则:*://gstatic.com/*

  至于windows下如何解决SSL的问题,可以自行上网搜索一下.

参考资料:

   http://blog.sina.com.cn/s/blog_6f808e5101012mom.html

你可能感兴趣的:(error,Google,ssl,ubuntu,chrome,Youtube)