Java EE 6 和 Certutil

发布于 2024-08-30 01:22:33 字数 166 浏览 10 评论 0原文

我已经使用 GlassfishV3 安装了 Java EE 6。我想使用NSS工具来管理服务器的安全性,即使用certutil生成证书。但是我在 Glassfish 中找不到 NSS 库和工具。另一方面,我阅读了Java EE 6的文档,它说它仍然支持NSS!

有人知道这件事吗?

谢谢

I have installed Java EE 6 with GlassfishV3. I want to use NSS tools to manage the security of the server, i.e generating certificates using certutil. However I can't find the NSS library and tools in Glassfish. On the other hand, I read the documentations of Java EE 6 and it says that it still supports NSS!

Does anybody know about this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖上的星空 2024-09-06 01:22:33

Linux 中有一个这样的工具,位于 /usr/bin/certutil 下。只需将证书添加到数据库中,以便您可以在之后列出证书。要添加由受信任的 CA 颁发的证书,只需在 Linux 中执行以下命令:

$ sudo certutil -A -n ServerCert -t "P,u,u" -d /path/to/glassfish/domains/domain1/config/ directory -i  /path/to/your/server-cert.pem

现在要获取已安装证书的列表,请发出如下命令:

$ sudo certutil -L -d /path/to/glassfish/domains/domain1/config/

There is one such tool in linux under /usr/bin/certutil. Just add a certificate to the database so you could list certificates after that. To add a certificate issued by a trusted CA just execute this command in linux:

$ sudo certutil -A -n ServerCert -t "P,u,u" -d /path/to/glassfish/domains/domain1/config/ directory -i  /path/to/your/server-cert.pem

Now to get a list of installed certificates issue a command like this:

$ sudo certutil -L -d /path/to/glassfish/domains/domain1/config/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文