在Apache Ignite中使用HTTPS访问REST API。

问题描述 投票:0回答:1

我使用的是Apache Ignite 2.8.0。 这是我的服务器配置。

<property name="sslContextFactory">
    <bean class="org.apache.ignite.ssl.SslContextFactory">
        <property name="keyStoreFilePath" value="C:\\ignite\\apache-ignite-2.8.0-bin\\keystore.jks"/>
        <property name="keyStorePassword" value="1234567"/>
        <property name="trustStoreFilePath" value="C:\\ignite\\\\apache-ignite-2.8.0-bin\\\\trust.jks"/>
        <property name="trustStorePassword" value="123456"/>
    </bean>
</property> 
<property name="connectorConfiguration">

              <bean class="org.apache.ignite.configuration.ConnectorConfiguration">

                    <property name="jettyPath" value="C:\apache-ignite-2.8.0-bin\examples\config\jetty-config.xml" />

              </bean>

        </property>

这是我的jetty-config.xml。 https:/apacheignite.readme.iodocsrest-api。 (复制粘贴)

但它仍然只适用于HTTP。它不工作与HTTPS。我有什么问题吗? 我怎样才能在Rest API上启用HTTPS?

apache https ignite restapi
1个回答
0
投票

遗憾的是 文档片段 是不完整的。

你还需要定义sslContextFactory。碍于情面:

<New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory">
    <Set name="keyStorePath">src/test/keystore/server.jks</Set>
    <Set name="keyStorePassword">123456</Set>
    <Set name="keyManagerPassword">123456</Set>
    <Set name="trustStorePath">src/test/keystore/trust-one.jks</Set>
    <Set name="trustStorePassword">123456</Set>
</New>

你还需要一个不同配置的连接器。

<Call name="addConnector">
    <Arg>
        <New class="org.eclipse.jetty.server.ServerConnector">
            <Arg><Ref refid="Server"/></Arg>
            <Arg>
                <Array type="org.eclipse.jetty.server.ConnectionFactory">
                    <Item>
                        <New class="org.eclipse.jetty.server.SslConnectionFactory">
                            <Arg><Ref refid="sslContextFactory"/></Arg>
                            <Arg>http/1.1</Arg>
                        </New>
                    </Item>
                    <Item>
                        <New class="org.eclipse.jetty.server.HttpConnectionFactory">
                            <Arg><Ref refid="httpCfg"/></Arg>
                        </New>
                    </Item>
                </Array>
            </Arg>
  ...

你还需要信任存储和签名服务器密钥。生成这些东西,特别是那些可能被网络浏览器接受的东西,不在本回答的范围之内。也许可以试试用 letsencrypt 来生成这些。

© www.soinside.com 2019 - 2024. All rights reserved.