Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 Tomcat 服务器,具有不同的“cacerts”文件。一方面,运行“keytool -list -keystore cacerts”表示我的密钥库包含 95 个条目,另一方面,它说 96。我尝试保存列表输出并针对它们运行 diff,但证书似乎处于不同的顺序。在我写东西之前,是否有一个智能实用程序可以告诉我文件之间的差异?谢谢!
使用sort:
sort
user@host1$ keytool -list -keystore cacerts | sort > certs1 user@host2$ keytool -list -keystore cacerts | sort > certs2
然后将这两个文件复制到一个主机和差异:
diff certs1 certs2