79772398

Date: 2025-09-23 08:57:40
Score: 1
Natty:
Report link

the warning errors that you are observing in the logs are related to the JFConnect microservice in the Artifactory. The JFConnect is trying to communicate with the https://jes.jfrog.io/api/v1/register, and it is returning connection refused. Since you are using a proxy, you may specify the proxy configuration as below :

For Helm -

jfconnect:
   # Configure only if you use an Artifactory version before 7.77.
   extraEnvironmentVariables:
   - name: http_proxy
     value: http://<proxy URL>/
   - name: https_proxy
     value: http://<proxy URL>/
   - name: no_proxy
     value: localhost,127.0.0.1

other installation types - add the following configuration in system.yaml file -

jfconnect:
    # Configure only if you use an Artifactory version before 7.77.
    env:
        http_proxy: "http://<proxy URL>"
        https_proxy: "http://<proxy URL>"
        no_proxy: “localhost, 127.0.0.1”

check this article for more information ! https://jfrog.com/help/r/jfrog-installation-setup-documentation/jfconnect-microservice

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Prakriti Vishwakarma