artifactory-docker-examples icon indicating copy to clipboard operation
artifactory-docker-examples copied to clipboard

JFrog Artifactory startup logs are not clean having 404, 503 ERRORS

Open gouravsw opened this issue 2 years ago • 4 comments

Hello,

I am trying to deploy the artifactory's latest version 7.25.7 using docker-compose as the root user. All the containers are up and running while checking using the docker ps command.

While traversing through the logs, I can see below ERRORS and WARN messages. Will appreciate it if someone can please guide or provide me with pointers to debug these issues with Artifactory so that logs will be clean.

a snippet of logs where ERROR and WARN are there.

  1. ERROR Logs with code 404 and 503

artifactory | 2021-09-15T04:26:47.140Z [jffe ] [ERROR] [ ] [ ] [main ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 404 code artifactory | 2021-09-15T04:26:50.163Z [jffe ] [ERROR] [ ] [ ] [main ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code artifactory | 2021-09-15T04:26:51.176Z [jffe ] [ERROR] [ ] [ ] [main ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code artifactory | 2021-09-15T04:26:52.177Z [jffe ] [INFO ] [ ] [ ] [main ] - pinging artifactory, attempt number 20 artifactory | 2021-09-15T04:26:52.225Z [jffe ] [ERROR] [ ] [ ] [main ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code

As per the logs /api/system/ping call is returning 404 and 503 error code. Artifactory's latest version has 8081 and 8082 ports.

I have checked if ports are opened or not using nmap?

For non-root user's they are opened but not for the root user.

Will there be a need to open the port for the root user, to fix this issue?

I also tried to run the curl command for ports 8081 and 8082 from the root and non-root user and getting the response as OK.

Could someone point to fix it?

  1. WARN logs for readiness test

artifactory | 2021-09-15T04:26:58.700Z [jfrou] [WARN ] [7826cf59c765d71c] [local_topology.go:256 ] [main ] - Readiness test failed with the following error: "required node services are missing or unhealthy"

Could someone please suggest the fix?

  1. ERROR message for go code where timeout value exceeds and didn't got any response

artifactory | 2021-09-15T05:06:46.079Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28 ] [main ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]

artifactory | 2021-09-14T12:48:51.887Z [jfmd ] [INFO ] [20f799211ef4f8 ] [accessclient.go:58 ] [main ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [access_client] artifactory | 2021-09-14T12:48:51.997Z [jfevt] [INFO ] [2c9fae248f2f3455] [access_thin_client.go:103 ] [main ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup] artifactory | 2021-09-14T12:48:52.236Z [jfob ] [INFO ] [1103f38fe7c944fd] [access_thin_client.go:103 ] [main ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: failed connecting to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup]

As per the below article, we can ignore the above ERROR and WARN, if curl localhost:8082/access/api/v1/system/ping send back's OK.

https://stackoverflow.com/questions/68951713/artifactory-oss-metadata-service-logs-project-update-error

Kindly confirm, if this is the case? Or there is a fix for these errors?

Please find the docker-compose file and the complete logs

version: '3'
services:
  postgresql:
    #image: postgres:13.4
    image: docker.bintray.io/postgres:13.1
    container_name: postgresql
    # ports:
    #  - 5432:5432
    environment:
     - POSTGRES_DB=artifactory
     # The following must match the DB_USER and DB_PASSWORD values passed to Artifactory
     - POSTGRES_USER=artifactory
     - POSTGRES_PASSWORD=xxxxxxxxxxxx
    volumes:
     - /data2/postgresql:/var/lib/postgresql/data
     - /data2/pg_export:/var/tmp
    restart: always
    ulimits:
      nproc: 65535
      nofile:
        soft: 32000
        hard: 40000
  artifactory:
    image: docker.bintray.io/jfrog/artifactory-pro:7.25.7
    container_name: artifactory
    ports:
     - 8082:8082
     - 8081:8081
    depends_on:
     - postgresql
    links:
     - postgresql
    volumes:
     - /data2/artifactory:/var/opt/jfrog/artifactory
     #- /artifactory/backup:/artifactory/backup
     #- /artifactory/ldap_certs:/artifactory/ldap_certs
    environment:
     - JF_SHARED_DATABASE_TYPE=postgresql
     # The following must match the POSTGRES_USER and POSTGRES_PASSWORD values passed to PostgreSQL
     - JF_SHARED_DATABASE_USER=artifactory
     - JF_SHARED_DATABASE_PASSWORD=xxxxxxxxxxxx
     # Add extra Java options by uncommenting the following line
     - JF_ROUTER_ENTRYPOINTS_EXTERNALPORT=8082
     # - ENABLE_MIGRATION=y
    restart: always
    ulimits:
      nproc: 65535
      nofile:
        soft: 32000
        hard: 40000
  postgresql-exporter:
    # Running PostgresQl exporter
    image: wrouesnel/postgres_exporter
    container_name: postgresql-exporter
    ports:
     - 9187:9187
    depends_on:
     - postgresql
    links:
     - postgresql
    environment:
     - DATA_SOURCE_NAME=postgresql://artifactory:xxxxxxxxxxxx@postgresql:5432/?sslmode=disable
    restart: always
    ulimits:
      nproc: 65535
      nofile:
        soft: 32000
        hard: 40000
  artifactory-exporter:
    # Running Artifactory exporter
    image: peimanja/artifactory_exporter:latest
    container_name: artifactory-exporter
    ports:
     - 9531:9531
    depends_on:
     - artifactory
    environment:
     - ARTI_USERNAME=artifactory
     - ARTI_PASSWORD=xxxxxxxxxxxx
    restart: always
    ulimits:
      nproc: 65535
      nofile:
       soft: 32000
       hard: 40000

Logs

[root@iesnnscidartifactory1 artifactory]# docker-compose up
Creating network "artifactory_default" with the default driver
Creating postgresql ... done
Creating postgresql-exporter ... done
Creating artifactory         ... done
Creating artifactory-exporter ... done
Attaching to postgresql, postgresql-exporter, artifactory, artifactory-exporter
artifactory             | Preparing to run Artifactory in Docker
artifactory-exporter    | level=info ts=2021-09-15T04:25:59.543Z caller=artifactory_exporter.go:30 msg="Starting artifactory_exporter" version="(version=master, branch=master, revision=7528200b453bc35480c1ed62f4cb01b671886f03)"
artifactory-exporter    | level=info ts=2021-09-15T04:25:59.544Z caller=artifactory_exporter.go:31 msg="Build context" context="(go=go1.15.7, user=, date=2021-02-03T18:54:26Z)"
artifactory-exporter    | level=info ts=2021-09-15T04:25:59.544Z caller=artifactory_exporter.go:32 msg="Listening on address" address=:9531
artifactory             | Running as uid=1030(artifactory) gid=1030(artifactory) groups=1030(artifactory)
artifactory             | Dockerfile for this image can found inside the container.
artifactory             | To view the Dockerfile: 'cat /docker/artifactory-pro/Dockerfile.artifactory'.
postgresql              |
postgresql              | PostgreSQL Database directory appears to contain a database; Skipping initialization
postgresql              |
postgresql              | 2021-09-15 04:25:58.897 UTC [1] LOG:  starting PostgreSQL 13.1 (Debian 13.1-1.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
artifactory             | Resolved JF_SHARED_DATABASE_TYPE (postgresql) from environment variable
postgresql              | 2021-09-15 04:25:58.897 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
postgresql-exporter     | time="2021-09-15T04:25:59Z" level=info msg="Starting Server: :9187" source="postgres_exporter.go:1837"
artifactory             | Resolved .shared.database.url (__sensitive_key_hidden___) from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | Waiting for DB postgresql to be ready on postgresql/5432 for 30 seconds
postgresql              | 2021-09-15 04:25:58.897 UTC [1] LOG:  listening on IPv6 address "::", port 5432
postgresql              | 2021-09-15 04:25:58.898 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
postgresql              | 2021-09-15 04:25:58.901 UTC [26] LOG:  database system was shut down at 2021-09-15 04:25:47 UTC
postgresql              | 2021-09-15 04:25:58.906 UTC [1] LOG:  database system is ready to accept connections
artifactory             | Copying Artifactory bootstrap files
artifactory             | 2021-09-15T04:26:29.551Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .shared.node.id (iesnnscidartifactory1) from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:29.589Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .shared.node.ip (137.202.109.164) from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:29.775Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .artifactory.tomcat.connector.extraConfig (connectionTimeout='7200000') from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:29.973Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved JF_SHARED_DATABASE_TYPE (postgresql) from environment variable
artifactory             | 2021-09-15T04:26:30.051Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .shared.database.url (__sensitive_key_hidden___) from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:30.074Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved JF_SHARED_DATABASE_USER (artifactory) from environment variable
artifactory             | 2021-09-15T04:26:30.098Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved JF_SHARED_DATABASE_PASSWORD (__sensitive_key_hidden___) from environment variable
artifactory             | 2021-09-15T04:26:30.133Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .artifactory.database.maxOpenConnections (300) from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:30.311Z [shell] [INFO ] [] [installerCommon.sh:1514       ] [main] - Checking open files and processes limits
artifactory             | 2021-09-15T04:26:30.326Z [shell] [INFO ] [] [installerCommon.sh:1517       ] [main] - Current max open files is 32000
artifactory             | 2021-09-15T04:26:30.340Z [shell] [INFO ] [] [installerCommon.sh:1528       ] [main] - Current max open processes is 65535
artifactory             | yaml validation succeeded
artifactory             | 2021-09-15T04:26:30.365Z [shell] [INFO ] [] [installerCommon.sh:2876       ] [main] - System.yaml validation succeeded
artifactory             |
artifactory             | Database connection successful
artifactory             | 2021-09-15T04:26:30.406Z [shell] [INFO ] [] [installerCommon.sh:1595       ] [main] - Testing directory /opt/jfrog/artifactory/var has read/write permissions for user id 1030
artifactory             | 2021-09-15T04:26:30.421Z [shell] [INFO ] [] [installerCommon.sh:1610       ] [main] - Permissions for /opt/jfrog/artifactory/var are good
artifactory             | 2021-09-15T04:26:30.508Z [shell] [INFO ] [] [installerCommon.sh:3381       ] [main] - Found explicit shared.node.id in system.yaml with value : iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:30.556Z [shell] [INFO ] [] [installerCommon.sh:3381       ] [main] - Found explicit shared.node.ip in system.yaml with value : 137.202.109.164
artifactory             | 2021-09-15T04:26:30.594Z [shell] [INFO ] [] [installerCommon.sh:3376       ] [main] - Setting JF_SHARED_NODE_NAME to 94a42ba4cb3d
artifactory             | 2021-09-15T04:26:30.884Z [shell] [INFO ] [] [artifactoryCommon.sh:165      ] [main] - Saving /opt/jfrog/artifactory/app/artifactory/tomcat/conf/server.xml as /opt/jfrog/artifactory/app/artifactory/tomcat/conf/server.xml.orig
artifactory             | 2021-09-15T04:26:30.900Z [shell] [INFO ] [] [artifactoryCommon.sh:173      ] [main] - Using Tomcat template to generate : /opt/jfrog/artifactory/app/artifactory/tomcat/conf/server.xml
artifactory             | 2021-09-15T04:26:30.967Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.port||8081} to default value : 8081
artifactory             | 2021-09-15T04:26:31.003Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.tomcat.connector.sendReasonPhrase||false} to default value : false
artifactory             | 2021-09-15T04:26:31.038Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.tomcat.connector.maxThreads||200} to default value : 200
artifactory             | 2021-09-15T04:26:31.074Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved .artifactory.tomcat.connector.extraConfig (connectionTimeout='7200000') from /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:31.111Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.tomcat.maintenanceConnector.port||8091} to default value : 8091
artifactory             | 2021-09-15T04:26:31.147Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.tomcat.maintenanceConnector.maxThreads||5} to default value : 5
artifactory             | 2021-09-15T04:26:31.184Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${artifactory.tomcat.maintenanceConnector.acceptCount||5} to default value : 5
artifactory             | 2021-09-15T04:26:31.244Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${access.http.port||8040} to default value : 8040
artifactory             | 2021-09-15T04:26:31.280Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${access.tomcat.connector.sendReasonPhrase||false} to default value : false
artifactory             | 2021-09-15T04:26:31.316Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${access.tomcat.connector.maxThreads||50} to default value : 50
artifactory             | 2021-09-15T04:26:31.386Z [shell] [INFO ] [] [systemYamlHelper.sh:522       ] [main] - Resolved JF_PRODUCT_HOME (/opt/jfrog/artifactory) from environment variable
artifactory             | 2021-09-15T04:26:31.481Z [shell] [INFO ] [] [artifactoryCommon.sh:931      ] [main] - Resolved ${shared.tomcat.workDir||/opt/jfrog/artifactory/var/work/artifactory/tomcat} to default value : /opt/jfrog/artifactory/var/work/artifactory/tomcat
artifactory             |
artifactory             | ========================
artifactory             | JF Environment variables
artifactory             | ========================
artifactory             |
artifactory             | JF_SHARED_NODE_NAME                 : 94a42ba4cb3d
artifactory             | JF_SHARED_DATABASE_USER             : artifactory
artifactory             | JF_SYSTEM_YAML                      : /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | JF_ARTIFACTORY_PID                  : /opt/jfrog/artifactory/app/run/artifactory.pid
artifactory             | JF_SHARED_DATABASE_TYPE             : postgresql
artifactory             | JF_SHARED_DATABASE_PASSWORD         : ******
artifactory             | JF_PRODUCT_DATA_INTERNAL            : /var/opt/jfrog/artifactory
artifactory             | JF_PRODUCT_HOME                     : /opt/jfrog/artifactory
artifactory             | JF_ROUTER_TOPOLOGY_LOCAL_REQUIREDSERVICETYPES : jfrt,jfac,jfmd,jffe,jfob,jfevt
artifactory             | JF_ROUTER_ENTRYPOINTS_EXTERNALPORT  : 8082
artifactory             | JF_SHARED_NODE_IP                   : 137.202.109.164
artifactory             | JF_SHARED_NODE_ID                   : iesnnscidartifactory1
artifactory             | JF_ARTIFACTORY_USER                 : artifactory
artifactory             | Using default router's certificate and private key
artifactory             | Starting router...
artifactory             | router not running. Proceed to start it up.
artifactory             | router started. PID: 3393
artifactory             | 2021-09-15T04:26:31.836Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [bootstrap.go:76               ] [main                ] - Router (jfrou) service initialization started. Version: 7.25.1-1 Revision: 132fae02e53f7faa37e6643c6e5fde9801b70cac PID: 3393 Home: /opt/jfrog/artifactory
artifactory             | 2021-09-15T04:26:31.837Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [bootstrap.go:79               ] [main                ] - JFrog Router IP: 137.202.109.164
artifactory             | 2021-09-15T04:26:31.838Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [bootstrap.go:192              ] [main                ] - System configuration encryption report:
artifactory             | shared.database.password: already encrypted
artifactory             | shared.newrelic.licenseKey: does not exist in the config file
artifactory             | shared.security.joinKeyFile: file '/opt/jfrog/artifactory/var/etc/security/join.key' - already encrypted
artifactory             | 2021-09-15T04:26:31.838Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [bootstrap.go:84               ] [main                ] - JFrog Router Service ID: jfrou@01ffj4e9vzsqssxt658vc5x3qb
artifactory             | 2021-09-15T04:26:31.838Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [bootstrap.go:85               ] [main                ] - JFrog Router Node ID: iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:31.858Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [http_client_holder.go:155     ] [main                ] - System cert pool contents were loaded as trusted CAs for TLS communication
artifactory             | 2021-09-15T04:26:31.858Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [http_client_holder.go:175     ] [main                ] - Following certificates were successfully loaded as trusted CAs for TLS communication:
artifactory             | [/opt/jfrog/artifactory/var/data/router/keys/trusted/access-root-ca.crt]
artifactory             | Starting metadata...
artifactory             | JF_METADATA_ACCESSCLIENT_URL: http://localhost:8081/access
artifactory             | metadata started. PID: 3583
artifactory             | [DEBUG] Resolved system configuration file path: /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | [TRACE] Config key not set for aws secret (metadata.database.secretsManagerAlias)
artifactory             | 2021-09-15T04:26:31.986Z [jfmd ] [INFO ] [185a73aa77c702e4] [postgres_jdbc_url_converter.go] [main                ] - No ssl parameter found, falling back to sslmode=disable [database]
artifactory             | 2021-09-15T04:26:31.986Z [jfmd ] [INFO ] [185a73aa77c702e4] [database_bearer.go:117        ] [main                ] - Connecting to (db config: {postgresql jdbc:postgresql://postgresql:5432/artifactory}) [database]
artifactory             | 2021-09-15T04:26:31.992Z [jfmd ] [INFO ] [185a73aa77c702e4] [migrator.go:60                ] [main                ] - Applying 47 migrations files [database]
artifactory             | 2021-09-15T04:26:31.995Z [jfmd ] [INFO ] [185a73aa77c702e4] [application.go:68             ] [main                ] - Metadata (jfmd) service initialization started. Version: 7.25.1 Revision: 132fae02e53 PID: 3583 Home: /opt/jfrog/artifactory/var [app_initializer]
postgresql              | 2021-09-15 04:26:31.996 UTC [34] ERROR:  duplicate key value violates unique constraint "md_configs_config_name_idx"
postgresql              | 2021-09-15 04:26:31.996 UTC [34] DETAIL:  Key (config_name)=(service_id) already exists.
postgresql              | 2021-09-15 04:26:31.996 UTC [34] STATEMENT:  INSERT INTO md_configs (id,config_name,modified,data) VALUES ($1,$2,$3,$4)
artifactory             | 2021-09-15T04:26:31.997Z [jfmd ] [INFO ] [185a73aa77c702e4] [server_bearer.go:173          ] [main                ] - Got service_id from datastore: jfmd@01ffj4e9gwrx3003tchdym1cwx [ServerInit]
artifactory             | Starting event...
artifactory             | event not running. Proceed to start it up.
artifactory             | event started. PID: 3730
artifactory             | [INFO ] JFrog Event (jfevt) service initialization started. Version: 7.25.1 (revision: 132fae02e5, build date: 2021-08-19T19:16:12Z) PID: 3730 Home: /opt/jfrog/artifactory
artifactory             | [DEBUG] Resolved system configuration file path: /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | Starting frontend...
artifactory             | frontend not running. Proceed to start it up.
artifactory             | frontend started. PID: 3881
artifactory             | Starting observability...
artifactory             | observability not running. Proceed to start it up.
artifactory             | observability started. PID: 4025
artifactory             | [INFO ] JFrog Observability (jfob) service initialization started. Version: 1.0.0 (revision: e217204987, build date: 2021-08-12T06:55:40Z) PID: 4025 Home: /opt/jfrog/artifactory
artifactory             | [DEBUG] Resolved system configuration file path: /opt/jfrog/artifactory/var/etc/system.yaml
artifactory             | 2021-09-15T04:26:32.423Z [shell] [INFO ] [] [installerCommon.sh:1190       ] [main] - Redirection is set to false. Skipping catalina log redirection
artifactory             | NOTE: Picked up JDK_JAVA_OPTIONS:  --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED
artifactory             | 2021-09-15T04:26:32.972L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol init] - Initializing ProtocolHandler ["http-nio-8081"]
artifactory             | 2021-09-15T04:26:32.989L [tomct] [INFO ] [                ] [org.apache.tomcat.util.net.NioSelectorPool] [org.apache.tomcat.util.net.NioSelectorPool getSharedSelector] - Using a shared selector for servlet write/read
artifactory             | 2021-09-15T04:26:33.008L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol init] - Initializing ProtocolHandler ["http-nio-127.0.0.1-8091"]
artifactory             | 2021-09-15T04:26:33.009L [tomct] [INFO ] [                ] [org.apache.tomcat.util.net.NioSelectorPool] [org.apache.tomcat.util.net.NioSelectorPool getSharedSelector] - Using a shared selector for servlet write/read
artifactory             | 2021-09-15T04:26:33.010L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol init] - Initializing ProtocolHandler ["http-nio-127.0.0.1-8040"]
artifactory             | 2021-09-15T04:26:33.011L [tomct] [INFO ] [                ] [org.apache.tomcat.util.net.NioSelectorPool] [org.apache.tomcat.util.net.NioSelectorPool getSharedSelector] - Using a shared selector for servlet write/read
artifactory             | 2021-09-15T04:26:33.016L [tomct] [INFO ] [                ] [org.apache.catalina.core.StandardService] [org.apache.catalina.core.StandardService startInternal] - Starting service [Catalina]
artifactory             | 2021-09-15T04:26:33.016L [tomct] [INFO ] [                ] [org.apache.catalina.core.StandardEngine] [org.apache.catalina.core.StandardEngine startInternal] - Starting Servlet engine: [Apache Tomcat/8.5.66]
artifactory             | 2021-09-15T04:26:33.029L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - Deploying deployment descriptor [/opt/jfrog/artifactory/app/artifactory/tomcat/conf/Catalina/localhost/access.xml]
artifactory             | 2021-09-15T04:26:33.029L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - Deploying deployment descriptor [/opt/jfrog/artifactory/app/artifactory/tomcat/conf/Catalina/localhost/artifactory.xml]
artifactory             | 2021-09-15T04:26:33.052L [tomct] [WARNING] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - A docBase [/opt/jfrog/artifactory/app/artifactory/tomcat/webapps/access.war] inside the host appBase has been specified, and will be ignored
artifactory             | 2021-09-15T04:26:33.052L [tomct] [WARNING] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - A docBase [/opt/jfrog/artifactory/app/artifactory/tomcat/webapps/artifactory.war] inside the host appBase has been specified, and will be ignored
artifactory             | 2021-09-15T04:26:33.069Z [jffe ] [INFO ] [                ] [                              ] [main                ] - frontend (jffe) service initialization started. Version: 1.25.4 Revision: 10000004 PID: 4184 Home: /opt/jfrog/artifactory
artifactory             | 2021-09-15T04:26:33.070Z [jffe ] [INFO ] [                ] [                              ] [main                ] - attempting pinging artifactory for 180 retires and 1.0s interval for total of 3 minutes
artifactory             | 2021-09-15T04:26:34.730Z [jfrt ] [INFO ] [bbe2901e0091b746] [o.a.c.h.HaNodeProperties:65   ] [ocalhost-startStop-2] - Artifactory is running in non-clustered mode.
artifactory             | 2021-09-15T04:26:34.742Z [jfrt ] [INFO ] [bbe2901e0091b746] [tifactoryHomeConfigListener:85] [ocalhost-startStop-2] - Resolved Home: '/opt/jfrog/artifactory
artifactory             | 2021-09-15T04:26:35.006Z [jfrt ] [INFO ] [                ] [o.j.c.w.FileWatcher:147       ] [Thread-6            ] - Starting watch of folder configurations
artifactory             | 2021-09-15T04:26:35.087Z [jfrt ] [INFO ] [bbe2901e0091b746] [.BasicConfigurationManager:186] [ocalhost-startStop-2] - Artifactory (jfrt) service initialization started. Version: 7.25.7 Revision: 72507900 PID: 4166 Home: /opt/jfrog/artifactory
artifactory             | 2021-09-15T04:26:35.163Z [jfac ] [INFO ] [2586ecea9f582b51] [licationContextInitializer:162] [ocalhost-startStop-1] - Access (jfac) service initialization started. Version: 7.25.0 Revision: 72500900 PID: 4166 Home: /opt/jfrog/artifactory
artifactory             | 2021-09-15T04:26:35.195Z [jfac ] [INFO ] [2586ecea9f582b51] [o.j.a.AccessApplication:55    ] [ocalhost-startStop-1] - Starting AccessApplication v7.25.0 using Java 11.0.11 on 94a42ba4cb3d with PID 4166 (/opt/jfrog/artifactory/app/artifactory/tomcat/webapps/access/WEB-INF/lib/access-application-7.25.0.jar started by artifactory in /var/opt/jfrog/artifactory)
artifactory             | 2021-09-15T04:26:35.196Z [jfac ] [INFO ] [2586ecea9f582b51] [o.j.a.AccessApplication:668   ] [ocalhost-startStop-1] - The following profiles are active: production
artifactory             | 2021-09-15T04:26:35.258Z [jfrt ] [INFO ] [bbe2901e0091b746] [d.c.m.ConverterManagerImpl:212] [ocalhost-startStop-2] - Triggering PRE_INIT conversion, from 7.25.7 to 7.25.7
artifactory             | 2021-09-15T04:26:35.258Z [jfrt ] [INFO ] [bbe2901e0091b746] [d.c.m.ConverterManagerImpl:215] [ocalhost-startStop-2] - Finished PRE_INIT conversion, current version is: 7.25.7
artifactory             | 2021-09-15T04:26:35.258Z [jfrt ] [INFO ] [bbe2901e0091b746] [d.i.DbInitializationManager:49] [ocalhost-startStop-2] - Initializing DB Schema initialization manager
artifactory             | 2021-09-15T04:26:35.259Z [jfrt ] [INFO ] [bbe2901e0091b746] [.i.DbInitializationManager:177] [ocalhost-startStop-2] - Database: PostgreSQL 13.1 (Debian 13.1-1.pgdg100+1). Driver: PostgreSQL JDBC Driver 42.2.19 Pool: postgresql
artifactory             | 2021-09-15T04:26:35.619Z [jfrt ] [INFO ] [bbe2901e0091b746] [d.i.DbInitializationManager:53] [ocalhost-startStop-2] - DB Schema initialization manager initialized
artifactory             | 2021-09-15T04:26:35.627Z [jfrt ] [INFO ] [bbe2901e0091b746] [SchemaInitializationManager:48] [ocalhost-startStop-2] - Initializing Post-DB initialization manager
artifactory             | 2021-09-15T04:26:35.644Z [jfrt ] [INFO ] [bbe2901e0091b746] [.c.ConfigurationManagerImpl:97] [ocalhost-startStop-2] - Starting file sync
artifactory             | 2021-09-15T04:26:35.717Z [jfrt ] [INFO ] [bbe2901e0091b746] [SchemaInitializationManager:51] [ocalhost-startStop-2] - Post-DB initialization manager initialized
artifactory             | 2021-09-15T04:26:36.003Z [jfmd ] [INFO ] [185a73aa77c702e4] [accessclient.go:58            ] [main                ] - Cluster join: Retry 5: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [access_client]
artifactory             | 2021-09-15T04:26:36.040Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ctoryContextConfigListener:331] [art-init            ] -
artifactory             |                 _   _  __           _                     _____
artifactory             |      /\        | | (_)/ _|         | |                   |  __ \
artifactory             |     /  \   _ __| |_ _| |_ __ _  ___| |_ ___  _ __ _   _  | |__) | __ ___
artifactory             |    / /\ \ | '__| __| |  _/ _` |/ __| __/ _ \| '__| | | | |  ___/ '__/ _ \
artifactory             |   / ____ \| |  | |_| | || (_| | (__| || (_) | |  | |_| | | |   | | | (_) |
artifactory             |  /_/    \_\_|   \__|_|_| \__,_|\___|\__\___/|_|   \__, | |_|   |_|  \___/
artifactory             |  Version:  7.25.7                                  __/ |
artifactory             |  Revision: 72507900                               |___/
artifactory             |  Artifactory Home: '/opt/jfrog/artifactory'
artifactory             |  Node ID: 'iesnnscidartifactory1'
artifactory             |
artifactory             | 2021-09-15T04:26:36.110Z [jfevt] [INFO ] [2da928a7fb9bf823] [access_thin_client.go:103     ] [main                ] - Cluster join: Retry 5: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup]
artifactory             | 2021-09-15T04:26:36.156Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ifactoryApplicationContext:561] [art-init            ] - Artifactory application context set to NOT READY by refresh
artifactory             | 2021-09-15T04:26:36.174L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - Deployment of deployment descriptor [/opt/jfrog/artifactory/app/artifactory/tomcat/conf/Catalina/localhost/artifactory.xml] has finished in [3,145] ms
artifactory             | 2021-09-15T04:26:36.363Z [jfob ] [INFO ] [4cbc506523690ef1] [access_thin_client.go:103     ] [main                ] - Cluster join: Retry 5: Service registry ping failed, will retry. Error: failed connecting to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup]
artifactory             | 2021-09-15T04:26:37.883Z [jfac ] [INFO ] [2586ecea9f582b51] [s.d.u.AccessJdbcHelperImpl:140] [ocalhost-startStop-1] - Database: PostgreSQL 13.1 (Debian 13.1-1.pgdg100+1). Driver: PostgreSQL JDBC Driver 42.2.19
artifactory             | 2021-09-15T04:26:38.473Z [jfac ] [INFO ] [2586ecea9f582b51] [alConfigurationServiceBase:182] [ocalhost-startStop-1] - Loading configuration from db finished successfully
artifactory             | 2021-09-15T04:26:38.577Z [jfac ] [INFO ] [2586ecea9f582b51] [alConfigurationServiceBase:114] [ocalhost-startStop-1] - Current configurations are the same as the new configurations, no need for an update. No action was taken.
artifactory             | 2021-09-15T04:26:38.807Z [jfac ] [INFO ] [2586ecea9f582b51] [.h.AccessNodeIdProviderImpl:73] [ocalhost-startStop-1] - Service id initialized: jfac@01ffj4e61pfb8v0jz5p0j41r12
artifactory             | 2021-09-15T04:26:39.204Z [jfac ] [INFO ] [2586ecea9f582b51] [j.a.s.s.t.TokenServiceImpl:152] [ocalhost-startStop-1] - Scheduling task for revoking expired tokens using cron expression: 22 32 0/1 * * ?
artifactory             | 2021-09-15T04:26:39.664Z [jfac ] [INFO ] [2586ecea9f582b51] [b.AccessServerBootstrapImpl:47] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Starting JFrog Access bootstrap...
artifactory             | 2021-09-15T04:26:39.672Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:115] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Initializing root certificate.
artifactory             | 2021-09-15T04:26:40.006Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:328] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Saved new root certificate at: /opt/jfrog/artifactory/var/etc/access/keys/root.crt
artifactory             | 2021-09-15T04:26:40.008Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:132] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Finished initializing root certificate. Certificate source: DATABASE
artifactory             | 2021-09-15T04:26:40.009Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:115] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Initializing ca certificate.
artifactory             | 2021-09-15T04:26:40.106Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:328] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Saved new ca certificate at: /opt/jfrog/artifactory/var/etc/access/keys/ca.crt
artifactory             | 2021-09-15T04:26:40.107Z [jfac ] [INFO ] [2586ecea9f582b51] [CertificateFileHandlerBase:132] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Finished initializing ca certificate. Certificate source: DATABASE
artifactory             | 2021-09-15T04:26:40.210Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessProjectBootstrap:76] [ocalhost-startStop-1] - Finished initializing Projects Entities in 19.55 millis
artifactory             | 2021-09-15T04:26:40.212Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessProjectBootstrap:69] [ocalhost-startStop-1] - Finished initializing Projects Shared Entities in 2.49 millis
artifactory             | 2021-09-15T04:26:40.246Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessProjectBootstrap:89] [ocalhost-startStop-1] - Finished initializing Projects permissions in 33.27 millis
artifactory             | 2021-09-15T04:26:40.247Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessProjectBootstrap:61] [ocalhost-startStop-1] - Finished initializing Projects in 59.99 millis
artifactory             | 2021-09-15T04:26:40.247Z [jfac ] [INFO ] [2586ecea9f582b51] [.a.s.s.m.MetricsServiceImpl:47] [ocalhost-startStop-1] - Metrics Framework Service is disabled
artifactory             | 2021-09-15T04:26:40.247Z [jfac ] [INFO ] [2586ecea9f582b51] [b.AccessServerBootstrapImpl:57] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] JFrog Access bootstrap finished.
artifactory             | 2021-09-15T04:26:40.817Z [jfac ] [INFO ] [2586ecea9f582b51] [o.j.a.s.r.s.GrpcServerImpl:65 ] [ocalhost-startStop-1] - Starting gRPC Server on port 8045
artifactory             | 2021-09-15T04:26:41.007Z [jfmd ] [INFO ] [185a73aa77c702e4] [accessclient.go:58            ] [main                ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [access_client]
artifactory             | 2021-09-15T04:26:41.057Z [jfac ] [INFO ] [2586ecea9f582b51] [o.j.a.s.r.s.GrpcServerImpl:84 ] [ocalhost-startStop-1] - gRPC Server started, listening on 8045
artifactory             | 2021-09-15T04:26:41.065Z [jfac ] [INFO ] [2586ecea9f582b51] [o.j.a.s.s.JoinKeyAccess:172   ] [ocalhost-startStop-1] - Cluster join: Join key loaded successfully (from: /opt/jfrog/artifactory/var/etc/security/join.key)
postgresql              | 2021-09-15 04:26:41.071 UTC [40] ERROR:  duplicate key value violates unique constraint "access_configs_pk"
postgresql              | 2021-09-15 04:26:41.071 UTC [40] DETAIL:  Key (config_name)=(shared.security.joinKey) already exists.
postgresql              | 2021-09-15 04:26:41.071 UTC [40] STATEMENT:  INSERT INTO access_configs (config_name, modified, data) VALUES ($1, $2, $3)
artifactory             | 2021-09-15T04:26:41.089Z [jfac ] [INFO ] [2586ecea9f582b51] [a.s.b.AccessServerRegistrar:66] [ocalhost-startStop-1] - [ACCESS BOOTSTRAP] Starting JFrog Access registrar...
artifactory             | 2021-09-15T04:26:41.116Z [jfevt] [INFO ] [2da928a7fb9bf823] [access_thin_client.go:103     ] [main                ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: Error while trying to connect to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup]
artifactory             | 2021-09-15T04:26:41.122Z [jfac ] [INFO ] [b0009a65abaa3567] [a.c.RefreshableScheduledJob:53] [ocalhost-startStop-1] - Scheduling loadCertificates task to run every 30 seconds
artifactory             | 2021-09-15T04:26:41.129Z [jfac ] [INFO ] [6628235ae39fdab8] [a.c.RefreshableScheduledJob:53] [ocalhost-startStop-1] - Scheduling heartbeat task to run every 5 seconds
artifactory             | 2021-09-15T04:26:41.130Z [jfac ] [INFO ] [6628235ae39fdab8] [a.c.RefreshableScheduledJob:53] [ocalhost-startStop-1] - Scheduling federationCleanupService task to run every 1209600 seconds
artifactory             | 2021-09-15T04:26:41.140Z [jfac ] [INFO ] [6628235ae39fdab8] [a.c.RefreshableScheduledJob:53] [ocalhost-startStop-1] - Scheduling staleTokenCleanup task to run every 3600 seconds
artifactory             | 2021-09-15T04:26:41.366Z [jfob ] [INFO ] [4cbc506523690ef1] [access_thin_client.go:103     ] [main                ] - Cluster join: Retry 10: Service registry ping failed, will retry. Error: failed connecting to local router at address 'http://localhost:8046/access/api/v1/system/ping': Get "http://localhost:8046/access/api/v1/system/ping": dial tcp 127.0.0.1:8046: connect: connection refused [startup]
artifactory             | 2021-09-15T04:26:42.112Z [jffe ] [INFO ] [                ] [                              ] [main                ] - pinging artifactory, attempt number 10
artifactory             | 2021-09-15T04:26:42.117Z [jffe ] [INFO ] [                ] [                              ] [main                ] - pinging artifactory attempt number 10 failed with code : ECONNREFUSED
artifactory             | 2021-09-15T04:26:42.129Z [jfac ] [INFO ] [6628235ae39fdab8] [o.j.a.AccessApplication:61    ] [ocalhost-startStop-1] - Started AccessApplication in 7.691 seconds (JVM running for 9.661)
artifactory             | 2021-09-15T04:26:42.149L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDescriptor] - Deployment of deployment descriptor [/opt/jfrog/artifactory/app/artifactory/tomcat/conf/Catalina/localhost/access.xml] has finished in [9,120] ms
artifactory             | 2021-09-15T04:26:42.150L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDirectory] - Deploying web application directory [/opt/jfrog/artifactory/app/artifactory/tomcat/webapps/ROOT]
artifactory             | 2021-09-15T04:26:42.162L [tomct] [INFO ] [                ] [org.apache.catalina.startup.HostConfig] [org.apache.catalina.startup.HostConfig deployDirectory] - Deployment of web application directory [/opt/jfrog/artifactory/app/artifactory/tomcat/webapps/ROOT] has finished in [12] ms
artifactory             | 2021-09-15T04:26:42.170L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol start] - Starting ProtocolHandler ["http-nio-8081"]
artifactory             | 2021-09-15T04:26:42.177L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol start] - Starting ProtocolHandler ["http-nio-127.0.0.1-8091"]
artifactory             | 2021-09-15T04:26:42.178L [tomct] [INFO ] [                ] [org.apache.coyote.http11.Http11NioProtocol] [org.apache.coyote.AbstractProtocol start] - Starting ProtocolHandler ["http-nio-127.0.0.1-8040"]
artifactory             | 2021-09-15T04:26:43.125Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [join_executor.go:116          ] [main                ] - Cluster join: Trying to rejoin the cluster
artifactory             | 2021-09-15T04:26:43.179Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ritiesStorageServiceFactory:25] [art-init            ] - Initializing DB-based Priorities Storage Service
artifactory             | 2021-09-15T04:26:43.405Z [jfac ] [INFO ] [68f2d7b2a1c44e69] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-1] - Cluster join: Successfully joined jfrou@01ffj4e9vzsqssxt658vc5x3qb with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:43.673Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [join_executor.go:205          ] [main                ] - Cluster join: Successfully joined the cluster
artifactory             | 2021-09-15T04:26:43.675Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [http_client_holder.go:155     ] [main                ] - System cert pool contents were loaded as trusted CAs for TLS communication
artifactory             | 2021-09-15T04:26:43.675Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [http_client_holder.go:175     ] [main                ] - Following certificates were successfully loaded as trusted CAs for TLS communication:
artifactory             | [/opt/jfrog/artifactory/var/data/router/keys/trusted/access-root-ca.crt]
artifactory             | 2021-09-15T04:26:43.681Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [registry_handler.go:89        ] [main                ] - The following services were restored automatically based on persisted data: jfevt@01ffj4e61pfb8v0jz5p0j41r12, jffe@000, jfmd@01ffj4e9gwrx3003tchdym1cwx, jfob@01ffj4e61pfb8v0jz5p0j41r12
artifactory             | 2021-09-15T04:26:43.681Z [jfrou] [INFO ] [                ] [server.go:577                 ] [main                ] - Preparing server api &{Address:localhost:8049 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc0006169a0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s
artifactory             | 2021-09-15T04:26:43.682Z [jfrou] [INFO ] [                ] [server.go:577                 ] [main                ] - Preparing server external &{Address::8082 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc000616960} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s
artifactory             | 2021-09-15T04:26:43.682Z [jfrou] [INFO ] [                ] [server.go:577                 ] [main                ] - Preparing server internal &{Address:localhost:8046 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc000616980} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s
artifactory             | 2021-09-15T04:26:43.682Z [jfrou] [INFO ] [                ] [server.go:533                 ] [main                ] - Starting server on :8082
artifactory             | 2021-09-15T04:26:43.682Z [jfrou] [INFO ] [                ] [server.go:533                 ] [main                ] - Starting server on localhost:8049
artifactory             | 2021-09-15T04:26:43.683Z [jfrou] [INFO ] [                ] [server.go:423                 ] [main                ] - Starting provider configuration.ProviderAggregator {}
artifactory             | 2021-09-15T04:26:43.683Z [jfrou] [INFO ] [                ] [server.go:533                 ] [main                ] - Starting server on localhost:8046
artifactory             | 2021-09-15T04:26:43.683Z [jfrou] [INFO ] [                ] [provider_aggregator.go:103    ] [main                ] - Starting provider *file.Provider {"Watch":true,"Filename":"","Constraints":null,"Trace":false,"TemplateVersion":0,"DebugLogGeneratedTemplate":false,"Directory":"/opt/jfrog/artifactory/var/data/router/traefik/routes","TraefikFile":""}
artifactory             | 2021-09-15T04:26:43.685Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8049
artifactory             | 2021-09-15T04:26:43.686Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on :8082
artifactory             | 2021-09-15T04:26:43.686Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8046
artifactory             | 2021-09-15T04:26:43.686Z [jfrou] [INFO ] [5f95fe1b9cdf17ad] [main.go:47                    ] [main                ] - Router (jfrou) service initialization completed in 11.850 seconds. Listening on port: 8082
artifactory             | 2021-09-15T04:26:43.687Z [jfrou] [WARN ] [4e1eb3611639b44a] [local_topology.go:256         ] [main                ] - Readiness test failed with the following error: "required node services are missing or unhealthy"
artifactory             | 2021-09-15T04:26:43.738Z [jfrou] [INFO ] [                ] [server_configuration.go:465   ] [main                ] - Skipping same configuration for provider file
artifactory             | 2021-09-15T04:26:44.127Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 404 code
artifactory             | 2021-09-15T04:26:44.128Z [jfac ] [INFO ] [2586ecea9f582b51] [.AccessWithRouterRegistrar:111] [pool-22-thread-2    ] - Access Server successfully registered on Router on URL: http://localhost:8046
artifactory             | 2021-09-15T04:26:45.131Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 404 code
artifactory             | WARN freemarker.log.LoggerFactory: Logger library was already set earlier to "auto"; change to "none" won't effect loggers created earlier.
artifactory             | 2021-09-15T04:26:45.386Z [jfrt ] [INFO ] [9768c1a9f8a78294] [HaRoleManagerServiceFactory:27] [art-init            ] - Initializing Task Affinity HA role manager
artifactory             | 2021-09-15T04:26:45.687Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8049
artifactory             | 2021-09-15T04:26:45.687Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on :8082
artifactory             | 2021-09-15T04:26:45.687Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8046
artifactory             | 2021-09-15T04:26:45.760Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessServerRegistrar:121] [pool-22-thread-2    ] - [ACCESS BOOTSTRAP] Updating server 'iesnnscidartifactory1' private key finger print to: f48597a7121c8b2a2dabc44b80151c766500d5913058b081f60c69c8054a8afd ca private key finger print to: 3b1c9d3aa7375ed87358825dc894798e8561c1c1435b31c2b62b940ccb518eae
artifactory             | 2021-09-15T04:26:45.768Z [jfac ] [INFO ] [2586ecea9f582b51] [a.s.b.AccessServerRegistrar:77] [pool-22-thread-2    ] - [ACCESS BOOTSTRAP] JFrog Access registrar finished.
artifactory             | 2021-09-15T04:26:45.822Z [jfrt ] [INFO ] [9768c1a9f8a78294] [actorySchedulerFactoryBean:727] [art-init            ] - Starting Quartz Scheduler now
artifactory             | 2021-09-15T04:26:45.860Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ifactoryApplicationContext:282] [art-init            ] - Artifactory context starting up 76 Spring Beans...
artifactory             | 2021-09-15T04:26:46.063Z [jfac ] [INFO ] [61714e4c14a65e6c] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-4] - Cluster join: Successfully joined jfmd@01ffj4e9gwrx3003tchdym1cwx with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:46.067Z [jfmd ] [INFO ] [185a73aa77c702e4] [accessclient.go:58            ] [main                ] - Cluster join: Successfully joined the cluster [access_client]
artifactory             | 2021-09-15T04:26:46.067Z [jfmd ] [INFO ] [185a73aa77c702e4] [accessclient.go:58            ] [main                ] - Cluster join: executing Router register at: localhost:8046 for service id jfmd@01ffj4e9gwrx3003tchdym1cwx [access_client]
artifactory             | 2021-09-15T04:26:46.073Z [jfrou] [INFO ] [                ] [server_configuration.go:465   ] [main                ] - Skipping same configuration for provider file
artifactory             | 2021-09-15T04:26:46.118Z [jfmd ] [INFO ] [185a73aa77c702e4] [async_converter.go:194        ] [main                ] - Starting async converter routine [async_converter] [workerNumber][1]
artifactory             | 2021-09-15T04:26:46.118Z [jfmd ] [INFO ] [185a73aa77c702e4] [router_middlewares.go:55      ] [main                ] - Metadata (jfmd) service initialization completed in 14.123 seconds. Listening on port: 8086 [router]
artifactory             | 2021-09-15T04:26:46.131Z [jfevt] [INFO ] [2da928a7fb9bf823] [bootstrap.go:84               ] [main                ] - JFrog Event Service ID: jfevt@01ffj4e61pfb8v0jz5p0j41r12 [startup]
artifactory             | 2021-09-15T04:26:46.131Z [jfevt] [INFO ] [2da928a7fb9bf823] [bootstrap.go:85               ] [main                ] - JFrog Event Node ID   : iesnnscidartifactory1 [startup]
artifactory             | 2021-09-15T04:26:46.131Z [jfevt] [INFO ] [2da928a7fb9bf823] [bootstrap.go:86               ] [main                ] - JFrog Event Node IP   : 137.202.109.164 [startup]
artifactory             | 2021-09-15T04:26:46.137Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 404 code
artifactory             | 2021-09-15T04:26:46.179Z [jfac ] [INFO ] [5f46af865147219c] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-8] - Cluster join: Successfully joined jfevt@01ffj4e61pfb8v0jz5p0j41r12 with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:46.181Z [jfevt] [INFO ] [2da928a7fb9bf823] [access_join.go:50             ] [main                ] - Cluster join: Successfully joined the cluster [application]
artifactory             | 2021-09-15T04:26:46.181Z [jfevt] [INFO ] [2da928a7fb9bf823] [access_join.go:50             ] [main                ] - Cluster join: executing Router register at: localhost:8046 for service id jfevt@01ffj4e61pfb8v0jz5p0j41r12 [application]
artifactory             | 2021-09-15T04:26:46.185Z [jfevt] [INFO ] [2da928a7fb9bf823] [application.go:134            ] [main                ] - JFrog Event (jfevt) service initialization completed in 14.082 seconds. HTTP server listening on 127.0.0.1:8061. GRPC server listening on 127.0.0.1:8062.  [application]
artifactory             | 2021-09-15T04:26:46.185Z [jfevt] [INFO ] [2da928a7fb9bf823] [datastore_migration_manager.go] [main                ] - Datastore migration check (version: 2)... [migration]
artifactory             | 2021-09-15T04:26:46.187Z [jfrou] [INFO ] [                ] [server_configuration.go:465   ] [main                ] - Skipping same configuration for provider file
artifactory             | 2021-09-15T04:26:46.201Z [jfevt] [INFO ] [2da928a7fb9bf823] [datastore_migration_manager.go] [main                ] - Datastore is up-to-date [migration]
artifactory             | 2021-09-15T04:26:46.243Z [jfevt] [WARN ] [2da928a7fb9bf823] [base_url_cache.go:68          ] [main                ] - Base URL cache is not updated because of error: failed to fetch base URL from Artifactory (returned 404) [baseurl_cache]
artifactory             | 2021-09-15T04:26:46.247Z [jfevt] [WARN ] [2da928a7fb9bf823] [proxy_synchronizer.go:21      ] [main                ] - Proxy cache is not updated because of error: failure to get the list of proxies from Artifactory (returned 404) [proxy_cache]
artifactory             | 2021-09-15T04:26:46.251Z [jfevt] [WARN ] [2da928a7fb9bf823] [domain_client.go:57           ] [main                ] - Error occurred when refreshing domain cache all domain endpoint failed : Fetch domains from http://localhost:8046/artifactory/api/events/domains failed (returned 404), Fetch domains from http://localhost:8046/distribution/api/v1/events/domains failed (returned 404),  [domain_client]
artifactory             | 2021-09-15T04:26:46.279Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.a.AccessServiceImpl:525 ] [art-init            ] - Initialized new service id: jfrt@01ffj4ehfthpdj1jq8g9yb0e6w
artifactory             | 2021-09-15T04:26:46.303Z [jfrt ] [INFO ] [9768c1a9f8a78294] [oryAccessClientConfigStore:528] [art-init            ] - Using Access Server URL: http://localhost:8046/access source: System Config
artifactory             | 2021-09-15T04:26:46.377Z [jfob ] [INFO ] [4cbc506523690ef1] [bootstrap.go:84               ] [main                ] - JFrog Observability Service ID: jfob@01ffj4e61pfb8v0jz5p0j41r12 [startup]
artifactory             | 2021-09-15T04:26:46.377Z [jfob ] [INFO ] [4cbc506523690ef1] [bootstrap.go:85               ] [main                ] - JFrog Observability Node ID   : iesnnscidartifactory1 [startup]
artifactory             | 2021-09-15T04:26:46.378Z [jfob ] [INFO ] [4cbc506523690ef1] [bootstrap.go:86               ] [main                ] - JFrog Observability Node IP   : 137.202.109.164 [startup]
artifactory             | 2021-09-15T04:26:46.399Z [jfac ] [INFO ] [44bc40624b2f4b8d] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-4] - Cluster join: Successfully joined jfob@01ffj4e61pfb8v0jz5p0j41r12 with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:46.400Z [jfob ] [INFO ] [4cbc506523690ef1] [access_join.go:50             ] [main                ] - Cluster join: Successfully joined the cluster [application]
artifactory             | 2021-09-15T04:26:46.400Z [jfob ] [INFO ] [4cbc506523690ef1] [access_join.go:50             ] [main                ] - Cluster join: executing Router register at: localhost:8046 for service id jfob@01ffj4e61pfb8v0jz5p0j41r12 [application]
artifactory             | 2021-09-15T04:26:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [application.go:133            ] [main                ] - JFrog Observability (jfob) service initialization completed in 14.049 seconds. HTTP server listening on 127.0.0.1:8036.  [application]
artifactory             | 2021-09-15T04:26:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:45        ] [main                ] - Starting synced actions loop [shipping_service]
artifactory             | 2021-09-15T04:26:46.407Z [jfrou] [INFO ] [                ] [server_configuration.go:465   ] [main                ] - Skipping same configuration for provider file
artifactory             | 2021-09-15T04:26:46.560Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.a.c.AccessClientBootstrap:152] [art-init            ] - Cluster join: Executing join on 'http://localhost:8046/access'
artifactory             | 2021-09-15T04:26:46.631Z [jfac ] [INFO ] [3f188a7f777cc50f] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-7] - Cluster join: Successfully joined jfrt@01ffj4ehfthpdj1jq8g9yb0e6w with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:46.662Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.a.c.AccessClientBootstrap:162] [art-init            ] - Cluster join: Successfully joined the cluster
artifactory             | 2021-09-15T04:26:47.140Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 404 code
artifactory             | 2021-09-15T04:26:47.368Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.a.AccessServiceImpl:456 ] [art-init            ] - Initialized access service successfully with client id 2030684881, closing old client id [null]
artifactory             | 2021-09-15T04:26:47.368Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.a.AccessServiceImpl:1360] [art-init            ] - Updating access configuration with password expiration data
artifactory             | 2021-09-15T04:26:47.686Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8049
artifactory             | 2021-09-15T04:26:47.686Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on :8082
artifactory             | 2021-09-15T04:26:47.687Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8046
artifactory             | 2021-09-15T04:26:47.737Z [jfrt ] [WARN ] [9768c1a9f8a78294] [o.a.s.a.AccessServiceImpl:1621] [art-init            ] - Your Artifactory server is configured with the default admin credentials. It is highly recommended to change the default admin password. You can change the password from the User Management page.
artifactory             | 2021-09-15T04:26:47.928Z [jfrt ] [INFO ] [9768c1a9f8a78294] [tegrationCleanupServiceImpl:75] [art-init            ] - Using generated cron 0 8 3 ? * * for jobs table cleanup
artifactory             | 2021-09-15T04:26:48.150Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code
artifactory             | 2021-09-15T04:26:48.694Z [jfrou] [WARN ] [403b6d0d78a27caf] [local_topology.go:256         ] [main                ] - Readiness test failed with the following error: "required node services are missing or unhealthy"
artifactory             | 2021-09-15T04:26:48.713Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.c.r.ReplicatorServiceImpl:119] [art-init            ] - initializing Replicator Service
artifactory             | 2021-09-15T04:26:48.714Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.c.r.ReplicatorServiceImpl:338] [art-init            ] - Local Replicator is setting up in non-bundled mode
artifactory             | 2021-09-15T04:26:48.856Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ifactoryApplicationContext:561] [art-init            ] - Artifactory application context set to READY by refresh
artifactory             | 2021-09-15T04:26:48.866Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.s.MetadataMigrationHelper:203] [art-init            ] - No repositories found that correspond to the supported Metadata Migration types. Supported types are [Docker, Npm, Go, Debian, Conan, Puppet, NuGet, CRAN, Cargo, Gems, Vagrant, Chef, Opkg, Maven, YUM, Composer, Ivy, Helm, Bower, Alpine, SBT, Conda, Gradle, Pypi, CocoaPods]
artifactory             | 2021-09-15T04:26:48.868Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.s.MetadataMigrationHelper:218] [art-init            ] - Updating existing migration status for 'metadata-service-migration' to finished
artifactory             | 2021-09-15T04:26:48.868Z [jfrt ] [INFO ] [ebd17525d905741 ] [adsFolderCleanupServiceImpl:52] [art-exec-4          ] - Starting docker temp folder cleanup
artifactory             | 2021-09-15T04:26:48.869Z [jfrt ] [INFO ] [9768c1a9f8a78294] [onStatusStorageServiceImpl:137] [art-init            ] - Migration for 'metadata-service-migration' has finished.
artifactory             | 2021-09-15T04:26:48.870Z [jfrt ] [INFO ] [ebd17525d905741 ] [adsFolderCleanupServiceImpl:54] [art-exec-4          ] - Docker temp folder cleanup finished, time took: 2 millis
artifactory             | 2021-09-15T04:26:48.882Z [jfrt ] [INFO ] [9768c1a9f8a78294] [.w.NodeEventTaskManagerImpl:41] [art-init            ] - Event management started on behalf of Event Operator with ID 'metadata-operator-events'
artifactory             | 2021-09-15T04:26:48.889Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.s.StorageServiceImpl:529] [art-init            ] - Scheduling CalculateReposStorageSummaryJob to run at '0 25 * ? * *'
artifactory             | 2021-09-15T04:26:48.890Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.s.StorageServiceImpl:558] [art-init            ] - LogStorageStatusJob disabled and not scheduled to run
artifactory             | 2021-09-15T04:26:48.902Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.m.f.MetricsServiceImpl:135] [art-init            ] - Metric Framework Service is enabled: false
artifactory             | 2021-09-15T04:26:48.918Z [jfrt ] [INFO ] [9768c1a9f8a78294] [o.a.s.a.AccessServiceImpl:1681] [art-init            ] - Successful register of Artifactory serviceId jfrt@01ffj4ehfthpdj1jq8g9yb0e6w in Access Federation
artifactory             | 2021-09-15T04:26:49.035Z [jfrt ] [INFO ] [                ] [d.DatabaseConverterRunnable:37] [pool-38-thread-1    ] - Starting Async converter thread.
artifactory             | 2021-09-15T04:26:49.038Z [jfrt ] [INFO ] [9768c1a9f8a78294] [ctoryContextConfigListener:272] [art-init            ] - Artifactory (jfrt) service initialization completed in 13.006 seconds. Listening on port: 8081
artifactory             | 2021-09-15T04:26:49.044Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:33] [pool-38-thread-1    ] - Starting attempt #1 of async conversion for v225_change_nodes_node_name_idx
artifactory             | 2021-09-15T04:26:49.050Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:35] [pool-38-thread-1    ] - Conversion of v225_change_nodes_node_name_idx finished successfully.
artifactory             | 2021-09-15T04:26:49.050Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:33] [pool-38-thread-1    ] - Starting attempt #1 of async conversion for v225_change_nodes_node_path_idx
artifactory             | 2021-09-15T04:26:49.051Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:35] [pool-38-thread-1    ] - Conversion of v225_change_nodes_node_path_idx finished successfully.
artifactory             | 2021-09-15T04:26:49.051Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:33] [pool-38-thread-1    ] - Starting attempt #1 of async conversion for v225_change_nodes_node_repo_path_idx
artifactory             | 2021-09-15T04:26:49.054Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:35] [pool-38-thread-1    ] - Conversion of v225_change_nodes_node_repo_path_idx finished successfully.
artifactory             | 2021-09-15T04:26:49.054Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:33] [pool-38-thread-1    ] - Starting attempt #1 of async conversion for v225_add_bundle_files_node_id_index
artifactory             | 2021-09-15T04:26:49.060Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:35] [pool-38-thread-1    ] - Conversion of v225_add_bundle_files_node_id_index finished successfully.
artifactory             | 2021-09-15T04:26:49.061Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:33] [pool-38-thread-1    ] - Starting attempt #1 of async conversion for v229_node_events_tmp_event_id_idx
artifactory             | 2021-09-15T04:26:49.065Z [jfrt ] [INFO ] [                ] [ncDBSqlConditionalConverter:35] [pool-38-thread-1    ] - Conversion of v229_node_events_tmp_event_id_idx finished successfully.
artifactory             | 2021-09-15T04:26:49.156Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code
artifactory             | 2021-09-15T04:26:50.095L [tomct] [SEVERE] [                ] [org.glassfish.jersey.server.spring.SpringComponentProvider] [org.glassfish.jersey.server.spring.SpringComponentProvider bind] - None or multiple beans found in Spring context for type class org.artifactory.rest.filter.LicenseRestFilter, skipping the type.
artifactory             | 2021-09-15T04:26:50.163Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code
artifactory             | 2021-09-15T04:26:51.176Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code
artifactory             | 2021-09-15T04:26:52.177Z [jffe ] [INFO ] [                ] [                              ] [main                ] - pinging artifactory, attempt number 20
artifactory             | 2021-09-15T04:26:52.225Z [jffe ] [ERROR] [                ] [                              ] [main                ] - ArtifactoryClient::http [get] request to /api/system/ping failed with 503 code
artifactory             | 2021-09-15T04:26:52.225Z [jffe ] [INFO ] [                ] [                              ] [main                ] - pinging artifactory attempt number 20 failed with code : undefined
artifactory             | 2021-09-15T04:26:53.373Z [jffe ] [INFO ] [                ] [                              ] [main                ] - artifactory was pinged successfully
artifactory             | 2021-09-15T04:26:53.374Z [jffe ] [INFO ] [                ] [                              ] [main                ] - setting service id - jffe@000
artifactory             | 2021-09-15T04:26:53.407Z [jfac ] [INFO ] [3fd29ad1fa197010] [s.r.NodeRegistryServiceImpl:68] [27.0.0.1-8040-exec-6] - Cluster join: Successfully joined jffe@000 with node id iesnnscidartifactory1
artifactory             | 2021-09-15T04:26:53.411Z [jffe ] [INFO ] [                ] [                              ] [main                ] - Cluster join: Successfully joined the cluster
artifactory             | 2021-09-15T04:26:53.436Z [jfrou] [INFO ] [                ] [server_configuration.go:465   ] [main                ] - Skipping same configuration for provider file
artifactory             | 2021-09-15T04:26:53.437Z [jffe ] [INFO ] [                ] [                              ] [main                ] - UI service successfully registered on router, serviceId: jffe@000
artifactory             | 2021-09-15T04:26:53.625Z [jffe ] [INFO ] [                ] [                              ] [main                ] - Recurring tasks started
artifactory             | 2021-09-15T04:26:53.692Z [jfrou] [WARN ] [a1a3ea74aedbf1a ] [local_topology.go:256         ] [main                ] - Readiness test failed with the following error: "required node services are missing or unhealthy"
artifactory             | Wed, 15 Sep 2021 04:26:53 GMT helmet deprecated helmet.featurePolicy is deprecated (along with the HTTP header) and will be removed in helmet@4. You can use the `feature-policy` module instead. at ../../../../opt/jfrog/artifactory/app/frontend/bin/server/dist/bundle.js:13862:24
artifactory             | 2021-09-15T04:26:53.816Z [jffe ] [INFO ] [                ] [                              ] [main                ] - frontend (jffe) service initialization completed in 20.89 seconds. Listening on port: port 8070
artifactory             | 2021-09-15T04:26:58.700Z [jfrou] [WARN ] [7826cf59c765d71c] [local_topology.go:256         ] [main                ] - Readiness test failed with the following error: "required node services are missing or unhealthy"
artifactory             | 2021-09-15T04:27:03.690Z [jfrou] [INFO ] [1e7e28714a76ed6e] [local_topology.go:270         ] [main                ] -
artifactory             | ###############################################################
artifactory             | ###   All services started successfully in 31.855 seconds   ###
artifactory             | ###############################################################
artifactory             | 2021-09-15T04:27:03.698Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8049
artifactory             | 2021-09-15T04:27:03.698Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on :8082
artifactory             | 2021-09-15T04:27:03.698Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8046
artifactory             | 2021-09-15T04:27:03.705Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:181] [c-default-executor-2] - Loading root certificate from database.
artifactory             | 2021-09-15T04:27:03.713Z [jfac ] [INFO ] [2586ecea9f582b51] [.s.b.AccessProjectBootstrap:89] [pool-22-thread-2    ] - Finished initializing Projects permissions in 8.24 millis
artifactory             | 2021-09-15T04:27:03.748Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:328] [c-default-executor-2] - [ACCESS BOOTSTRAP] Saved new root certificate at: /opt/jfrog/artifactory/var/etc/access/keys/root.crt
artifactory             | 2021-09-15T04:27:03.748Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:190] [c-default-executor-2] - Finished loading root certificate from database.
artifactory             | 2021-09-15T04:27:03.749Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:181] [c-default-executor-2] - Loading ca certificate from database.
artifactory             | 2021-09-15T04:27:03.790Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:328] [c-default-executor-2] - [ACCESS BOOTSTRAP] Saved new ca certificate at: /opt/jfrog/artifactory/var/etc/access/keys/ca.crt
artifactory             | 2021-09-15T04:27:03.791Z [jfac ] [INFO ] [                ] [CertificateFileHandlerBase:190] [c-default-executor-2] - Finished loading ca certificate from database.
artifactory             | 2021-09-15T04:27:03.793Z [jfac ] [INFO ] [                ] [alConfigurationServiceBase:182] [c-default-executor-2] - Loading configuration from db finished successfully
artifactory             | 2021-09-15T04:27:05.700Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8046
artifactory             | 2021-09-15T04:27:05.701Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on localhost:8049
artifactory             | 2021-09-15T04:27:05.701Z [jfrou] [INFO ] [                ] [server_configuration.go:61    ] [main                ] - Server configuration reloaded on :8082
artifactory             | 2021-09-15T04:27:06.664Z [jfrt ] [INFO ] [                ] [o.j.c.ConfigWrapperImpl:342   ] [pool-8-thread-1     ] - [Node ID: iesnnscidartifactory1]  detected local  modify for config 'artifactory/config/security/access/access.admin.token'
artifactory             | 2021-09-15T04:27:18.944Z [jfrt ] [INFO ] [530484cce065096f] [a.e.EventsLogCleanUpService:69] [art-exec-31         ] - Starting cleanup of old events from event log
artifactory             | 2021-09-15T04:27:18.963Z [jfrt ] [INFO ] [530484cce065096f] [.e.EventsLogCleanUpService:105] [art-exec-31         ] - Cleanup of old events from event log finished
artifactory             | 2021-09-15T04:27:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:27:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:27:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:24:12.521054066 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:27:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:28:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:28:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:28:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:27:46.405801949 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:28:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:29:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:29:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:29:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:28:46.406006408 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:29:46.407Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:30:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:30:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:30:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:29:46.406689163 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:30:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:31:46.073Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:31:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:31:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:31:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:30:46.406156983 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:31:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:32:22.002Z [jfac ] [INFO ] [1783a24900581428] [j.a.s.s.t.TokenServiceImpl:188] [jf-access-task1     ] - Revoked 5 expired tokens.
artifactory             | 2021-09-15T04:32:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:32:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:32:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:31:46.406171033 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:32:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:33:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:33:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:33:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:32:46.406667989 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:33:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:34:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:34:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:34:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:33:46.406374677 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:34:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:35:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:35:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:35:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:34:46.406467628 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:35:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:36:46.074Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:36:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:36:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:36:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:35:46.40637647 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:36:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:37:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:37:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:37:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:36:46.406259459 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:37:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:38:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:38:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:38:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:37:46.406348338 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:38:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:39:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:39:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:39:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:38:46.405690619 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:39:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:40:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:40:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:40:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:39:46.405768982 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:40:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:41:46.075Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:41:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:41:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:41:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:40:46.406339136 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:41:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:42:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:42:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:42:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:41:46.406092158 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:42:46.407Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:43:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:43:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:43:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:42:46.406712123 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:43:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:44:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:44:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:44:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:43:46.406193418 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:44:46.407Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:45:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:45:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:45:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:44:46.406675869 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:45:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:46:46.076Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:46:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:46:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:46:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:45:46.406290974 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:46:46.407Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:47:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:47:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:47:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:46:46.406345793 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:47:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:48:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:48:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:48:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:47:46.406292084 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:48:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:49:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:49:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:49:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:48:46.406251858 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:49:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:50:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:50:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:50:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:49:46.405702987 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:50:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:51:46.076Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:51:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:51:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:51:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:50:46.406350851 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:51:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:52:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:52:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:52:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:51:46.406591654 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:52:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:53:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:53:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:53:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:52:46.406410217 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:53:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:54:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:54:46.405Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:54:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:53:46.406463302 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:54:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:55:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:55:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:55:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:54:46.405969789 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:55:46.407Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]
artifactory             | 2021-09-15T04:56:46.077Z [jfmd ] [ERROR] [185a73aa77c702e4] [compatibility_logger.go:28    ] [main                ] - Project update error: rpc error: code = DeadlineExceeded desc = context deadline exceeded [access_client]
artifactory             | 2021-09-15T04:56:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:72        ] [main                ] - Observability Log Shipping allowed pattern for logs is [] [shipping_service]
artifactory             | 2021-09-15T04:56:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:87        ] [main                ] - Files matched with the pattern from configuration are: [] [shipping_service]
artifactory             | 2021-09-15T04:56:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:99        ] [main                ] - Last Collection Time was 2021-09-15 04:55:46.406391187 +0000 UTC [shipping_service]
artifactory             | 2021-09-15T04:56:46.406Z [jfob ] [INFO ] [4cbc506523690ef1] [shipping_service.go:114       ] [main                ] - Shippable files are: [] [shipping_service]

gouravsw avatar Sep 15 '21 06:09 gouravsw

Hello,

I'm in the same situation you were and it's too bad (for me) you never had any response. Did you figure it out ?

Thanks in advance

mro1984 avatar Mar 10 '22 10:03 mro1984

Same here, any solution?

xirixiz avatar Oct 04 '22 07:10 xirixiz

same here. Any solution?

hghoghari avatar Dec 13 '22 23:12 hghoghari

Hi all. This repository is deprecated. I suggest you move to use the official distributions of Artifactory and use latest versions. There are many improvements.

As for the errors, some of them are simply the initial negotiations between multiple services until they are all aligned and ready to serve.

I highly recommend moving the our Helm Charts. We are heavily investing in Kubernetes deployments and this is how we also run our cloud service.

eldada avatar Dec 14 '22 07:12 eldada