如何解决Nifi-Registry - 与 git 集成
我正在使用 Apache NiFi-Registry 并希望将其与 git 集成。 所以,我有一个注册表 docker 容器,其中有一个卷到主机中 git rep 所在的目录。我用 https 克隆了代表,并在容器中使用了不安全的 nifi-registry 实例。 provider.xml 文件如下所示:
<flowPersistenceProvider>
<class>org.apache.nifi.registry.provider.flow.git.GitFlowPersistenceProvider</class>
<property name="Flow Storage Directory">rep</property>
<property name="Remote To Push">origin</property>
<property name="Remote Access User">myuser</property>
<property name="Remote Access Password">mypass</property>
</flowPersistenceProvider>
提交工作正常,但没有推送:
ERROR [GitFlowMetaData Push thread] o.a.n.r.p.flow.git.GitFlowMetaData 由于无法将提交推送到源 org.eclipse.jgit.api.errors.TransportException: https://myuser@xxx/path/to/rep.git: 安全连接到 https://myuser@xxx/path/to/rep.git 由于 SSL 问题无法建立 org.eclipse.jgit.api.errors.TransportException: https://myuser@xxx/path/to/rep.git: 安全连接到 https://myuser@xxx/path/to/rep.git 由于 SSL 问题无法建立
我已经在我的代表中运行了这个命令:
git config http.sslVerify false
知道该怎么做吗?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。