Apache-airflow 1.10.12 SSL

发布于 2025-02-04 03:31:58 字数 105 浏览 1 评论 0原文

在我们的EC2实例中,我们已经收到了SSLV3/TLSV1的漏洞,其中安装了Apache-airflow 1.10.12。

请指导我们将SSL协议升级到气流Web UI中的安全连接。

we have received a vulnerability of SSLV3/TLSv1 in our Ec2 instance in which apache-airflow 1.10.12 is installed.

Please guide us to upgrade the SSL protocol to a secure connection in airflow web UI.

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

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

发布评论

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

评论(1

檐上三寸雪 2025-02-11 03:31:58

通过生成自签名证书

openssl genrsa -out private_key.pem 2048
openssl req -new -x509 -key private_key.pem -out cacert.pem -days 1095

,然后更新气流的配置文件IE [airflow.cfg]

web_server_ssl_cert = path/to/cacert.pem
web_server_ssl_key = path/to/private_key.pem

,否则您必须登录AWS Admin Console即可添加附加的HTTPS的入站规则,从而到EC2实例。有关更多详细信息,您可以关注在这里

One way to do it by generating the self signed certificates

openssl genrsa -out private_key.pem 2048
openssl req -new -x509 -key private_key.pem -out cacert.pem -days 1095

And then update the config file of airflow i.e. [airflow.cfg]

web_server_ssl_cert = path/to/cacert.pem
web_server_ssl_key = path/to/private_key.pem

Or else you can have to log in to the AWS admin console to add an inbound rule for HTTPS in the security group attached to the ec2 instance. For more details, you can follow here

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