Fraunhofer-AISEC / ids-clearing-house-service

This is an implementation of the IDS Clearing House
Apache License 2.0
0 stars 11 forks source link

Communication issues between CH and DSC #4

Closed jfernandezsqs closed 2 years ago

jfernandezsqs commented 2 years ago

In the issue closed for the installation and configuration for the CH (https://github.com/Fraunhofer-AISEC/ids-clearing-house-service/issues/2) We have search for documentation in IDS-G and in IDS RAM. We have tried to configure the CH and the DSC in order to work locally and interoperate in our Testbed. There are the following issues in documentation:

These are the changes in configuration we have made for the CH: image

  1. Keyring-api --> /data/keyring-api/Rocket.toml

    [global] limits = { json = 5242880 } daps_api_url = "http://omejdn:4567" [debug] address = "0.0.0.0" port = 8002 log_level = "normal" limits = { forms = 32768 } database_url = "mongodb://localhost:27018" clear_db = true [release] address = "0.0.0.0" port = 8002 log_level = "normal" limits = { forms = 32768 } database_url = "mongodb://keyring-mongo:27017" clear_db = false

  2. Service-api --> /data/Rocket.toml

    [global] limits = { json = 5242880 } daps_api_url = "http://omejdn:4567" connector_name = "https://clearinghouse.aisec.fraunhofer.de/" infomodel_version = "4.0.0" server_agent = "https://clearinghouse.aisec.fraunhofer.de" signing_key = "keys/private_key.der" [debug] address = "0.0.0.0" port = 8000 log_level = "normal" limits = { forms = 32768 } database_url = "mongodb://localhost:27019" keyring_api_url = "http://localhost:8002" document_api_url = "http://localhost:8001" clear_db = true [release] address = "0.0.0.0" port = 8000 log_level = "normal" limits = { forms = 32768 } database_url = "mongodb://clearing-house-mongo:27017" keyring_api_url = "http://keyring-api:8002" document_api_url = "http://document-api:8001" clear_db = false

  3. For the Trusted connector we have used a certificate obtained from Fraunhofer as the ch-ids.p12 and for the truststore.p12 we have used the DSC truststore.p12

  4. For the daps.der we have used the certificate for the DAPS used in our Testbed.

  5. For the key we have used a private_key.der obtained from Fraunhofer.

This is the docker-compose.yml file we have used for the deployment of the CH:

version: '3' services: clearing-house-api: image: sqs-service-api
container_name: "clearing-house-api" depends_on:

  • document-api
  • keyring-api
  • clearing-house-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Debug ports:
  • "8000:8000"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/Rocket.toml:/server/Rocket.toml
  • ./data/keys:/server/keys
  • ./data/certs:/server/certs clearing-house-mongo: container_name: "clearing-house-mongo" image: mongo:latest restart: always environment: MONGO_INITDB_DATABASE: process ports:

    This is solely for debugging purposes. Remove for deployment

  • "27019:27017" document-api: image: sqs-document-api container_name: "document-api" depends_on:
  • keyring-api
  • document-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8001:8001"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/document-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs document-mongo: container_name: "document-mongo" image: mongo:latest restart: always environment: MONGO_INITDB_DATABASE: document
    ports:

    This is solely for debugging purposes. Remove for deployment

  • "27017:27017" keyring-api: image: sqs-keyring-api container_name: "keyring-api" depends_on:
  • keyring-mongo environment:

    Allowed levels: Off, Error, Warn, Info, Debug, Trace

  • API_LOG_LEVEL=Info ports:
  • "8002:8002"

    restart: unless-stopped

    Configuration of APIs is handled by config.yml and Rocket.toml

    volumes:

  • ./data/keyring-api/init_db:/server/init_db
  • ./data/keyring-api/Rocket.toml:/server/Rocket.toml
  • ./data/certs:/server/certs keyring-mongo: container_name: "keyring-mongo" image: mongo:latest restart: always environment: MONGO_INITDB_DATABASE: keyring ports:

    This is solely for debugging purposes. Remove for deployment

  • "27018:27017"

    The core platform, mounts docker control socket and route definition into the image

    tc-core: container_name: "tc-core" image: fraunhoferaisec/trusted-connector-core:5.0.2 tty: true stdin_open: true volumes:

  • /var/run/docker.sock:/var/run/docker.sock
  • ./data/trusted-connector/allow-all-flows.pl:/root/deploy/allow-all-flows.pl
  • ./data/trusted-connector/ch-ids.p12:/root/etc/keystore.p12
  • ./data/trusted-connector/truststore.p12:/root/etc/truststore.p12
  • ./data/trusted-connector/clearing-house-processors-1.1-SNAPSHOT.jar:/root/jars/clearing-house-processors-1.1-SNAPSHOT.jar
  • ./data/trusted-connector/routes/clearing-house-routes.xml:/root/deploy/clearing-house-routes.xml environment: TC_DAPS_URL: https://omejdn:4567

    Enable this port mappings for debugging or UI access from localhost

    ports:

    - "5005:5005"

    - "8181:8181"

  • "8443:8443"

    Enable this port mapping (along with "ports:" above) to allow access to IDSCP from outside the ids-wide network

    - "9292:9292"

  • "9999:9999"

    expose:

    - "9999"

    networks: default: external: name: broker-localhost_default

In the DSC we have changed the application.properties file in order to point to the CH:

clearing.house.url=http://clearing-house-api:8000/logs/messages/

With all this configurations it is not working the communication between the DSC and the CH. Could you please help us with this issue? Thanks in advance,

sebplorenz commented 2 years ago

Is there an error message in the logs? Can you see in the logs of the DSC that it is communicating with the CH?

kragall commented 2 years ago

In the issue closed for the installation and configuration for the CH (#2) We have search for documentation in IDS-G and in IDS RAM. We have tried to configure the CH and the DSC in order to work locally and interoperate in our Testbed. There are the following issues in documentation:

  • It is not explained how to configure the DSC in order to registry the actions in the logs of the CH.
  • For the DSC this is all the information related to the CH configuration image

This is an issue of the DSC. Please check with the DSC team how to configure it.

  • Searching in IDS-G there is no information:

I am aware of this, but I cannot do anything about it. Information for the Clearing House Interaction with a Connector has been added to the IDS-G-Pre and is in the process of being released into the IDS-G as far as I know. Please check with the IDSA for more information or access to the IDS-G-Pre.

With all this configurations it is not working the communication between the DSC and the CH. Could you please help us with this issue? Thanks in advance,

I can see from the changes that you are trying to use a custom DAPS. Please note that there are additional steps required for the Clearing House to accept custom certificates of a custom DAPS. Description see here.

Without a more specific error description e.g. showing the logs of the trusted connector or the clearing-house-api I am not able to help you further

jfernandezsqs commented 2 years ago

These are the logs on the Clearing House terminal:

sqs@Virtual-Ubuntu-20:~/TESTBED_TODO/CLEARING_HOUSE$ docker-compose up Starting keyring-mongo ... done Starting document-mongo ... done Starting clearing-house-mongo ... done Starting tc-core ... done Starting keyring-api ... done Starting document-api ... done Starting clearing-house-api ... done Attaching to clearing-house-mongo, keyring-mongo, tc-core, document-mongo, keyring-api, document-api, clearing-house-api document-mongo | {"t":{"$date":"2021-11-23T08:01:45.041+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"thread1","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.049+00:00"},"s":"I", "c":"NETWORK", "id":4915701, "ctx":"thread1","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.055+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.056+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"thread1","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.057+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.057+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.057+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.058+00:00"},"s":"I", "c":"CONTROL", "id":5945603, "ctx":"thread1","msg":"Multi threading initialized"} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.062+00:00"},"s":"I", "c":"CONTROL", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"155edf63062c"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.062+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.4","gitVersion":"62a84ede3cc9a334e8bc82160714df71e7d3a29e","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.062+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.062+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":""}}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.070+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.070+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} document-mongo | {"t":{"$date":"2021-11-23T08:01:45.070+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2457M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.575+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"-","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.575+00:00"},"s":"I", "c":"NETWORK", "id":4915701, "ctx":"-","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.576+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.576+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.582+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.582+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.582+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.582+00:00"},"s":"I", "c":"CONTROL", "id":5945603, "ctx":"main","msg":"Multi threading initialized"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.582+00:00"},"s":"I", "c":"CONTROL", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"d15ddff30ec4"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.585+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.4","gitVersion":"62a84ede3cc9a334e8bc82160714df71e7d3a29e","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.585+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.585+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":""}}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.590+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.590+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:44.590+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2457M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.586+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"-","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.588+00:00"},"s":"I", "c":"NETWORK", "id":4915701, "ctx":"main","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.588+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.588+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.589+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.590+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.590+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.601+00:00"},"s":"I", "c":"CONTROL", "id":5945603, "ctx":"main","msg":"Multi threading initialized"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.601+00:00"},"s":"I", "c":"CONTROL", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"ce71c02b686b"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.601+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.4","gitVersion":"62a84ede3cc9a334e8bc82160714df71e7d3a29e","openSSLVersion":"OpenSSL 1.1.1f 31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.601+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.601+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.606+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.606+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:44.606+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2457M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:46.952+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654506:952001][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} clearing-house-api | [2021-11-23][08:01:46][ch_lib::db][DEBUG] clear_db: false found. Preparing to clear database... clearing-house-api | [2021-11-23][08:01:46][ch_lib::db][DEBUG] Using database url: '"mongodb://clearing-house-mongo:27017"' keyring-mongo | {"t":{"$date":"2021-11-23T08:01:47.231+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:231225][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} clearing-house-api | [2021-11-23][08:01:47][ch_lib::db][DEBUG] Check if database is empty... clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:47.289+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:289946][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:47.619+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:619071][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:47.655+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:655179][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:47.723+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:723933][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 1/30336 to 2/256"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:47.891+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654507:891511][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 1/36096 to 2/256"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:48.062+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:61976][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.096+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:96446][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.179+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:179686][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.300+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:300859][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.356+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:356439][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:48.404+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:404235][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 1/32640 to 2/256"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.486+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:486062][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.488+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:488582][1:0x7fce0d125c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.515+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:515712][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.515+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:515796][1:0x7f91ea59ac80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.596+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:596559][1:0x7f91ea59ac80], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.597+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:597948][1:0x7fce0d125c80], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:48.608+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:608327][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 1 through 2"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.644+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":4054}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.644+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.647+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":4041}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.648+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.652+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.664+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.668+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.670+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.685+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.685+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.698+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.698+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.699+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.700+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.715+00:00"},"s":"I", "c":"REPL", "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.729+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.728+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.728+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.728+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.730+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.731+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.732+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.741+00:00"},"s":"I", "c":"REPL", "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.745+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.748+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.748+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.778+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.11:50312","uuid":"1617b56e-5bb7-4845-b557-5a449b004dde","connectionId":1,"connectionCount":1}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.783+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"192.168.32.11:50312","client":"conn1","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.791+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.11:50314","uuid":"55a217de-8f0b-4c1e-8d31-3882e513c1bd","connectionId":2,"connectionCount":2}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:01:48.792+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"192.168.32.11:50314","client":"conn2","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-api | [2021-11-23][08:01:48][ch_lib::db][DEBUG] ... found collections: [ clearing-house-api | "transactions", clearing-house-api | ] clearing-house-api | [2021-11-23][08:01:48][ch_lib::db][DEBUG] ... database initialized. clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client][DEBUG] Configuring Daps Api Client... clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client][DEBUG] ...found api url: http://omejdn:4567 document-mongo | {"t":{"$date":"2021-11-23T08:01:48.813+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:813871][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 2 through 2"}} clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client::daps_api][DEBUG] Parsing certificate certs/daps.der ... clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client::daps_api][WARN] ... couldn't parse certificate. Not added. clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client][DEBUG] Configuring Document Api Client... clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client][DEBUG] ...found api url: http://document-api:8001 clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client][DEBUG] Configuring Keyring Api Client... clearing-house-api | [2021-11-23][08:01:48][corelib::api::client][DEBUG] ...found api url: http://keyring-api:8002 clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN]  Configured for release. clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] address: 0.0.0.0 clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] port: 8000 clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] workers: 2 clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] ident: Rocket clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] keep-alive: 5s clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] tls: disabled clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] temp dir: /tmp clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] log level: normal clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] cli colors: true clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN]  Routes: clearing-house-api | [2021-11-23][08:01:48][rocket::launch_][WARN] (get_public_signkey) GET /.well-known/jwks.json application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (createprocess) POST /process/ application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (unauth_create_process) POST /process/<_pid> [50] application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (log) POST /messages/log/ application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (unauth_log) POST /messages/log/<_pid> [50] application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch_][WARN] (querypid) POST /messages/query/ application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (unauth_query_pid) POST /messages/query/<_pid> [50] application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch_][WARN] (queryid) POST /messages/query// application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] (unauth_query_id) POST /messages/query/<_pid>/<_id> [50] application/json clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN]  Fairings: clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Configuring Document Api Client (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Configuring Keyring Api Client (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Adding Server Info (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Adding Signing Key (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Configuring Daps Api Client (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Shield (liftoff, response, singleton) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Mounting Clearing House API (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN] Configuring Process Database (ignite) clearing-house-api | [2021-11-23][08:01:48][rocket::shield::shield][INFO] ️ Shield: clearing-house-api | [2021-11-23][08:01:48][][INFO] X-Frame-Options: SAMEORIGIN clearing-house-api | [2021-11-23][08:01:48][][INFO] X-Content-Type-Options: nosniff clearing-house-api | [2021-11-23][08:01:48][_][INFO] Permissions-Policy: interest-cohort=() clearing-house-api | [2021-11-23][08:01:48][rocket::launch][WARN]  Rocket has launched from http://0.0.0.0:8000 document-mongo | {"t":{"$date":"2021-11-23T08:01:48.918+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:918737][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:48.924+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:924154][1:0x7fe244f4fc80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.983+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.9:51526","uuid":"efb05ea9-ece3-424c-97be-9e591ab4ca7a","connectionId":1,"connectionCount":1}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.985+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"192.168.32.9:51526","client":"conn1","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.989+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.9:51528","uuid":"9ab9d894-d4d1-4bfa-9f45-dc316a85d20d","connectionId":2,"connectionCount":2}} keyring-mongo | {"t":{"$date":"2021-11-23T08:01:48.990+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"192.168.32.9:51528","client":"conn2","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:48.998+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1637654508:998979][1:0x7fe244f4fc80], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} keyring-api | [2021-11-23][08:01:49][core_lib::api::client::dapsapi][WARN] ... couldn't parse certificate. Not added. keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Configured for release. keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] address: 0.0.0.0 keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] port: 8002 keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] workers: 2 keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] ident: Rocket keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] keep-alive: 5s keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] tls: disabled keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] temp dir: /tmp keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] log level: normal keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] cli colors: true keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Routes: keyring-api | [2021-11-23][08:01:49][rocket::launch_][WARN] (create_doctype) POST /doctype/ application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (get_doctypes) GET /doctype/ application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (update_doctype) POST /doctype/ application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (delete_default_doctype) DELETE /doctype/ application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (get_default_doctype) GET /doctype/ application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (delete_doctype) DELETE /doctype// application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (get_doctype) GET /doctype// application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] (decrypt_keys) GET /keyring/decrypt_keys/<_pid> application/json keyring-api | [2021-11-23][08:01:49][rocket::launch_][WARN] (generate_keys) GET /keyring/generate_keys/<_pid>? application/json keyring-api | [2021-11-23][08:01:49][rocket::launch_][WARN] (decrypt_key_map) GET /keyring/decrypt_keys/<_pid>/? application/json keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Fairings: keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] Mounting Keyring API (ignite) keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] Configuring Daps Api Client (ignite) keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] Shield (liftoff, response, singleton) keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] Configuring Keyring Database (ignite) keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN] Mounting Document Type API (ignite) keyring-api | [2021-11-23][08:01:49][rocket::shield::shield][INFO] ️ Shield: keyring-api | [2021-11-23][08:01:49][][INFO] X-Content-Type-Options: nosniff keyring-api | [2021-11-23][08:01:49][][INFO] Permissions-Policy: interest-cohort=() keyring-api | [2021-11-23][08:01:49][][INFO] X-Frame-Options: SAMEORIGIN keyring-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Rocket has launched from http://0.0.0.0:8002 document-mongo | {"t":{"$date":"2021-11-23T08:01:49.049+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":3979}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.049+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.055+00:00"},"s":"I", "c":"STORAGE", "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.063+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.085+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.101+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":13},"outgoing":{"minWireVersion":0,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.104+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.105+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.107+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.133+00:00"},"s":"I", "c":"REPL", "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.135+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.136+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.136+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.165+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.10:59022","uuid":"f9c9f388-b62c-47c3-8a95-48e015ef01ae","connectionId":1,"connectionCount":1}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.168+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"192.168.32.10:59022","client":"conn1","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.172+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.32.10:59024","uuid":"9ea7c35e-63d7-4504-9cda-a2a125f1e93c","connectionId":2,"connectionCount":2}} document-mongo | {"t":{"$date":"2021-11-23T08:01:49.172+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"192.168.32.10:59024","client":"conn2","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.2"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-api | [2021-11-23][08:01:49][core_lib::api::client::dapsapi][WARN] ... couldn't parse certificate. Not added. document-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Configured for release. document-api | [2021-11-23][08:01:49][rocket::launch][WARN] address: 0.0.0.0 document-api | [2021-11-23][08:01:49][rocket::launch][WARN] port: 8001 document-api | [2021-11-23][08:01:49][rocket::launch][WARN] workers: 2 document-api | [2021-11-23][08:01:49][rocket::launch][WARN] ident: Rocket document-api | [2021-11-23][08:01:49][rocket::launch][WARN] keep-alive: 5s document-api | [2021-11-23][08:01:49][rocket::launch][WARN] limits: bytes = 8KiB, data-form = 2MiB, file = 1MiB, form = 32KiB, forms = 32KiB, json = 5MiB, msgpack = 1MiB, string = 8KiB document-api | [2021-11-23][08:01:49][rocket::launch][WARN] tls: disabled document-api | [2021-11-23][08:01:49][rocket::launch][WARN] temp dir: /tmp document-api | [2021-11-23][08:01:49][rocket::launch][WARN] log level: normal document-api | [2021-11-23][08:01:49][rocket::launch][WARN] cli colors: true document-api | [2021-11-23][08:01:49][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s document-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Routes: document-api | [2021-11-23][08:01:49][rocket::launch_][WARN] (create_encdocument) POST /doc/ application/json document-api | [2021-11-23][08:01:49][rocket::launch][WARN] (get_enc_documents_for_pid) GET /doc/? application/json document-api | [2021-11-23][08:01:49][rocket::launch_][WARN] (deletedocument) DELETE /doc// application/json document-api | [2021-11-23][08:01:49][rocket::launch][WARN] (get_encdocument) GET /doc//? application/json document-api | [2021-11-23][08:01:49][rocket::launch][WARN] GET /cors/ document-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Fairings: document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Configuring Document Database (ignite) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Mounting Document API (ignite) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Shield (liftoff, response, singleton) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Adding CORS rules (ignite) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] CORS (ignite, request, response) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Configuring Daps Api Client (ignite) document-api | [2021-11-23][08:01:49][rocket::launch][WARN] Configuring Keyring Api Client (ignite) document-api | [2021-11-23][08:01:49][rocket::shield::shield][INFO] ️ Shield: document-api | [2021-11-23][08:01:49][][INFO] X-Content-Type-Options: nosniff document-api | [2021-11-23][08:01:49][][INFO] Permissions-Policy: interest-cohort=() document-api | [2021-11-23][08:01:49][][INFO] X-Frame-Options: SAMEORIGIN document-api | [2021-11-23][08:01:49][rocket::launch][WARN]  Rocket has launched from http://0.0.0.0:8001 tc-core | tc-core | . _ _ tc-core | /\ / '_ () \ \ \ \ tc-core | ( ( )\ | ' | '| | ' \/ ` | \ \ \ \ tc-core | \/ _)| |)| | | | | || (| | ) ) ) ) tc-core | ' |__| .|| ||| |\, | / / / / tc-core | =========|_|==============|__/=//// tc-core | :: Spring Boot :: (v2.4.5) tc-core | tc-core | 2021-11-23 08:01:49.935 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on 6f5a8f9b1d52 with PID 1 (/root/jars/ids-connector-5.0.2.jar started by root in /root) tc-core | 2021-11-23 08:01:49.939 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.4.5, Spring v5.3.6 tc-core | 2021-11-23 08:01:49.940 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default tc-core | 2021-11-23 08:01:50.944 WARN 1 --- [kground-preinit] o.s.h.c.j.Jackson2ObjectMapperBuilder : For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath tc-core | 2021-11-23 08:01:52.230 INFO 1 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.camel.spring.boot.CamelAutoConfiguration' of type [org.apache.camel.spring.boot.CamelAutoConfiguration$$EnhancerBySpringCGLIB$$b41b7f99] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) tc-core | 2021-11-23 08:01:52.680 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) tc-core | 2021-11-23 08:01:52.715 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] tc-core | 2021-11-23 08:01:52.716 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.45] tc-core | 2021-11-23 08:01:52.961 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext tc-core | 2021-11-23 08:01:52.961 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2823 ms tc-core | 2021-11-23 08:01:52.995 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes tc-core | 2021-11-23 08:01:53.277 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl tc-core | 2021-11-23 08:01:54.252 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary tc-core | 2021-11-23 08:01:54.257 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Loading theory: tc-core | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% tc-core | % Prolog representation of a data flow policy tc-core | %
tc-core | % Source: default tc-core | % tc-core | % Do not edit this file, it has been generated automatically tc-core | % by XText/Xtend. tc-core | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% tc-core | % tc-core | % Only required for SWI-Prolog tc-core | % Allow the following predicates to be scattered around the prolog file. tc-core | % Otherwise Prolog will issue a warning if they are not stated in subsequent lines. tc-core | %:- discontiguous service/1. tc-core | %:- discontiguous has_endpoint/2. tc-core | %:- discontiguous creates_label/2. tc-core | %:- discontiguous removes_label/2. tc-core | %:- discontiguous rule/1. tc-core | %:- discontiguous rule_priority/2. tc-core | %:- discontiguous receives_label/1. tc-core | %:- discontiguous has_decision/2. tc-core | %:- discontiguous has_target/2. tc-core | %:- discontiguous has_capability/2. tc-core | %:- discontiguous has_property/3. tc-core | %:- discontiguous requires_prerequisites/2. tc-core | %:- discontiguous has_alternativedecision/2. tc-core | %:- discontiguous has_obligation/2. tc-core | tc-core | %%%%%%%%% Basic Blocking Rule %%%%%%%%%% tc-core | rule(dropAll). tc-core | rule_priority(dropAll,0). tc-core | has_decision(dropAll,drop). tc-core | receives_label(dropAll). tc-core | has_target(dropAll,serviceAll). tc-core | tc-core | %%%%%%%%%% Catch All Service %%%%%%%%%%% tc-core | service(serviceAll). tc-core | has_endpoint(serviceAll,'.'). tc-core | tc-core | %%%%%%%%%%%%%%%% Rules %%%%%%%%%%%%%%%%% tc-core | % Allow everything tc-core | rule(allowAll). tc-core | rule_priority(allowAll, 1). tc-core | has_target(allowAll, serviceAll). tc-core | receives_label(allowAll). tc-core | has_decision(allowAll, allow). tc-core | tc-core | 2021-11-23 08:01:54.323 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... tc-core | 2021-11-23 08:01:55.465 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@79349b61 tc-core | 2021-11-23 08:01:56.122 INFO 1 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' tc-core | 2021-11-23 08:01:56.261 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] tc-core | 2021-11-23 08:01:56.530 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.rm.CamelInterceptor@96c840a tc-core | 2021-11-23 08:01:56.655 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@243162b1 to: org.apache.camel.support.SimpleTypeConverter@712c9bcf tc-core | 2021-11-23 08:01:56.657 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@70f8d217 to: org.apache.camel.support.SimpleTypeConverter@528c4353 tc-core | 2021-11-23 08:01:56.658 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@7fb02606 to: org.apache.camel.support.SimpleTypeConverter@49ee3b8d tc-core | 2021-11-23 08:01:56.999 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' tc-core | 2021-11-23 08:01:57.007 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML routes from: classpath:camel/.xml tc-core | 2021-11-23 08:01:57.009 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML rests from: classpath:camel-rest/*.xml tc-core | 2021-11-23 08:01:57.021 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) is starting tc-core | 2021-11-23 08:01:57.022 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled tc-core | 2021-11-23 08:01:57.351 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html tc-core | 2021-11-23 08:01:57.372 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Total 0 routes, of which 0 are started tc-core | 2021-11-23 08:01:57.377 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) started in 0.353 seconds tc-core | 2021-11-23 08:01:57.387 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 8.606 seconds (JVM running for 12.688) tc-core | 2021-11-23 08:01:57.399 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.0.0 loaded tc-core | 2021-11-23 08:01:57.401 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi tc-core | 2021-11-23 08:01:57.403 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability tc-core | 2021-11-23 08:01:57.403 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController tc-core | 2021-11-23 08:01:57.404 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor tc-core | 2021-11-23 08:01:57.406 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController tc-core | 2021-11-23 08:01:57.415 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping tc-core | 2021-11-23 08:01:57.417 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver tc-core | 2021-11-23 08:01:57.418 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties tc-core | 2021-11-23 08:01:57.418 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties tc-core | 2021-11-23 08:01:57.419 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration tc-core | 2021-11-23 08:01:57.421 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration tc-core | 2021-11-23 08:01:57.422 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-api-org.apache.camel.component.rest.springboot.RestApiComponentConfiguration tc-core | 2021-11-23 08:01:57.422 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration tc-core | 2021-11-23 08:01:57.423 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties tc-core | 2021-11-23 08:01:57.424 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration tc-core | 2021-11-23 08:01:57.425 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration tc-core | 2021-11-23 08:01:57.425 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration tc-core | 2021-11-23 08:01:57.426 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration tc-core | 2021-11-23 08:01:57.427 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration tc-core | 2021-11-23 08:01:57.428 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration tc-core | 2021-11-23 08:01:57.429 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration tc-core | 2021-11-23 08:01:57.430 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties tc-core | 2021-11-23 08:01:57.430 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties tc-core | 2021-11-23 08:01:57.432 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor tc-core | 2021-11-23 08:01:57.435 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext tc-core | 2021-11-23 08:01:57.436 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint tc-core | 2021-11-23 08:01:57.437 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi tc-core | 2021-11-23 08:01:57.440 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter tc-core | 2021-11-23 08:01:57.443 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi tc-core | 2021-11-23 08:01:57.446 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 tc-core | 2021-11-23 08:01:57.447 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI tc-core | 2021-11-23 08:01:57.447 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration tc-core | 2021-11-23 08:01:57.450 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: constant-language tc-core | 2021-11-23 08:01:57.451 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate tc-core | 2021-11-23 08:01:57.452 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller tc-core | 2021-11-23 08:01:57.453 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver tc-core | 2021-11-23 08:01:57.454 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping tc-core | 2021-11-23 08:01:57.455 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator tc-core | 2021-11-23 08:01:57.457 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver tc-core | 2021-11-23 08:01:57.458 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet tc-core | 2021-11-23 08:01:57.459 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration tc-core | 2021-11-23 08:01:57.460 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error tc-core | 2021-11-23 08:01:57.461 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes tc-core | 2021-11-23 08:01:57.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer tc-core | 2021-11-23 08:01:57.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor tc-core | 2021-11-23 08:01:57.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: exchangeProperty-language tc-core | 2021-11-23 08:01:57.463 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: file-language tc-core | 2021-11-23 08:01:57.464 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager tc-core | 2021-11-23 08:01:57.464 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate tc-core | 2021-11-23 08:01:57.464 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter tc-core | 2021-11-23 08:01:57.465 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver tc-core | 2021-11-23 08:01:57.465 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter tc-core | 2021-11-23 08:01:57.465 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: header-language tc-core | 2021-11-23 08:01:57.465 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: http-component tc-core | 2021-11-23 08:01:57.465 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter tc-core | 2021-11-23 08:01:57.466 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor tc-core | 2021-11-23 08:01:57.467 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager tc-core | 2021-11-23 08:01:57.467 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl tc-core | 2021-11-23 08:01:57.467 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent tc-core | 2021-11-23 08:01:57.467 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent tc-core | 2021-11-23 08:01:57.467 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService tc-core | 2021-11-23 08:01:57.468 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper tc-core | 2021-11-23 08:01:57.468 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder tc-core | 2021-11-23 08:01:57.468 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath tc-core | 2021-11-23 08:01:57.470 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration tc-core | 2021-11-23 08:01:57.470 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer tc-core | 2021-11-23 08:01:57.471 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule tc-core | 2021-11-23 08:01:57.472 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor tc-core | 2021-11-23 08:01:57.473 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans tc-core | 2021-11-23 08:01:57.473 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers tc-core | 2021-11-23 08:01:57.474 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer tc-core | 2021-11-23 08:01:57.475 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver tc-core | 2021-11-23 08:01:57.476 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: management.endpoint.camelroutes-org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointProperties tc-core | 2021-11-23 08:01:57.477 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter tc-core | 2021-11-23 08:01:57.477 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters tc-core | 2021-11-23 08:01:57.478 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor tc-core | 2021-11-23 08:01:57.479 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI tc-core | 2021-11-23 08:01:57.480 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement tc-core | 2021-11-23 08:01:57.480 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver tc-core | 2021-11-23 08:01:57.481 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager tc-core | 2021-11-23 08:01:57.482 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService tc-core | 2021-11-23 08:01:57.483 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector tc-core | 2021-11-23 08:01:57.483 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher tc-core | 2021-11-23 08:01:57.484 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser tc-core | 2021-11-23 08:01:57.486 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider tc-core | 2021-11-23 08:01:57.487 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor tc-core | 2021-11-23 08:01:57.488 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper tc-core | 2021-11-23 08:01:57.488 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator tc-core | 2021-11-23 08:01:57.489 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver tc-core | 2021-11-23 08:01:57.491 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration tc-core | 2021-11-23 08:01:57.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration tc-core | 2021-11-23 08:01:57.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration tc-core | 2021-11-23 08:01:57.494 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.495 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.495 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.496 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.499 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.500 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.501 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration tc-core | 2021-11-23 08:01:57.504 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration tc-core | 2021-11-23 08:01:57.505 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration tc-core | 2021-11-23 08:01:57.506 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration tc-core | 2021-11-23 08:01:57.507 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration tc-core | 2021-11-23 08:01:57.508 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration tc-core | 2021-11-23 08:01:57.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration tc-core | 2021-11-23 08:01:57.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration tc-core | 2021-11-23 08:01:57.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration tc-core | 2021-11-23 08:01:57.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration tc-core | 2021-11-23 08:01:57.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration tc-core | 2021-11-23 08:01:57.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration tc-core | 2021-11-23 08:01:57.514 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator tc-core | 2021-11-23 08:01:57.515 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages tc-core | 2021-11-23 08:01:57.515 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration tc-core | 2021-11-23 08:01:57.516 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration tc-core | 2021-11-23 08:01:57.516 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration tc-core | 2021-11-23 08:01:57.517 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration tc-core | 2021-11-23 08:01:57.518 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration tc-core | 2021-11-23 08:01:57.519 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration tc-core | 2021-11-23 08:01:57.519 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration tc-core | 2021-11-23 08:01:57.520 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration tc-core | 2021-11-23 08:01:57.520 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration tc-core | 2021-11-23 08:01:57.520 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration tc-core | 2021-11-23 08:01:57.520 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration tc-core | 2021-11-23 08:01:57.521 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration tc-core | 2021-11-23 08:01:57.521 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory tc-core | 2021-11-23 08:01:57.522 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration tc-core | 2021-11-23 08:01:57.523 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration tc-core | 2021-11-23 08:01:57.523 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration tc-core | 2021-11-23 08:01:57.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration tc-core | 2021-11-23 08:01:57.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration tc-core | 2021-11-23 08:01:57.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration tc-core | 2021-11-23 08:01:57.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer tc-core | 2021-11-23 08:01:57.525 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer tc-core | 2021-11-23 08:01:57.525 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration tc-core | 2021-11-23 08:01:57.526 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration tc-core | 2021-11-23 08:01:57.528 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration tc-core | 2021-11-23 08:01:57.529 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration tc-core | 2021-11-23 08:01:57.530 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration tc-core | 2021-11-23 08:01:57.530 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration tc-core | 2021-11-23 08:01:57.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration tc-core | 2021-11-23 08:01:57.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration tc-core | 2021-11-23 08:01:57.534 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration tc-core | 2021-11-23 08:01:57.534 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration tc-core | 2021-11-23 08:01:57.535 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration tc-core | 2021-11-23 08:01:57.535 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration tc-core | 2021-11-23 08:01:57.535 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration tc-core | 2021-11-23 08:01:57.535 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration tc-core | 2021-11-23 08:01:57.536 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration tc-core | 2021-11-23 08:01:57.537 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration tc-core | 2021-11-23 08:01:57.537 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration tc-core | 2021-11-23 08:01:57.537 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration tc-core | 2021-11-23 08:01:57.540 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder tc-core | 2021-11-23 08:01:57.540 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor tc-core | 2021-11-23 08:01:57.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: ref-language tc-core | 2021-11-23 08:01:57.542 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-api-component tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-component tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder tc-core | 2021-11-23 08:01:57.543 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery tc-core | 2021-11-23 08:01:57.544 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties tc-core | 2021-11-23 08:01:57.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties tc-core | 2021-11-23 08:01:57.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties tc-core | 2021-11-23 08:01:57.547 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter tc-core | 2021-11-23 08:01:57.547 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer tc-core | 2021-11-23 08:01:57.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery tc-core | 2021-11-23 08:01:57.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter tc-core | 2021-11-23 08:01:57.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder tc-core | 2021-11-23 08:01:57.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder tc-core | 2021-11-23 08:01:57.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tokenize-language tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter tc-core | 2021-11-23 08:01:57.549 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlCamelContextConfigurer tc-core | 2021-11-23 08:01:57.550 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher tc-core | 2021-11-23 08:01:57.933 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api tc-core | 2021-11-23 08:01:57.933 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api tc-core | 2021-11-23 08:01:57.934 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api tc-core | 2021-11-23 08:01:57.934 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo tc-core | 2021-11-23 08:01:57.935 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: tc-core tc-core | 2021-11-23 08:01:57.936 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo tc-core | 2021-11-23 08:01:57.936 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo tc-core | 2021-11-23 08:01:57.937 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: dscconsumer tc-core | 2021-11-23 08:01:57.937 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: dscprovider tc-core | 2021-11-23 08:01:57.938 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn tc-core | 2021-11-23 08:01:57.941 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided tc-core | 2021-11-23 08:01:57.942 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! tc-core | 2021-11-23 08:01:57.943 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. tc-core | 2021-11-23 08:01:57.946 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http tc-core | 2021-11-23 08:01:57.946 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api tc-core | 2021-11-23 08:01:57.946 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest tc-core | 2021-11-23 08:01:57.952 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/clearing-house-routes.xml detected, creating XmlApplicationContext... tc-core | 2021-11-23 08:01:59.008 INFO 1 --- [ Thread-2] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@62e50955 tc-core | 2021-11-23 08:01:59.025 INFO 1 --- [ Thread-2] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.rm.CamelInterceptor@96c840a tc-core | 2021-11-23 08:01:59.227 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Apache Camel 3.0.1 (CamelContext: camel-2) is starting tc-core | 2021-11-23 08:01:59.227 INFO 1 --- [ Thread-2] o.a.c.management.JmxManagementStrategy : JMX is enabled tc-core | 2021-11-23 08:01:59.548 INFO 1 --- [ Thread-2] o.a.camel.component.http.HttpComponent : Created ClientConnectionManager org.apache.http.impl.conn.PoolingHttpClientConnectionManager@7036db2d tc-core | 2021-11-23 08:01:59.638 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : StreamCaching is not in use. If using streams then its recommended to enable stream caching. See more details at http://camel.apache.org/stream-caching.html tc-core | 2021-11-23 08:01:59.841 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_CREATE started and consuming from: direct://createPid tc-core | 2021-11-23 08:01:59.844 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_LOG started and consuming from: direct://log tc-core | 2021-11-23 08:01:59.846 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_QUERY started and consuming from: direct://query tc-core | 2021-11-23 08:01:59.875 INFO 1 --- [ Thread-2] org.eclipse.jetty.util.log : Logging initialized @15175ms to org.eclipse.jetty.util.log.Slf4jLog tc-core | 2021-11-23 08:01:59.978 INFO 1 --- [ Thread-2] org.eclipse.jetty.server.Server : jetty-9.4.39.v20210325; built: 2021-03-25T14:42:11.471Z; git: 9fc7ca5a922f2a37b84ec9dbc26a5168cee7e667; jvm 11.0.11+9 tc-core | 2021-11-23 08:02:00.044 INFO 1 --- [ Thread-2] o.e.jetty.server.handler.ContextHandler : Started o.e.j.s.ServletContextHandler@3e11c461{/,null,AVAILABLE} tc-core | 2021-11-23 08:02:00.064 INFO 1 --- [ Thread-2] o.e.jetty.server.AbstractConnector : Started ServerConnector@50eda924{HTTP/1.1, (http/1.1)}{0.0.0.0:9999} tc-core | 2021-11-23 08:02:00.066 INFO 1 --- [ Thread-2] org.eclipse.jetty.server.Server : Started @15366ms tc-core | 2021-11-23 08:02:00.066 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_QUERY_PID started and consuming from: jetty:http://0.0.0.0:9999/messages/query/%7Bpid%7D?httpMethodRestrict=POST tc-core | 2021-11-23 08:02:00.070 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_QUERY_PID_ID started and consuming from: jetty:http://0.0.0.0:9999/messages/query/%7Bpid%7D/%7Bid%7D?httpMethodRestrict=POST tc-core | 2021-11-23 08:02:00.073 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_LOG_PID started and consuming from: jetty:http://0.0.0.0:9999/messages/log/%7Bpid%7D?httpMethodRestrict=POST tc-core | 2021-11-23 08:02:00.076 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_CREATE_PID started and consuming from: jetty:http://0.0.0.0:9999/process/%7Bpid%7D?httpMethodRestrict=POST tc-core | 2021-11-23 08:02:00.081 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Total 7 routes, of which 7 are started tc-core | 2021-11-23 08:02:00.082 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Apache Camel 3.0.1 (CamelContext: camel-2) started in 0.855 seconds clearing-house-mongo | {"t":{"$date":"2021-11-23T08:02:48.689+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654568:688958][1:0x7f91e1d88700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:02:48.693+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654568:693694][1:0x7fce04913700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} document-mongo | {"t":{"$date":"2021-11-23T08:02:49.090+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654569:90168][1:0x7fe23c73d700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINTPROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} clearing-house-api | [2021-11-23][08:03:11][rocket::server][INFO] GET / text/html: clearing-house-api | [2021-11-23][08:03:11][][ERROR] No matching routes for GET / text/html. clearing-house-api | [2021-11-23][08:03:11][][WARN] No 404 catcher registered. Using Rocket default. clearing-house-api | [2021-11-23][08:03:11][][INFO] Response succeeded. clearing-house-api | [2021-11-23][08:03:11][rocket::server][INFO] GET /favicon.ico image/avif: clearing-house-api | [2021-11-23][08:03:11][][ERROR] No matching routes for GET /favicon.ico image/avif. clearing-house-api | [2021-11-23][08:03:11][][WARN] No 404 catcher registered. Using Rocket default. clearing-house-api | [2021-11-23][08:03:11][][INFO] Response succeeded. clearing-house-api | [2021-11-23][08:03:20][rocket::server][INFO] GET / text/html: clearing-house-api | [2021-11-23][08:03:20][][ERROR] No matching routes for GET / text/html. clearing-house-api | [2021-11-23][08:03:20][][WARN] No 404 catcher registered. Using Rocket default. clearing-house-api | [2021-11-23][08:03:20][][INFO] Response succeeded. clearing-house-mongo | {"t":{"$date":"2021-11-23T08:03:48.734+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654628:734240][1:0x7f91e1d88700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:03:48.744+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654628:744532][1:0x7fce04913700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} document-mongo | {"t":{"$date":"2021-11-23T08:03:49.133+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654629:133798][1:0x7fe23c73d700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} clearing-house-mongo | {"t":{"$date":"2021-11-23T08:04:48.789+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654688:789621][1:0x7f91e1d88700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} keyring-mongo | {"t":{"$date":"2021-11-23T08:04:48.794+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654688:794567][1:0x7fce04913700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}} document-mongo | {"t":{"$date":"2021-11-23T08:04:49.159+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1637654689:159745][1:0x7fe23c73d700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 10"}}

We are obtaining “INFO: Response succeeded” for all three services in ports 8000,8001 and 8002:

clearing-house-api | [2021-11-23][08:27:12][rocket::server][INFO] GET / text/html: clearing-house-api | [2021-11-23][08:27:12][][ERROR] No matching routes for GET / text/html. clearing-house-api | [2021-11-23][08:27:12][][WARN] No 404 catcher registered. Using Rocket default. clearing-house-api | [2021-11-23][08:27:12][][INFO] Response succeeded. document-api | [2021-11-23][08:27:17][rocket::server][INFO] GET / text/html: document-api | [2021-11-23][08:27:17][][ERROR] No matching routes for GET / text/html. document-api | [2021-11-23][08:27:17][][WARN] No 404 catcher registered. Using Rocket default. document-api | [2021-11-23][08:27:17][][INFO] Response succeeded. keyring-api | [2021-11-23][08:27:27][rocket::server][INFO] GET / text/html: keyring-api | [2021-11-23][08:27:27][][ERROR] No matching routes for GET / text/html. keyring-api | [2021-11-23][08:27:27][][WARN] No 404 catcher registered. Using Rocket default. keyring-api | [2021-11-23][08:27:27][][INFO] Response succeeded. keyring-api | [2021-11-23][08:27:27][rocket::server][INFO] GET /favicon.ico image/avif: keyring-api | [2021-11-23][08:27:27][][ERROR] No matching routes for GET /favicon.ico image/avif. keyring-api | [2021-11-23][08:27:27][][WARN] No 404 catcher registered. Using Rocket default. keyring-api | [2021-11-23][08:27:27][][INFO] Response succeeded.

We have followed both steps specified in the Clearing House Service documentation for the DAPS setup. We are not sure where we have gone wrong in the DAPS configuration as the Clearing House terminal does not provide us with any logs. We have searched the information available in IDS-pre and as mentioned in the issue, there is no documentation about the configuration of the Clearing House and how to create the logs.

kragall commented 2 years ago

The only lines in the log that might indicate a problem are these lines:

clearing-house-api | [2021-11-23][08:01:48][core_lib::api::client::daps_api][WARN] ... couldn't parse certificate. Not added. keyring-api | [2021-11-23][08:01:49][core_lib::api::client::daps_api][WARN] ... couldn't parse certificate. Not added. document-api | [2021-11-23][08:01:49][core_lib::api::client::daps_api][WARN] ... couldn't parse certificate. Not added.

They show that there is a file in the mounted certificates folder that is not a certificate in the DER format. If you are aware that you loaded a non-DER certificate, this is of no consequence. But I guess that this is the certificate you are trying to use for your DAPS and in this case you should change this file and put a certificate in the DER format in place as stated in step 1 of the documentation.

About the errors you see at the end: The three apis are json apis and will not respond to any request with text/html. Actually you are not supposed to interact with the apis directly. In IDS terms the Clearing House is a data app running on a connector and you are supposed to interact with the connector using one of the IDS protocols that is supported by the Clearing House. The IDS-G-pre describes the Clearing House IDS architecture, the message flow between connector and Clearing House and the multipart message protocol.