JKS 文件是否独立于创建它的机器?

Is JKS file independent of machine in which it's been created?

我担心的是,我是否可以将另一台机器上的 jks 文件用于我的机器(Docker 容器),只需将其复制到我的机器中并在 standalone.xml?

我提供的方式如下

<security-realm name="UndertowRealm">
                <server-identities>
                    <ssl>
                        <keystore path="/opt/jboss/certs/wildcard.qa.ch3.s.com.jks" keystore-password="xxxx"/>
                    </ssl>
                </server-identities>
            </security-realm>

是的,JKS 是独立于机器的,可以转移到不同的machines/servers,同时保持其完整性。

密钥库可能受密码保护,在这种情况下,您可能需要在使用前对其进行验证。

希望对您有所帮助。