错误:the trustAnchors parameter must be non-empty

错误: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

在window环境运行项目没有问题,但是在linux ubuntu14环境中运行时,在进行重定向时出现错误
ubuntu中安装的是openjdk
解决办法(亲测有效):
1)sudo rm /etc/ssl/certs/java/cacerts 如果没有该文件 不管 直接进行下一步
2)sudo update-ca-certificates -f
3)reboot 重启即可

也可以重新安装jdk 不用openjdk 使用sun公司提供的jdk tar包(没有测试过)

你可能感兴趣的:(java,linux)