jfrog人工制品无法验证路由器错误

时间:2020-02-26 21:54:06

标签: artifactory

我下载,解压缩并启动artifactory.sh后,看到以下错误

2020-02-26T21:32:50.496Z [jfac ] [ERROR] [c1b4de79a3f11666] [.j.a.s.s.r.JoinServiceImpl:253] [http-nio-8040-exec-1] - Could not validate router Check-url: http://XXXXXX:8082/router/api/v1/system/ping

然后

2020-02-26T21:32:55.636Z [jfac ] [WARN ] [67b9d42698f5614c] [o.j.c.ExecutionUtils:141      ] [pool-6-thread-2     ] - Retry 20 Elapsed 9.04 secs failed: Registration with router on URL http://localhost:8046 failed with error: UNAVAILABLE: io exception. Trying again

我意识到我缺少明显的东西,但还无法弄清楚。有什么建议?谢谢。

4 个答案:

答案 0 :(得分:16)

Alexey,我怀疑ipv6 ip被起始脚本占用了,导致了这种情况。

可以使用以下命令更新system.yaml(位于var / etc /文件夹中)并尝试吗?

shared:
    node:
        ip: <your ipv4 IP>

答案 1 :(得分:2)

可能对任何人都有帮助。我尝试了很多在谷歌上提到的东西来解决这个问题,但没有用。最后,它通过设置适当的资源得到解决。我使用了 4 GB RAM 和 2 个内核,它工作正常

答案 2 :(得分:1)

Alexey,您看到以下任何错误吗?

  • tomcat本地主机日志-将位于var / log / tomcat
  • router_service.log-位于var / log
  • access_service.log-将位于var / log

潜在问题可能是-

  • 您的机器不允许进行本地主机调用(由于某些安全设置),或者
  • 所有依赖服务由于其他原因未启动

也-请检查您使用的脚本,app / bin文件夹中有一个新的artifactory.sh脚本,应使用。

答案 3 :(得分:0)

就我而言,在尝试访问工件时,我遇到了类似的错误。路由器服务日志:

[root@artifactory-master log]# tail -f router-service.log
2020-03-20T22:17:05.328Z [jfrou] [INFO ] [                ] [bootstrap.go:70               ] [main                ] - Router (jfrou) service initialization started. Version: 1.1.0 Revision: c2646fcb28e2d4ca095b07aacebe509d934cef77 PID: 19062 Home: /opt/jfrog/artifactory
2020-03-20T22:17:05.329Z [jfrou] [INFO ] [                ] [bootstrap.go:73               ] [main                ] - JFrog Router IP: ::1
2020-03-20T22:17:05.334Z [jfrou] [INFO ] [                ] [bootstrap.go:159              ] [main                ] - System configuration encryption report:
shared.newrelic.licenseKey: does not exist in the config file
shared.security.joinKeyFile: file '/opt/jfrog/artifactory/var/etc/security/join.key' - already encrypted
2020-03-20T22:17:05.336Z [jfrou] [INFO ] [                ] [bootstrap.go:78               ] [main                ] - JFrog Router Service ID: jfrou@01e3wgemz9esckmd8v48etdy18
2020-03-20T22:17:05.336Z [jfrou] [INFO ] [                ] [bootstrap.go:79               ] [main                ] - JFrog Router Node ID: artifactory-master
2020-03-20T22:17:07.354Z [jfrou] [INFO ] [                ] [config_holder.go:107          ] [main                ] - configuration update detected
2020-03-20T22:17:10.738Z [jfrou] [FATAL] [                ] [bootstrap.go:100              ] [main                ] - Cluster join: Failed joining the cluster; Error: Error response from service registry, status code: 400; message: Could not validate router Check-url: http://::1:8082/router/api/v1/system/ping; detail: I/O error on GET request for "http:///:1:8082/router/api/v1/system/ping": URI does not specify a valid host name: http:///:1:8082/router/api/v1/system/ping; nested exception is org.apache.http.client.ClientProtocolException: URI does not specify a valid host name: http:///:1:8082/router/api/v1/system/ping

为了给您提供一些背景信息,我在centos 8 VM中运行工件,并且正在通过Windows计算机访问工件图形界面。 这意味着,我正在使用Web浏览器(Chrome)导航到工件实例。

为此,我在VM端更新了文件“主机”和“主机名”(/ etc /):

主机:

127.0.0.1   localhost artifactory-master
::1         localhost artifactory-master

主机名:

artifactory-master

在Windows计算机中,我使用VM主机ip和主机名更新了位于“ C:\ Windows \ System32 \ drivers \ etc”中的主机文件:

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

192.100.100.10 artifactory-master

(为了获得虚拟机的IP,请运行命令ifconfig)

然后,我通过运行以下命令启动工件:

service artifactory start

并尝试在浏览器中成功访问工件:

http://artifactory-master:8082/ui

我停止了该服务,并且为了在尝试后完成目标,我意识到必须在“主机”文件(/ etc /)中注释掉地址“ :: 1”:

主机:

127.0.0.1   localhost artifactory-master
#::1         localhost artifactory-master

最后,我再次启动了该服务,并且能够访问工件。路由器服务日志:

2020-03-24T23:02:17.219Z [jfrou] [INFO ] [                ] [bootstrap.go:70               ] [main                ] - Router (jfrou) service initialization started. Version: 1.1.0 Revision: c2646fcb28e2d4ca095b07aacebe509d934cef77 PID: 14542 Home: /opt/jfrog/artifactory
2020-03-24T23:02:17.220Z [jfrou] [INFO ] [                ] [bootstrap.go:73               ] [main                ] - JFrog Router IP: 127.0.0.1
2020-03-24T23:02:17.224Z [jfrou] [INFO ] [                ] [bootstrap.go:159              ] [main                ] - System configuration encryption report:
shared.newrelic.licenseKey: does not exist in the config file
shared.security.joinKeyFile: file '/opt/jfrog/artifactory/var/etc/security/join.key' - already encrypted
2020-03-24T23:02:17.227Z [jfrou] [INFO ] [                ] [bootstrap.go:78               ] [main                ] - JFrog Router Service ID: jfrou@01e3wgemz9esckmd8v48etdy18
2020-03-24T23:02:17.227Z [jfrou] [INFO ] [                ] [bootstrap.go:79               ] [main                ] - JFrog Router Node ID: artifactory-master
2020-03-24T23:02:19.572Z [jfrou] [INFO ] [                ] [config_holder.go:107          ] [main                ] - configuration update detected
2020-03-24T23:02:25.663Z [jfrou] [INFO ] [                ] [join_executor.go:180          ] [main                ] - Cluster join: Successfully joined the cluster
2020-03-24T23:02:25.813Z [jfrou] [INFO ] [                ] [registry_handler.go:89        ] [main                ] - the following services were registered automatically based on persisted data: jfac@01e3wgdn6q0gvj0czswc8k0gp8, jffe@000, jfmd@01e3wges9tvwawj403y5mxfjp7, jfrt@01e3wgfass87mh1nbcv5rv1t98
2020-03-24T23:02:25.984Z [jfrou] [INFO ] [                ] [main.go:36                    ] [main                ] - Router (jfrou) service initialization completed in 8.808 seconds. Listening on port: 8082
2020-03-24T23:03:01.281Z [jfrou] [INFO ] [7e7df2f621a4e1aa] [local_topology.go:212         ] [main                ] -
###############################################################
###   All services started successfully in 44.081 seconds   ###
###############################################################

PS:我的工件版本是OSS 7.2.1

相关问题