适用于私有云的 Edge v. 4.17.09
默认情况下,路由器和邮件处理器之间的 TLS 处于停用状态。
按照以下步骤在路由器和邮件之间启用 TLS 加密 处理器:
- 确保路由器可以访问消息处理器上的端口 8082。
- 生成包含 TLS 证书和私钥的密钥库 JKS 文件。如需了解详情, 请参阅配置 TLS/SSL 适用于 Edge On Premises。
- 将密钥库 JKS 文件复制到消息处理器服务器上的目录中,例如 /opt/apigee/customer/application.
- 更改 JKS 文件的权限和所有权:
>chown apigee:apigee /opt/apigee/customer/application/keystore.jks
>chmod 600 /opt/apigee/customer/application/keystore.jks
其中 keystore.jks 是其名称 密钥存储区文件的名称 - 修改文件 /opt/apigee/customer/application/message-processor.properties。 如果该文件不存在,请创建该文件。
- 在 message-processor.properties 文件中设置以下属性:
conf_message-processor-communication_local.http.ssl=true
conf/message-processor-communication.properties+local.http.port=8443
conf/message-processor-communication.properties+local.http.ssl.keystore.type=jks
conf/message-processor-communication.properties+local.http.ssl.keystore.path=/opt/apigee/customer/application/keyStore.jks
conf/message-processor-communication.properties+local.http.ssl.keyalias=apigee-devtest
# 在下面输入经过混淆处理的密钥库密码。
conf/message-processor-communication.properties+local.http.ssl.keystore.password=OBF:obsPword
其中 keyStore.jks 是您的密钥库文件,以及 obsPword 是经过混淆处理的密钥库和密钥别名密码。请参阅 配置 TLS/SSL Edge 本地,了解如何生成经过混淆处理的密码。 - 确保 message-processor.properties
文件的所有者是“apigee”用户:
>chown apigee:apigee /opt/apigee/customer/application/message-processor.properties - 停止消息处理器和路由器:
/opt/apigee/apigee-service/bin/apigee-service 边缘消息处理器停止
/opt/apigee/apigee-service/bin/apigee-service edge-router stop - 在路由器上,删除 /opt/nginx/conf.d 中的所有文件:
>室 - F /opt/nginx/conf.d/* - 启动消息处理器和路由器:
/opt/apigee/apigee-service/bin/apigee-service 边缘消息处理器启动
/opt/apigee/apigee-service/bin/apigee-serviceedge-router 启动 - 对任何其他消息处理器重复上述步骤。
在路由器和消息处理器之间启用 TLS 后,消息处理器日志文件 包含此 INFO 讯息:
MessageProcessorHttpSkeletonFactory.configureSSL() : Instantiating Keystore of type: jks
此 INFO 语句确认路由器和邮件处理器之间的 TLS 运行正常。
下表列出了 message-processor.properties 中的所有可用属性:
媒体资源 |
说明 |
---|---|
conf_message-processor-communication_local.http.host=<localhost 或 IP 地址> |
可选。要监听路由器连接的主机名。这会覆盖主机 。 |
conf/message-processor-communication.properties+local.http.port=8998 |
可选。要监听路由器连接的端口。默认值为 8998。 |
conf_message-processor-communication_local.http.ssl=<false |true> |
将此项设为 true 即可启用 TLS/SSL。默认值为 false。启用 TLS/SSL 后 必须设置 local.http.ssl.keystore.path 和 local.http.ssl.keyalias. |
conf/message-processor-communication.properties+local.http.ssl.keystore.path= |
密钥库的本地文件系统路径(JKS 或 PKCS12)。当 local.http.ssl=true 时为必填项。 |
conf/message-processor-communication.properties+local.http.ssl.keyalias= |
密钥库中用于 TLS/SSL 连接的密钥别名。必须满足以下条件: local.http.ssl=true. |
conf/message-processor-communication.properties+local.http.ssl.keyalias.password= |
用于对密钥库中的密钥进行加密的密码。使用经过混淆处理的密码 格式:OBF:xxxxxxxxxx |
conf/message-processor-communication.properties+local.http.ssl.keystore.type=jks |
密钥库类型。目前仅支持 JKS 和 PKCS12。默认值为 JKS。 |
conf/message-processor-communication.properties+local.http.ssl.keystore.password= |
可选。密钥库的经过混淆处理的密码。使用经过混淆处理的密码 格式:OBF:xxxxxxxxxx |
conf_message-processor-communication_local.http.ssl.ciphers=<cipher1,cipher2> |
可选。配置后,系统仅允许使用列出的加密算法。如果省略,请使用全部 以及 JDK 支持的加密套件。 |