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

Issues with docker-compose #2

Closed jfernandezsqs closed 2 years ago

jfernandezsqs commented 2 years ago

Hi Mark, I have build the three images for the document, keyring and service using the following commands:

docker build -f docker/document-api-multistage.Dockerfile . -t sqs-document-api docker build -f docker/keyring-api-multistage.Dockerfile . -t sqs-keyring-api docker build -f docker/clearing-house-api-multistage.Dockerfile . -t sqs-service-api

When I execute the docker-compose.yml some services are exited with code 101:

keyring-api document-api

I have changed the following lines in the provided docker-compose.yml:

Line 4 --> image: sqs-service-api Line 39 --> image: sqs-document-api Line 69 --> image: sqs-keyring-api

I attach the logs that are obtained:

sqs@Virtual-Ubuntu-20:~/CLEARING_HOUSE$ docker-compose up Creating network "clearing_house_clearing-house-internal" with driver "bridge" Creating network "clearing_house_ids-wide" with driver "bridge" Creating tc-core ... done Creating document-mongo ... done Creating keyring-mongo ... done Creating clearing-house-mongo ... done Creating document-api ... done Creating clearing-house-api ... done Creating keyring-api ... done Attaching to document-mongo, keyring-mongo, clearing-house-mongo, tc-core, document-api, keyring-api, clearing-house-api clearing-house-api | thread 'main' panicked at 'called Result::unwrap() on an Err value: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run with RUST_BACKTRACE=1 environment variable to display a backtrace clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:05.711+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-05T14:01:05.714+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}}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:05.714+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:05.714+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-05T14:01:05.715+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:05.715+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-05T14:01:05.715+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-05T14:01:05.718+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":"4061c9055ab9"}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:05.718+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-05T14:01:05.718+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-05T14:01:05.718+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-05T14:01:05.731+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-05T14:01:05.731+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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],"}} document-api | thread 'main' panicked at 'called Result::unwrap() on an Err value: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run with RUST_BACKTRACE=1 environment variable to display a backtrace document-mongo | {"t":{"$date":"2021-11-05T14:01:05.105+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-05T14:01:05.105+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-05T14:01:05.105+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-05T14:01:05.105+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-05T14:01:05.107+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-05T14:01:05.107+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-05T14:01:05.107+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-05T14:01:05.108+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":"de0bdebc5f7b"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:05.108+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-05T14:01:05.108+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-05T14:01:05.108+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-05T14:01:05.110+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-05T14:01:05.110+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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],"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.528+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120867:528512][1:0x7f35312d0c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.528+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120867:528619][1:0x7f35312d0c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.554+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2444}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.554+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-05T14:01:07.593+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-05T14:01:07.594+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.650+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-05T14:01:07.656+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"116cfcc8-6f29-4977-95c0-5b5d68dab03c"}},"options":{"uuid":{"$uuid":"116cfcc8-6f29-4977-95c0-5b5d68dab03c"}}}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.701+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.701+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.702+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-05T14:01:07.702+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"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-05T14:01:07.702+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.702+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.703+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-05T14:01:07.703+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"64ddd98b-7c18-4623-a6a8-6d206f8737a9"}},"options":{"capped":true,"size":10485760}}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.732+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.735+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"9b569a95-aebf-4240-98b0-cbc464145a24"}},"options":{}}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.736+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.736+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-05T14:01:07.736+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-05T14:01:07.736+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-05T14:01:07.777+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-05T14:01:07.777+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} keyring-api | thread 'main' panicked at 'called Result::unwrap() on an Err value: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run with RUST_BACKTRACE=1 environment variable to display a backtrace keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.328+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}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.344+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.345+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.345+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-05T14:01:05.346+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.346+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-05T14:01:05.346+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-05T14:01:05.354+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":"677accee2754"}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:05.354+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-05T14:01:05.354+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-05T14:01:05.354+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-05T14:01:05.360+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-05T14:01:05.360+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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-05T14:01:08.056+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120868:56144][1:0x7f37374f3c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.056+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120868:56436][1:0x7f37374f3c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.164+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2804}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.164+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-05T14:01:08.250+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-05T14:01:08.250+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.278+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"]} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.279+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"f1270a60-519d-46f8-886c-12192961d907"}},"options":{"uuid":{"$uuid":"f1270a60-519d-46f8-886c-12192961d907"}}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.350+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.351+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.351+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}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.351+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.351+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.351+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.352+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-05T14:01:08.352+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"b482e155-69c8-4eea-8139-b29b6f1ed5da"}},"options":{"capped":true,"size":10485760}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.386+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.389+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"83c3b52e-b16b-435a-937a-feab43068daf"}},"options":{}}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.391+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.392+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-05T14:01:08.392+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-05T14:01:08.392+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-05T14:01:08.456+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-05T14:01:08.456+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.684+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120868:684393][1:0x7f494bc74c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.684+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636120868:684461][1:0x7f494bc74c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.705+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2974}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.705+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-05T14:01:08.756+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-05T14:01:08.757+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.775+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-05T14:01:08.779+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"9d203a43-f665-49c9-86b5-7e54011560db"}},"options":{"uuid":{"$uuid":"9d203a43-f665-49c9-86b5-7e54011560db"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.836+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.836+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.836+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-05T14:01:08.836+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"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-05T14:01:08.836+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.838+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-05T14:01:08.839+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-05T14:01:08.839+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"fe27be40-3fb9-4638-9e8b-89a79ffbc855"}},"options":{"capped":true,"size":10485760}}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.901+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.907+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"6d2e4c43-e985-4e93-aca3-199568b7efe0"}},"options":{}}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.918+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.918+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-05T14:01:08.918+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-05T14:01:08.918+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-05T14:01:08.962+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-05T14:01:08.962+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} document-api exited with code 101 keyring-api exited with code 101 tc-core | tc-core | . _ _ tc-core | /\ / '_ () \ \ \ \ tc-core | ( ( )\ | ' | '| | ' \/ | \ \ \ \ tc-core | \\/ ___)| |_)| | | | | || (_| | ) ) ) ) tc-core | ' |____| .__|_| |_|_| |_\__, | / / / / tc-core | =========|_|==============|___/=/_/_/_/ tc-core | :: Spring Boot :: (v2.4.5) tc-core | clearing-house-api exited with code 101 tc-core | 2021-11-05 14:01:11.800 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on ca6e99d64683 with PID 1 (/root/jars/ids-connector-5.0.2.jar started by root in /root) tc-core | 2021-11-05 14:01:11.829 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.4.5, Spring v5.3.6 tc-core | 2021-11-05 14:01:11.831 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:14.559 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 keyring-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:18.205 INFO 1 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.camel.spring.boot.CamelAutoConfiguration' of type [org.apache.camel.spring.boot.CamelAutoConfiguration$$EnhancerBySpringCGLIB$$318cd87a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) tc-core | 2021-11-05 14:01:18.864 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) tc-core | 2021-11-05 14:01:18.906 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] tc-core | 2021-11-05 14:01:18.910 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.45] tc-core | 2021-11-05 14:01:19.444 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext tc-core | 2021-11-05 14:01:19.448 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 7143 ms tc-core | 2021-11-05 14:01:19.554 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes document-api exited with code 101 document-api exited with code 101 document-api exited with code 101 document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api exited with code 101 keyring-api exited with code 101 keyring-api exited with code 101 keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:20.556 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... clearing-house-api exited with code 101 clearing-house-api exited with code 101 clearing-house-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:21.235 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 1 to version 3... tc-core | 2021-11-05 14:01:21.245 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful tc-core | 2021-11-05 14:01:21.246 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 2 to version 3... tc-core | 2021-11-05 14:01:21.259 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful tc-core | 2021-11-05 14:01:21.765 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@5ca4c88a tc-core | 2021-11-05 14:01:22.464 INFO 1 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' tc-core | 2021-11-05 14:01:22.618 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] tc-core | 2021-11-05 14:01:22.941 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.rm.CamelInterceptor@4070c4ff tc-core | 2021-11-05 14:01:23.203 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@5740ad76 to: org.apache.camel.support.SimpleTypeConverter@40a84ea8 tc-core | 2021-11-05 14:01:23.204 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@5e9f1a4c to: org.apache.camel.support.SimpleTypeConverter@4bf89d3d tc-core | 2021-11-05 14:01:23.204 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@37a1beb3 to: org.apache.camel.support.SimpleTypeConverter@11ca8f71 tc-core | 2021-11-05 14:01:24.111 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' tc-core | 2021-11-05 14:01:24.131 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML routes from: classpath:camel/*.xml tc-core | 2021-11-05 14:01:24.133 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML rests from: classpath:camel-rest/*.xml tc-core | 2021-11-05 14:01:24.157 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) is starting tc-core | 2021-11-05 14:01:24.158 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled document-api exited with code 101 document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api exited with code 101 keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:25.358 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-05 14:01:25.401 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Total 0 routes, of which 0 are started tc-core | 2021-11-05 14:01:25.412 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) started in 1.250 seconds tc-core | 2021-11-05 14:01:25.425 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 16.037 seconds (JVM running for 19.879) tc-core | 2021-11-05 14:01:25.460 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.0.0 loaded tc-core | 2021-11-05 14:01:25.460 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi tc-core | 2021-11-05 14:01:25.460 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability tc-core | 2021-11-05 14:01:25.460 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController tc-core | 2021-11-05 14:01:25.469 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor tc-core | 2021-11-05 14:01:25.473 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController tc-core | 2021-11-05 14:01:25.476 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping tc-core | 2021-11-05 14:01:25.482 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver tc-core | 2021-11-05 14:01:25.483 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties tc-core | 2021-11-05 14:01:25.484 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties tc-core | 2021-11-05 14:01:25.484 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration tc-core | 2021-11-05 14:01:25.485 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration tc-core | 2021-11-05 14:01:25.486 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-05 14:01:25.486 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration tc-core | 2021-11-05 14:01:25.488 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties tc-core | 2021-11-05 14:01:25.488 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration tc-core | 2021-11-05 14:01:25.491 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: constant-language tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver tc-core | 2021-11-05 14:01:25.492 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: exchangeProperty-language tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: file-language tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: header-language tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: http-component tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter tc-core | 2021-11-05 14:01:25.493 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor tc-core | 2021-11-05 14:01:25.504 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath tc-core | 2021-11-05 14:01:25.509 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers tc-core | 2021-11-05 14:01:25.510 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver tc-core | 2021-11-05 14:01:25.511 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-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider tc-core | 2021-11-05 14:01:25.511 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration tc-core | 2021-11-05 14:01:25.512 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration tc-core | 2021-11-05 14:01:25.513 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration tc-core | 2021-11-05 14:01:25.524 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration tc-core | 2021-11-05 14:01:25.525 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat tc-core | 2021-11-05 14:01:25.530 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder tc-core | 2021-11-05 14:01:25.531 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: ref-language tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-api-component tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-component tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter tc-core | 2021-11-05 14:01:25.532 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer tc-core | 2021-11-05 14:01:25.533 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery tc-core | 2021-11-05 14:01:25.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter tc-core | 2021-11-05 14:01:25.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder tc-core | 2021-11-05 14:01:25.541 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder tc-core | 2021-11-05 14:01:25.545 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver tc-core | 2021-11-05 14:01:25.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tokenize-language tc-core | 2021-11-05 14:01:25.546 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlCamelContextConfigurer tc-core | 2021-11-05 14:01:25.548 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher clearing-house-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace tc-core | 2021-11-05 14:01:25.975 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api tc-core | 2021-11-05 14:01:25.975 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api tc-core | 2021-11-05 14:01:25.975 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api tc-core | 2021-11-05 14:01:25.976 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo tc-core | 2021-11-05 14:01:25.978 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo tc-core | 2021-11-05 14:01:25.979 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo tc-core | 2021-11-05 14:01:25.981 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: tc-core tc-core | 2021-11-05 14:01:25.985 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided tc-core | 2021-11-05 14:01:25.985 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! tc-core | 2021-11-05 14:01:25.985 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. tc-core | 2021-11-05 14:01:25.991 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http tc-core | 2021-11-05 14:01:25.991 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api tc-core | 2021-11-05 14:01:25.992 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest document-api exited with code 101 document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api exited with code 101 keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api exited with code 101 keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace keyring-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', keyring-api/src/db/mod.rs:45:83 keyring-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api exited with code 101 document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace document-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', document-api/src/db/mod.rs:29:83 document-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api exited with code 101 clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1environment variable to display a backtrace clearing-house-api | thread 'main' panicked at 'calledResult::unwrap()on anErrvalue: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83 clearing-house-api | note: run withRUST_BACKTRACE=1` environment variable to display a backtrace

Am I missing something for the set-up? Thanks in advance,

kragall commented 2 years ago

clearing-house-api | thread 'main' panicked at 'called Result::unwrap() on an Err value: Error { tag: Tag::Default, profile: None, metadata: None, path: [], kind: MissingField("database_url"), prev: None }', ch-lib/src/db/mod.rs:25:83

As can be seen quite early in the log you postet: The database_url for the clearing-house-api ist not configured. The apis (clearing-house-api, document-api, keyring-api) need a Rocket.tomlconfiguration file to work. And it needs to contain the fields described in the documentation, as each API has slightly different fields it requires.

For the clearing-house-api there is an example Rocket.toml. For document-api and keyring-api there are examples in the core repository.

If you run the apis using a docker-compose you need to add the Rocket.toml as a volume.

jfernandezsqs commented 2 years ago

For the clearing-house-api I have in the docker-compose file the following volume: image For the keyring and documentation I have the corresponding ones: image image I have checked that the Rocket.toml files correspond to the ones specified in documentation. I do not know why it fails, because it is specified in the docker-compose.yml the volumes needed for ech step.

kragall commented 2 years ago

Can you post the contents of each Rocket.toml you mounted?

jfernandezsqs commented 2 years ago

For the document-api: image For the keyring-api: image For the service-api: image

kragall commented 2 years ago

The contents of the files seems ok. Still it seems that the api cannot find the configuration file. Can you check that the file is indeed available in the docker container?

  1. Start the containers e.g. using docker-compose up -d
  2. Attach to the clearing-house-api container docker exec -ti clearing-house-api /bin/bash
  3. You should find yourself in the /serverdirectory of the container. Check e.g. with cat Rocket.toml that the file is there and contains what you are expecting it to.
jfernandezsqs commented 2 years ago

I am not able of attaching to the clearing-house-api container due to restarting of the container. image

kragall commented 2 years ago

Start by removing this line from the docker-compose.yml in each of the service apis: restart: unless-stopped. It's easier to debug what's going wrong if your containers are not restarted repeatedly.

From the logs you posted it seems all of your api containers have the same problem, so they will most likely start, run into a problem, and stop. Choose one api that only depends on a database container (e.g. keyring-api [if it depends on the document-api then it is an error in your docker-compose.yml]) and run docker-compose run keyring-api /bin/bash.

You should now be inside the keyring-api container in the /server directory and you can start the api by calling ./keyring-api. You should also be able to check the contents of the Rocket.tomlfile.

jfernandezsqs commented 2 years ago

I have changed the docker-compose.yml commenting the lines for the service apis (restart: unless-stopped) I have executed:

docker-compose up -d

Then trying what you explain in the issue gives me the following information:

image

I have followed the documentation guide step by step but I do not know what is the problem. I have send you the docker-compose.yml by email. Is there any mistake in this docker-compose.yml file?

kragall commented 2 years ago

The problem is that you did not provide the Rocket.toml files to the docker container. This is apparent from the cat command, since Rocket.toml is a directory and not a file. When you are mounting docker containers with or without docker-compose and add volumes with a non-existing location on the host, the container will show it as an empty directory.

You need to make sure that the files you mount as volumes in the docker-compose.yml are located on the host where the yml file claims that they are. Take the Rocket.toml volume defined for the keyring-api e.g.:

- ./data/keyring-api/Rocket.toml:/server/Rocket.toml

On your host you need to have the Rocket.toml file located in the folder ./data/keyring-api/ relative to the docker-compose.yml. If you have a look at this location you will probably see there a directory called Rocket.toml and not the configuration file that is supposed to be there. Delete the directory and place the correct file at this location. You will need to check this for all volumes declared in the yml file.

jfernandezsqs commented 2 years ago

I have added all the Rocket.toml to the corresponding place in the data folder. I have checked that the three (keyring-api, document-api and clearing-house-api) have the neccesary files (certs, Rocket.toml and init_db).

Regarding the trusted connector I have found in one of the examples [https://github.com/industrial-data-space/trusted-connector/tree/master/examples/deploy] the allow-all-flows.pl file. But I do not have the files to put at the route data/trusted-connector/ image How can I obtain those files to put in the data/trusted-connector/ folder?

kragall commented 2 years ago

There is a link in the CH documentation to the examples of the trusted connector (https://github.com/industrial-data-space/trusted-connector/tree/master/examples). The allow-all-flows.pl can be found in the deploy folder there. docker.sock is optional as far as I am concerned, but that depends on your needs for the deployment.

The p12 files depend on the PKI infrastructure, i.e. if you use the https://daps.aisec.fraunhofer.de DAPS and certificates from the IDS PKI you will be able to use the truststore.p12 from the etc folder of the trusted connector examples and the keystone.p12 you got from the IDS PKI. If you are using your own DAPS and your own PKI you need to get these files from your own PKI.

The only two files that are specific for the CH in that example is the jar that needs to be build from the sources as described in the CH documentation and the xml file that is linked in the documentation.

jfernandezsqs commented 2 years ago

ok, I have placed all the files except the clearing-house-processors-1.1-SNAPSHOT.jar Looking at the clearing-house-service documentation for the trusted connector it says:

image

What is the command I have to execute in order to have the .jar file? I have used ./gradlew at the clearing-house-processors folder Could you update documentation and place there more information explaining the way to obtain the .jar file?

kragall commented 2 years ago

It's described in the section Building from Source: https://github.com/International-Data-Spaces-Association/ids-clearing-house-service/tree/master#clearing-house-processors

I added a link in the section you cited to the Building from Source section

jfernandezsqs commented 2 years ago

Thank you, I have tried the link described in the documentation. I have installed manually gradle with the steps detailed in the following link: (https://gradle.org/install/#configure) But when executing gradle build in the folder of the clearing-house-processor it gives me the following error: image

Error: not find or not loaded principal class org.gradle.launcher.GradleMain Caused by: java.lang.ClassNotFoundException: org.gradle.launcher.GradleMain

I have tried to fix it searching the error information but I am not able of making it work. Could you please help me? Thanks in advance,

kragall commented 2 years ago

I cannot help you fix your installation of Gradle. It's a standard tool that has broad documentation available online. And I've never encountered such an error. A cursory google search hints that you might have missing symlinks: https://superuser.com/questions/1597412/bin-gradle-23-cd-cant-cd-to-bin-share-gradle-bin

oxisto commented 2 years ago

Thank you, I have tried the link described in the documentation. I have installed manually gradle with the steps detailed in the following link: (https://gradle.org/install/#configure) But when executing gradle build in the folder of the clearing-house-processor it gives me the following error: image

Error: not find or not loaded principal class org.gradle.launcher.GradleMain Caused by: java.lang.ClassNotFoundException: org.gradle.launcher.GradleMain

I have tried to fix it searching the error information but I am not able of making it work. Could you please help me? Thanks in advance,

In general I would recommend using the gradle wrapper which we have in the directory using ./gradlew build instead of using your own gradle installation.

jfernandezsqs commented 2 years ago

I have manage to fix it. This is the answer I receive from the docker-compose.yml, it seems to work properly.

sqs@Virtual-Ubuntu-20:~/CLEARING_HOUSE$ docker-compose up Pulling tc-core (fraunhoferaisec/trusted-connector-core:5.0.2)... 5.0.2: Pulling from fraunhoferaisec/trusted-connector-core c549ccf8d472: Downloading [> ] c549ccf8d472: Downloading [==> ] 1.162MB/28.55MBlling fs layer bd7766c75e8f: Downloading [> ] c549ccf8d472: Downloading [====> ] 2.62MB/28.55MBwnloading [> ] c549ccf8d472: Downloading [======> ] 3.799MB/28.55MB c549ccf8d472: Downloading [=======> ] 4.389MB/28.55MBwnloading [> ] c549ccf8d472: Pull complete bd7766c75e8f: Pull complete 3025761fffcd: Pull complete 2024950f79ca: Pull complete 08f22da2c3cf: Pull complete 29eda5b29949: Pull complete dc3790cf20ea: Pull complete Digest: sha256:4bfbafed9b088f5c75f474dada5bdaad9f92b14d61134d0a727ed446682d8530 Status: Downloaded newer image for fraunhoferaisec/trusted-connector-core:5.0.2 Creating keyring-mongo ... done Creating document-mongo ... done Creating clearing-house-mongo ... done Creating tc-core ... done Creating keyring-api ... done Creating document-api ... done Creating clearing-house-api ... done Attaching to document-mongo, clearing-house-mongo, keyring-mongo, tc-core, keyring-api, document-api, clearing-house-api clearing-house-api | [2021-11-11][10:35:09][ch_lib::db][DEBUG] clear_db: false found. Preparing to clear database... clearing-house-api | [2021-11-11][10:35:09][ch_lib::db][DEBUG] Using database url: '"mongodb://clearing-house-mongo:27017"' clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.114+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'"} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.117+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}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.125+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.126+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."} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.136+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.138+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":"7f8a5c708f27"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:07.138+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-11T10:35:07.138+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-11T10:35:07.138+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-11T10:35:07.143+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-11T10:35:07.143+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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],"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.115+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"-","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.117+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}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.125+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.126+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."} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.135+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+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":"6a3f490517f6"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:07.137+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-11T10:35:07.137+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-11T10:35:07.137+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-11T10:35:07.143+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-11T10:35:07.144+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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-11T10:35:07.112+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}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.117+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'"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.125+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.126+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."} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.136+00:00"},"s":"W", "c":"ASIO", "id":22601, "ctx":"thread1","msg":"No TransportLayer configured during NetworkInterface startup"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.138+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","ns":"config.tenantMigrationDonors"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.138+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"thread1","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","ns":"config.tenantMigrationRecipients"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.140+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":"6b962e012a1c"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:07.140+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"5.0.3","gitVersion":"657fea5a61a74d7a79df7aff8e4bcf0bc742b748","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-11T10:35:07.140+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-11T10:35:07.140+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-11T10:35:07.143+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-11T10:35:07.143+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=2459M,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-api | [2021-11-11][10:35:09][ch_lib::db][DEBUG] Check if database is empty... keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.405+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:405640][1:0x7fb386ee8c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.405+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:405741][1:0x7fb386ee8c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.421+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2278}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.421+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-11T10:35:09.470+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-11T10:35:09.471+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.494+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"]} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.512+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"b2f49112-c455-4701-b2b5-6f6f5738aaf0"}},"options":{"uuid":{"$uuid":"b2f49112-c455-4701-b2b5-6f6f5738aaf0"}}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.536+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.539+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.539+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}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.541+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.542+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.543+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.561+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-11T10:35:09.562+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"33b8beb3-0c9d-4cdb-a919-bb0e1ee07d0c"}},"options":{"capped":true,"size":10485760}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.587+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.591+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-11T10:35:09.591+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-11T10:35:09.591+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-11T10:35:09.625+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"6de918da-a10a-46ed-be2a-4e4ac52f7220"}},"options":{}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.628+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.691+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.691+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.694+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.6:35120","uuid":"92f11755-5d90-4eee-a738-e2103d1ed739","connectionId":1,"connectionCount":1}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.697+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:697359][1:0x7fdfee533c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.697+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:697434][1:0x7fdfee533c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.698+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.27.0.6:35120","client":"conn1","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.708+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.6:35122","uuid":"2c0d8f60-8947-42c3-8f38-2eaa3b06745b","connectionId":2,"connectionCount":2}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.716+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.27.0.6:35122","client":"conn2","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.718+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2574}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.718+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-11T10:35:09.752+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"conn2","msg":"createCollection","attr":{"namespace":"keyring.doc_types","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"a09de25e-10ff-4a81-8342-828e06f1a7ab"}},"options":{}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.761+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-11T10:35:09.763+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.808+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-11T10:35:09.818+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"e01d36f2-4126-4d24-baf6-e604f62d614a"}},"options":{"uuid":{"$uuid":"e01d36f2-4126-4d24-baf6-e604f62d614a"}}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.834+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"conn2","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"keyring.doc_types","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.863+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:863299][1:0x7ffbc9ee8c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.863+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636626909:863385][1:0x7ffbc9ee8c80], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.868+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.869+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.869+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-11T10:35:09.869+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"maxWireVersion":13},"isInternalClient":true}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.870+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.6:35124","uuid":"f5e842d8-dd17-4754-b35e-92ceed700ba2","connectionId":3,"connectionCount":3}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.870+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.871+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.27.0.6:35124","client":"conn3","doc":{"application":{"name":"keyring-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.872+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"conn3","msg":"createCollection","attr":{"namespace":"keyring.keys","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"fe3588a0-04aa-43ee-9bfd-2ca81e606069"}},"options":{}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.874+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.875+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-11T10:35:09.875+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"7d473660-7e42-4d57-89b2-ac97bd6c5beb"}},"options":{"capped":true,"size":10485760}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.891+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":2748}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.891+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-11T10:35:09.918+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.921+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"9f2e91ea-330a-4711-bf1a-d62833be5d98"}},"options":{}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.930+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-11T10:35:09.931+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-11T10:35:09.931+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-11T10:35:09.938+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} keyring-mongo | {"t":{"$date":"2021-11-11T10:35:09.943+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"conn3","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"keyring.keys","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.946+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-11T10:35:09.946+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:09.972+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-11T10:35:09.978+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"admin.system.version","uuidDisposition":"provided","uuid":{"uuid":{"$uuid":"e4442f24-2089-4132-a9b6-5211c5eea9a0"}},"options":{"uuid":{"$uuid":"e4442f24-2089-4132-a9b6-5211c5eea9a0"}}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.997+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} document-mongo | {"t":{"$date":"2021-11-11T10:35:09.998+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Configured for release. keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] address: 0.0.0.0 keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] port: 8002 keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] workers: 2 keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] ident: Rocket keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] keep-alive: 5s keyring-api | [2021-11-11][10:35:10][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-11][10:35:10][rocket::launch][WARN] tls: disabled keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] temp dir: /tmp keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] log level: normal keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] cli colors: true keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Routes: keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (create_doctype) POST /doctype/ application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (get_doctypes) GET /doctype/ application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (update_doctype) POST /doctype/ application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (delete_default_doctype) DELETE /doctype/ application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (get_default_doctype) GET /doctype/ application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (delete_doctype) DELETE /doctype// application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (get_doctype) GET /doctype// application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] (decrypt_keys) GET /keyring/decrypt_keys/<_pid> application/json keyring-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (generate_keys) GET /keyring/generate_keys/<_pid>? application/json keyring-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (decrypt_key_map) GET /keyring/decrypt_keys/<_pid>/? application/json keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Fairings: keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Keyring Database (ignite) keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] Mounting Keyring API (ignite) keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] Mounting Document Type API (ignite) keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Daps Api Client (ignite) keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN] Shield (liftoff, response, singleton) keyring-api | [2021-11-11][10:35:10][rocket::shield::shield][INFO] ️ Shield: keyring-api | [2021-11-11][10:35:10][][INFO] X-Content-Type-Options: nosniff keyring-api | [2021-11-11][10:35:10][][INFO] X-Frame-Options: SAMEORIGIN keyring-api | [2021-11-11][10:35:10][][INFO] Permissions-Policy: interest-cohort=() keyring-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Rocket has launched from http://0.0.0.0:8002 clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.043+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"admin.system.version","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.043+00:00"},"s":"I", "c":"REPL", "id":20459, "ctx":"initandlisten","msg":"Setting featureCompatibilityVersion","attr":{"newVersion":"5.0"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.044+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-11T10:35:10.044+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":13},"incomingInternalClient":{"minWireVersion":13,"maxWireVersion":13},"outgoing":{"minWireVersion":13,"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-11T10:35:10.044+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.045+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-11T10:35:10.046+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-11T10:35:10.047+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"initandlisten","msg":"createCollection","attr":{"namespace":"local.startup_log","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"5dafea10-79a0-4d57-9c27-609f02508271"}},"options":{"capped":true,"size":10485760}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.085+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"initandlisten","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"local.startup_log","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.088+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"LogicalSessionCacheRefresh","msg":"createCollection","attr":{"namespace":"config.system.sessions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"d4f660bc-dcf7-4988-8a2f-c13710908f93"}},"options":{}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.089+00:00"},"s":"I", "c":"CONTROL", "id":20712, "ctx":"LogicalSessionCacheReap","msg":"Sessions collection is not set up; waiting until next sessions reap interval","attr":{"error":"NamespaceNotFound: config.system.sessions does not exist"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.090+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-11T10:35:10.090+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-11T10:35:10.090+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-11T10:35:10.134+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"id","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.134+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"LogicalSessionCacheRefresh","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"config.system.sessions","index":"lsidTTLIndex","commitTimestamp":null}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.373+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.8:46268","uuid":"938f6892-8214-4abd-a22f-b174fbd542cf","connectionId":1,"connectionCount":1}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.374+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.27.0.8:46268","client":"conn1","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.377+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.8:46270","uuid":"4fbe9ff7-9834-4fde-9fe5-bab8c338254e","connectionId":2,"connectionCount":2}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.378+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.27.0.8:46270","client":"conn2","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-api | [2021-11-11][10:35:10][ch_lib::db][DEBUG] ... found collections: [] clearing-house-api | [2021-11-11][10:35:10][ch_lib::db][DEBUG] Database empty. Need to initialize... clearing-house-api | [2021-11-11][10:35:10][ch_lib::db][DEBUG] Create collection transactions ... clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.382+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.8:46272","uuid":"fdf72748-9db1-4f4d-832d-ae374fca04dd","connectionId":3,"connectionCount":3}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.383+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.7:36124","uuid":"1285479c-bfcb-4969-a6d3-17e05e5e2ee8","connectionId":1,"connectionCount":1}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.389+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.27.0.7:36124","client":"conn1","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.392+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.27.0.8:46272","client":"conn3","doc":{"application":{"name":"clearing-house-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.394+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"conn3","msg":"createCollection","attr":{"namespace":"process.transactions","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"ddc5d628-809d-49a1-8bd8-9842e8d070a7"}},"options":{}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.407+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.7:36126","uuid":"21ad0061-eb3f-454a-b5b6-5195d719bec3","connectionId":2,"connectionCount":2}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.408+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.27.0.7:36126","client":"conn2","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.422+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.27.0.7:36128","uuid":"678477de-7ce7-48b7-a78a-e616d88f4b37","connectionId":3,"connectionCount":3}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.423+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.27.0.7:36128","client":"conn3","doc":{"application":{"name":"document-api"},"driver":{"name":"mongo-rust-driver","version":"2.0.1"},"os":{"type":"linux","architecture":"x86_64","version":"9.13"}}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.425+00:00"},"s":"I", "c":"STORAGE", "id":20320, "ctx":"conn3","msg":"createCollection","attr":{"namespace":"document.documents","uuidDisposition":"generated","uuid":{"uuid":{"$uuid":"5f40ca17-6efc-492e-959b-9c788ff9425e"}},"options":{}}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:35:10.430+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"conn3","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"process.transactions","index":"id","commitTimestamp":null}} clearing-house-api | [2021-11-11][10:35:10][ch_lib::db][DEBUG] ... done. clearing-house-api | [2021-11-11][10:35:10][ch_lib::db][DEBUG] ... database initialized. clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client][DEBUG] Configuring Daps Api Client... clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client][DEBUG] ...found api url: https://daps.aisec.fraunhofer.de clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client::daps_api][DEBUG] Parsing certificate certs/daps.der ... document-mongo | {"t":{"$date":"2021-11-11T10:35:10.461+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"conn3","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"document.documents","index":"id","commitTimestamp":null}} clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client::daps_api][DEBUG] ... adding certificate as root certificate document-mongo | {"t":{"$date":"2021-11-11T10:35:10.471+00:00"},"s":"I", "c":"INDEX", "id":20438, "ctx":"conn2","msg":"Index build: registering","attr":{"buildUUID":{"uuid":{"$uuid":"a37a786f-9fa1-4aa6-ac0e-d7e545267483"}},"namespace":"document.documents","collectionUUID":{"uuid":{"$uuid":"5f40ca17-6efc-492e-959b-9c788ff9425e"}},"indexes":1,"firstIndex":{"name":"tc_1"}}} clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client][DEBUG] Configuring Document Api Client... clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client][DEBUG] ...found api url: http://document-api:8001 clearing-house-api | [2021-11-11][10:35:10][core_lib::api::client][DEBUG] Configuring Keyring Api Client... clearing-house-api | [2021-11-11][10:35:10][corelib::api::client][DEBUG] ...found api url: http://keyring-api:8002 clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Configured for release. clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] address: 0.0.0.0 clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] port: 8000 clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] workers: 2 clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] ident: Rocket clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] keep-alive: 5s clearing-house-api | [2021-11-11][10:35:10][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-11][10:35:10][rocket::launch][WARN] tls: disabled clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] temp dir: /tmp clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] log level: normal clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] cli colors: true clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Routes: clearing-house-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (get_public_signkey) GET /.well-known/jwks.json application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (createprocess) POST /process/ application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (unauth_create_process) POST /process/<_pid> [50] application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (log) POST /messages/log/ application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (unauth_log) POST /messages/log/<_pid> [50] application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (querypid) POST /messages/query/ application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (unauth_query_pid) POST /messages/query/<_pid> [50] application/json document-mongo | {"t":{"$date":"2021-11-11T10:35:10.491+00:00"},"s":"I", "c":"INDEX", "id":20345, "ctx":"conn2","msg":"Index build: done building","attr":{"buildUUID":null,"namespace":"document.documents","index":"tc1","commitTimestamp":null}} clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (queryid) POST /messages/query// application/json document-mongo | {"t":{"$date":"2021-11-11T10:35:10.491+00:00"},"s":"I", "c":"INDEX", "id":20440, "ctx":"conn2","msg":"Index build: waiting for index build to complete","attr":{"buildUUID":{"uuid":{"$uuid":"a37a786f-9fa1-4aa6-ac0e-d7e545267483"}},"deadline":{"$date":{"$numberLong":"9223372036854775807"}}}} document-mongo | {"t":{"$date":"2021-11-11T10:35:10.491+00:00"},"s":"I", "c":"INDEX", "id":20447, "ctx":"conn2","msg":"Index build: completed","attr":{"buildUUID":{"uuid":{"$uuid":"a37a786f-9fa1-4aa6-ac0e-d7e545267483"}}}} clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] (unauth_query_id) POST /messages/query/<_pid>/<_id> [50] application/json clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Fairings: clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Adding Server Info (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Daps Api Client (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Mounting Clearing House API (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Shield (liftoff, response, singleton) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Document Api Client (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Process Database (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Keyring Api Client (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN] Adding Signing Key (ignite) clearing-house-api | [2021-11-11][10:35:10][rocket::shield::shield][INFO] ️ Shield: clearing-house-api | [2021-11-11][10:35:10][][INFO] Permissions-Policy: interest-cohort=() clearing-house-api | [2021-11-11][10:35:10][][INFO] X-Frame-Options: SAMEORIGIN clearing-house-api | [2021-11-11][10:35:10][][INFO] X-Content-Type-Options: nosniff clearing-house-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Rocket has launched from http://0.0.0.0:8000 document-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Configured for release. document-api | [2021-11-11][10:35:10][rocket::launch][WARN] address: 0.0.0.0 document-api | [2021-11-11][10:35:10][rocket::launch][WARN] port: 8001 document-api | [2021-11-11][10:35:10][rocket::launch][WARN] workers: 2 document-api | [2021-11-11][10:35:10][rocket::launch][WARN] ident: Rocket document-api | [2021-11-11][10:35:10][rocket::launch][WARN] keep-alive: 5s document-api | [2021-11-11][10:35:10][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-11][10:35:10][rocket::launch][WARN] tls: disabled document-api | [2021-11-11][10:35:10][rocket::launch][WARN] temp dir: /tmp document-api | [2021-11-11][10:35:10][rocket::launch][WARN] log level: normal document-api | [2021-11-11][10:35:10][rocket::launch][WARN] cli colors: true document-api | [2021-11-11][10:35:10][rocket::launch][WARN] shutdown: ctrlc = true, force = true, signals = [SIGTERM], grace = 2s, mercy = 3s document-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Routes: document-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (create_encdocument) POST /doc/ application/json document-api | [2021-11-11][10:35:10][rocket::launch][WARN] (get_enc_documents_for_pid) GET /doc/? application/json document-api | [2021-11-11][10:35:10][rocket::launch_][WARN] (deletedocument) DELETE /doc// application/json document-api | [2021-11-11][10:35:10][rocket::launch][WARN] (get_encdocument) GET /doc//? application/json document-api | [2021-11-11][10:35:10][rocket::launch][WARN] GET /cors/ document-api | [2021-11-11][10:35:10][rocket::launch][WARN]  Fairings: document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Daps Api Client (ignite) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Keyring Api Client (ignite) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] CORS (ignite, request, response) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Mounting Document API (ignite) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Configuring Document Database (ignite) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Shield (liftoff, response, singleton) document-api | [2021-11-11][10:35:10][rocket::launch][WARN] Adding CORS rules (ignite) document-api | [2021-11-11][10:35:10][rocket::shield::shield][INFO] ️ Shield: document-api | [2021-11-11][10:35:10][][INFO] X-Content-Type-Options: nosniff document-api | [2021-11-11][10:35:10][][INFO] X-Frame-Options: SAMEORIGIN document-api | [2021-11-11][10:35:10][][INFO] Permissions-Policy: interest-cohort=() document-api | [2021-11-11][10:35:10][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-11 10:35:11.025 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Starting TrustedConnector.Companion using Java 11.0.11 on 91b8335b36ae with PID 1 (/root/jars/ids-connector-5.0.2.jar started by root in /root) tc-core | 2021-11-11 10:35:11.029 DEBUG 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Running with Spring Boot v2.4.5, Spring v5.3.6 tc-core | 2021-11-11 10:35:11.030 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : No active profile set, falling back to default profiles: default tc-core | 2021-11-11 10:35:12.053 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-11 10:35:13.299 INFO 1 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.apache.camel.spring.boot.CamelAutoConfiguration' of type [org.apache.camel.spring.boot.CamelAutoConfiguration$$EnhancerBySpringCGLIB$$2601af91] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) tc-core | 2021-11-11 10:35:13.804 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) tc-core | 2021-11-11 10:35:13.821 INFO 1 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] tc-core | 2021-11-11 10:35:13.822 INFO 1 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.45] tc-core | 2021-11-11 10:35:14.082 INFO 1 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext tc-core | 2021-11-11 10:35:14.082 INFO 1 --- [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2922 ms tc-core | 2021-11-11 10:35:14.123 INFO 1 --- [ main] de.fhg.aisec.ids.webconsole.WebConsole : Registering WebConsole classes tc-core | 2021-11-11 10:35:14.368 INFO 1 --- [ main] d.f.a.i.d.PolicyDecisionPoint : Loading Lucon policy from deploy/allow-all-flows.pl tc-core | 2021-11-11 10:35:15.466 DEBUG 1 --- [ main] d.f.a.i.d.lucon.LuconEngine : Prolog library loaded de.fhg.aisec.ids.dataflowcontrol.lucon.LuconLibrary tc-core | 2021-11-11 10:35:15.470 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-11 10:35:15.524 DEBUG 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Open Settings Database /root/etc/settings.mapdb... tc-core | 2021-11-11 10:35:16.150 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 1 to version 3... tc-core | 2021-11-11 10:35:16.164 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful tc-core | 2021-11-11 10:35:16.166 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migrating settings database from version 2 to version 3... tc-core | 2021-11-11 10:35:16.188 INFO 1 --- [ main] d.f.a.ids.settings.SettingsComponent : Migration successful tc-core | 2021-11-11 10:35:16.658 INFO 1 --- [ main] d.f.a.ids.cm.ContainerManagerService : Default container management is de.fhg.aisec.ids.cm.impl.docker.DockerCM@77226121 tc-core | 2021-11-11 10:35:17.339 INFO 1 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' tc-core | 2021-11-11 10:35:17.476 INFO 1 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [www/index.html] tc-core | 2021-11-11 10:35:17.738 INFO 1 --- [ main] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.rm.CamelInterceptor@862624f tc-core | 2021-11-11 10:35:17.866 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@552b15f6 to: org.apache.camel.support.SimpleTypeConverter@3cd6d147 tc-core | 2021-11-11 10:35:17.867 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@3d6745ed to: org.apache.camel.support.SimpleTypeConverter@600e2000 tc-core | 2021-11-11 10:35:17.869 WARN 1 --- [ main] o.a.c.i.converter.DefaultTypeConverter : Overriding type converter from: org.apache.camel.support.SimpleTypeConverter@5f190cfe to: org.apache.camel.support.SimpleTypeConverter@585672dd tc-core | 2021-11-11 10:35:18.189 INFO 1 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' tc-core | 2021-11-11 10:35:18.205 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML routes from: classpath:camel/.xml tc-core | 2021-11-11 10:35:18.206 INFO 1 --- [ main] o.a.c.s.boot.SpringBootRoutesCollector : Loading additional Camel XML rests from: classpath:camel-rest/*.xml tc-core | 2021-11-11 10:35:18.225 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) is starting tc-core | 2021-11-11 10:35:18.227 INFO 1 --- [ main] o.a.c.management.JmxManagementStrategy : JMX is enabled tc-core | 2021-11-11 10:35:18.608 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-11 10:35:18.634 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Total 0 routes, of which 0 are started tc-core | 2021-11-11 10:35:18.677 INFO 1 --- [ main] o.a.c.s.boot.SpringBootCamelContext : Apache Camel 3.0.1 (CamelContext: camel-1) started in 0.409 seconds tc-core | 2021-11-11 10:35:18.712 INFO 1 --- [ main] d.f.a.ids.TrustedConnector$Companion : Started TrustedConnector.Companion in 8.658 seconds (JVM running for 12.138) tc-core | 2021-11-11 10:35:18.730 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Information model 4.0.0 loaded tc-core | 2021-11-11 10:35:18.731 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: appApi tc-core | 2021-11-11 10:35:18.731 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationAvailability tc-core | 2021-11-11 10:35:18.732 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationController tc-core | 2021-11-11 10:35:18.732 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: applicationTaskExecutor tc-core | 2021-11-11 10:35:18.732 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: basicErrorController tc-core | 2021-11-11 10:35:18.732 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameHandlerMapping tc-core | 2021-11-11 10:35:18.733 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: beanNameViewResolver tc-core | 2021-11-11 10:35:18.740 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.cloud-org.apache.camel.spring.boot.cloud.CamelCloudConfigurationProperties tc-core | 2021-11-11 10:35:18.741 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component-org.apache.camel.spring.boot.ComponentConfigurationProperties tc-core | 2021-11-11 10:35:18.741 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.http-org.apache.camel.component.http.springboot.HttpComponentConfiguration tc-core | 2021-11-11 10:35:18.741 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.properties-org.apache.camel.spring.boot.properties.PropertiesComponentConfiguration tc-core | 2021-11-11 10:35:18.741 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-11 10:35:18.742 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.component.rest-org.apache.camel.component.rest.springboot.RestComponentConfiguration tc-core | 2021-11-11 10:35:18.742 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language-org.apache.camel.spring.boot.LanguageConfigurationProperties tc-core | 2021-11-11 10:35:18.742 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.constant-org.apache.camel.language.constant.springboot.ConstantLanguageConfiguration tc-core | 2021-11-11 10:35:18.743 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.exchangeproperty-org.apache.camel.language.property.springboot.ExchangePropertyLanguageConfiguration tc-core | 2021-11-11 10:35:18.743 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.file-org.apache.camel.language.simple.springboot.FileLanguageConfiguration tc-core | 2021-11-11 10:35:18.743 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.header-org.apache.camel.language.header.springboot.HeaderLanguageConfiguration tc-core | 2021-11-11 10:35:18.744 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.ref-org.apache.camel.language.ref.springboot.RefLanguageConfiguration tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.simple-org.apache.camel.language.simple.springboot.SimpleLanguageConfiguration tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.language.tokenize-org.apache.camel.language.tokenizer.springboot.TokenizeLanguageConfiguration tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.rest-org.apache.camel.model.rest.springboot.RestConfigurationDefinitionProperties tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camel.springboot-org.apache.camel.spring.boot.CamelConfigurationProperties tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelBeanPostProcessor tc-core | 2021-11-11 10:35:18.746 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelContext tc-core | 2021-11-11 10:35:18.747 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: camelEndpoint tc-core | 2021-11-11 10:35:18.747 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: certApi tc-core | 2021-11-11 10:35:18.747 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: characterEncodingFilter tc-core | 2021-11-11 10:35:18.747 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configApi tc-core | 2021-11-11 10:35:18.747 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: configureIdscp2 tc-core | 2021-11-11 10:35:18.748 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectionAPI tc-core | 2021-11-11 10:35:18.748 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: connectorConfiguration tc-core | 2021-11-11 10:35:18.748 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: constant-language tc-core | 2021-11-11 10:35:18.748 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: consumerTemplate tc-core | 2021-11-11 10:35:18.751 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: controller tc-core | 2021-11-11 10:35:18.752 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: conventionErrorViewResolver tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultServletHandlerMapping tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultValidator tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: defaultViewResolver tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServlet tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: dispatcherServletRegistration tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: error tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorAttributes tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageCustomizer tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: errorPageRegistrarBeanPostProcessor tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: exchangeProperty-language tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: file-language tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: flashMapManager tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: fluentProducerTemplate tc-core | 2021-11-11 10:35:18.754 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: formContentFilter tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerExceptionResolver tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: handlerFunctionAdapter tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: header-language tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: http-component tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: httpRequestHandlerAdapter tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsCamelInterceptor tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsContainerManager tc-core | 2021-11-11 10:35:18.755 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsDataflowControl tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idsMultipartComponent tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: idscp2UsageControlComponent tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: infoModelService tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapper tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jacksonObjectMapperBuilder tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyApplicationPath tc-core | 2021-11-11 10:35:18.757 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jerseyServletRegistration tc-core | 2021-11-11 10:35:18.758 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jettyWebServerFactoryCustomizer tc-core | 2021-11-11 10:35:18.759 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: jsonComponentModule tc-core | 2021-11-11 10:35:18.759 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: lifecycleProcessor tc-core | 2021-11-11 10:35:18.759 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listBeans tc-core | 2021-11-11 10:35:18.759 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: listContainers tc-core | 2021-11-11 10:35:18.761 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeCharsetMappingsCustomizer tc-core | 2021-11-11 10:35:18.761 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: localeResolver tc-core | 2021-11-11 10:35:18.761 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-11 10:35:18.761 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mappingJackson2HttpMessageConverter tc-core | 2021-11-11 10:35:18.761 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: messageConverters tc-core | 2021-11-11 10:35:18.762 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: methodValidationPostProcessor tc-core | 2021-11-11 10:35:18.762 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: metricAPI tc-core | 2021-11-11 10:35:18.762 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartConfigElement tc-core | 2021-11-11 10:35:18.762 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: multipartResolver tc-core | 2021-11-11 10:35:18.762 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcContentNegotiationManager tc-core | 2021-11-11 10:35:18.763 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcConversionService tc-core | 2021-11-11 10:35:18.763 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcHandlerMappingIntrospector tc-core | 2021-11-11 10:35:18.763 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPathMatcher tc-core | 2021-11-11 10:35:18.763 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcPatternParser tc-core | 2021-11-11 10:35:18.766 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcResourceUrlProvider tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUriComponentsContributor tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcUrlPathHelper tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcValidator tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: mvcViewResolver tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.http.springboot.HttpComponentAutoConfiguration tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestApiComponentAutoConfiguration tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.component.rest.springboot.RestComponentAutoConfiguration tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.constant.springboot.ConstantLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.767 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.header.springboot.HeaderLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.768 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.property.springboot.ExchangePropertyLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.768 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.ref.springboot.RefLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.768 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.FileLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.769 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.simple.springboot.SimpleLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.language.tokenizer.springboot.TokenizeLanguageAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.model.rest.springboot.RestConfigurationDefinitionAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.CamelAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.TypeConversionConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRouteControllerEndpointAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.actuate.endpoint.CamelRoutesEndpointAutoConfiguration tc-core | 2021-11-11 10:35:18.770 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudAutoConfiguration tc-core | 2021-11-11 10:35:18.778 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceCallConfigurationAutoConfiguration tc-core | 2021-11-11 10:35:18.778 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceChooserAutoConfiguration tc-core | 2021-11-11 10:35:18.778 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceDiscoveryAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.cloud.CamelCloudServiceFilterAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.apache.camel.spring.boot.properties.PropertiesComponentAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.aop.config.internalAutoProxyCreator tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.AutoConfigurationPackages tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration tc-core | 2021-11-11 10:35:18.779 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration tc-core | 2021-11-11 10:35:18.780 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration tc-core | 2021-11-11 10:35:18.780 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration tc-core | 2021-11-11 10:35:18.780 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration tc-core | 2021-11-11 10:35:18.780 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration tc-core | 2021-11-11 10:35:18.781 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration$JacksonResourceConfigCustomizer$JaxbObjectMapperCustomizer tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration tc-core | 2021-11-11 10:35:18.782 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration tc-core | 2021-11-11 10:35:18.783 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration tc-core | 2021-11-11 10:35:18.784 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration tc-core | 2021-11-11 10:35:18.784 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration tc-core | 2021-11-11 10:35:18.784 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration tc-core | 2021-11-11 10:35:18.784 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration tc-core | 2021-11-11 10:35:18.784 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration tc-core | 2021-11-11 10:35:18.785 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinder tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.internalConfigurationPropertiesBinderFactory tc-core | 2021-11-11 10:35:18.786 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.BoundConfigurationProperties tc-core | 2021-11-11 10:35:18.787 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor tc-core | 2021-11-11 10:35:18.787 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter tc-core | 2021-11-11 10:35:18.790 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalAutowiredAnnotationProcessor tc-core | 2021-11-11 10:35:18.791 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalCommonAnnotationProcessor tc-core | 2021-11-11 10:35:18.791 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.annotation.internalConfigurationAnnotationProcessor tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerFactory tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: org.springframework.context.event.internalEventListenerProcessor tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: parameterNamesModule tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: persistenceExceptionTranslationPostProcessor tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: platformTransactionManagerCustomizers tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: policyApi tc-core | 2021-11-11 10:35:18.793 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: preserveErrorControllerTargetClassPostProcessor tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: producerTemplate tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: properties tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertiesParser tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: propertySourcesPlaceholderConfigurer tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: ref-language tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestContextFilter tc-core | 2021-11-11 10:35:18.794 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerAdapter tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: requestMappingHandlerMapping tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceConfigCustomizer tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: resourceHandlerMapping tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-api-component tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-component tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: rest-configuration tc-core | 2021-11-11 10:35:18.795 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilder tc-core | 2021-11-11 10:35:18.796 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: restTemplateBuilderConfigurer tc-core | 2021-11-11 10:35:18.796 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeApi tc-core | 2021-11-11 10:35:18.797 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeControllerEndpoint tc-core | 2021-11-11 10:35:18.798 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routeManagerService tc-core | 2021-11-11 10:35:18.802 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routerFunctionMapping tc-core | 2021-11-11 10:35:18.834 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollector tc-core | 2021-11-11 10:35:18.838 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: routesCollectorListener tc-core | 2021-11-11 10:35:18.839 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: server-org.springframework.boot.autoconfigure.web.ServerProperties tc-core | 2021-11-11 10:35:18.840 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-call-configuration tc-core | 2021-11-11 10:35:18.841 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-discovery tc-core | 2021-11-11 10:35:18.841 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: service-filter tc-core | 2021-11-11 10:35:18.842 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: servletWebServerFactoryCustomizer tc-core | 2021-11-11 10:35:18.843 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsApi tc-core | 2021-11-11 10:35:18.844 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: settingsComponent tc-core | 2021-11-11 10:35:18.845 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showCamelInfo tc-core | 2021-11-11 10:35:18.845 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: showConnectorProfile tc-core | 2021-11-11 10:35:18.850 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: simpleControllerHandlerAdapter tc-core | 2021-11-11 10:35:18.851 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties tc-core | 2021-11-11 10:35:18.852 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties tc-core | 2021-11-11 10:35:18.852 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.jersey-org.springframework.boot.autoconfigure.jersey.JerseyProperties tc-core | 2021-11-11 10:35:18.853 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties tc-core | 2021-11-11 10:35:18.853 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties tc-core | 2021-11-11 10:35:18.854 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties tc-core | 2021-11-11 10:35:18.855 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties tc-core | 2021-11-11 10:35:18.855 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties tc-core | 2021-11-11 10:35:18.856 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties tc-core | 2021-11-11 10:35:18.857 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties tc-core | 2021-11-11 10:35:18.858 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: spring.web-org.springframework.boot.autoconfigure.web.WebProperties tc-core | 2021-11-11 10:35:18.859 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: springTypeConverter tc-core | 2021-11-11 10:35:18.860 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: standardJacksonObjectMapperBuilderCustomizer tc-core | 2021-11-11 10:35:18.860 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: static-service-discovery tc-core | 2021-11-11 10:35:18.861 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: stringHttpMessageConverter tc-core | 2021-11-11 10:35:18.862 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskExecutorBuilder tc-core | 2021-11-11 10:35:18.863 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: taskSchedulerBuilder tc-core | 2021-11-11 10:35:18.872 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: themeResolver tc-core | 2021-11-11 10:35:18.873 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tokenize-language tc-core | 2021-11-11 10:35:18.874 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactory tc-core | 2021-11-11 10:35:18.875 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatServletWebServerFactoryCustomizer tc-core | 2021-11-11 10:35:18.876 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: tomcatWebServerFactoryCustomizer tc-core | 2021-11-11 10:35:18.877 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: trustedConnector tc-core | 2021-11-11 10:35:18.878 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: typeConverter tc-core | 2021-11-11 10:35:18.879 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: userApi tc-core | 2021-11-11 10:35:18.879 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewControllerHandlerMapping tc-core | 2021-11-11 10:35:18.880 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewNameTranslator tc-core | 2021-11-11 10:35:18.881 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: viewResolver tc-core | 2021-11-11 10:35:18.882 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webConsole tc-core | 2021-11-11 10:35:18.882 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: webServerFactoryCustomizerBeanPostProcessor tc-core | 2021-11-11 10:35:18.883 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: websocketServletWebServerCustomizer tc-core | 2021-11-11 10:35:18.884 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: welcomePageHandlerMapping tc-core | 2021-11-11 10:35:18.885 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlCamelContextConfigurer tc-core | 2021-11-11 10:35:18.886 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Loaded bean: xmlDeployWatcher tc-core | 2021-11-11 10:35:19.457 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-api tc-core | 2021-11-11 10:35:19.457 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-api tc-core | 2021-11-11 10:35:19.457 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-api tc-core | 2021-11-11 10:35:19.457 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: document-mongo tc-core | 2021-11-11 10:35:19.457 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: tc-core tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: clearing-house-mongo tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: keyring-mongo tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: dsccontainer tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: broker-localhost_broker-reverseproxy_1 tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: broker-localhost_broker-core_1 tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: broker-localhost_broker-fuseki_1 tc-core | 2021-11-11 10:35:19.458 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Container: omejdn tc-core | 2021-11-11 10:35:19.469 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Settings or ConnectorProfile not available, or no connector entity names provided tc-core | 2021-11-11 10:35:19.470 WARN 1 --- [ main] d.f.a.i.i.InfoModelService : Connector couldn't be built: Maintainer URL is required! tc-core | 2021-11-11 10:35:19.470 INFO 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : No connector profile stored yet. tc-core | 2021-11-11 10:35:19.475 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-http tc-core | 2021-11-11 10:35:19.479 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest-api tc-core | 2021-11-11 10:35:19.480 DEBUG 1 --- [ main] de.fhg.aisec.ids.TrustedConnector : Component: camel-rest tc-core | 2021-11-11 10:35:19.483 INFO 1 --- [ main] de.fhg.aisec.ids.rm.XmlDeployWatcher : XML file deploy/clearing-house-routes.xml detected, creating XmlApplicationContext... tc-core | 2021-11-11 10:35:20.657 INFO 1 --- [ Thread-2] .a.c.c.x.AbstractCamelContextFactoryBean : Using custom TypeConverterRegistry: org.apache.camel.impl.converter.DefaultTypeConverter@68d426a7 tc-core | 2021-11-11 10:35:20.666 INFO 1 --- [ Thread-2] o.a.c.m.DefaultConfigurationConfigurer : Adding custom InterceptStrategy with id: idsCamelInterceptor and implementation: de.fhg.aisec.ids.rm.CamelInterceptor@862624f tc-core | 2021-11-11 10:35:20.851 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Apache Camel 3.0.1 (CamelContext: camel-2) is starting tc-core | 2021-11-11 10:35:20.851 INFO 1 --- [ Thread-2] o.a.c.management.JmxManagementStrategy : JMX is enabled tc-core | 2021-11-11 10:35:21.178 INFO 1 --- [ Thread-2] o.a.camel.component.http.HttpComponent : Created ClientConnectionManager org.apache.http.impl.conn.PoolingHttpClientConnectionManager@311b4c40 tc-core | 2021-11-11 10:35:21.318 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-11 10:35:21.491 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_CREATE started and consuming from: direct://createPid tc-core | 2021-11-11 10:35:21.495 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_LOG started and consuming from: direct://log tc-core | 2021-11-11 10:35:21.497 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Route: CH_ROUTE_QUERY started and consuming from: direct://query tc-core | 2021-11-11 10:35:21.518 INFO 1 --- [ Thread-2] org.eclipse.jetty.util.log : Logging initialized @14943ms to org.eclipse.jetty.util.log.Slf4jLog tc-core | 2021-11-11 10:35:21.619 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-11 10:35:21.676 INFO 1 --- [ Thread-2] o.e.jetty.server.handler.ContextHandler : Started o.e.j.s.ServletContextHandler@714740cb{/,null,AVAILABLE} tc-core | 2021-11-11 10:35:21.692 INFO 1 --- [ Thread-2] o.e.jetty.server.AbstractConnector : Started ServerConnector@7e865a9e{HTTP/1.1, (http/1.1)}{0.0.0.0:9999} tc-core | 2021-11-11 10:35:21.692 INFO 1 --- [ Thread-2] org.eclipse.jetty.server.Server : Started @15118ms tc-core | 2021-11-11 10:35:21.692 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-11 10:35:21.701 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-11 10:35:21.704 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-11 10:35:21.706 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-11 10:35:21.726 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Total 7 routes, of which 7 are started tc-core | 2021-11-11 10:35:21.726 INFO 1 --- [ Thread-2] o.a.camel.spring.SpringCamelContext : Apache Camel 3.0.1 (CamelContext: camel-2) started in 0.876 seconds keyring-mongo | {"t":{"$date":"2021-11-11T10:36:09.502+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1636626969:502683][1:0x7fb37e6d6700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 50, snapshot max: 50 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 1"}} document-mongo | {"t":{"$date":"2021-11-11T10:36:09.817+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1636626969:816981][1:0x7fdfe5d21700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 45, snapshot max: 45 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 1"}} clearing-house-mongo | {"t":{"$date":"2021-11-11T10:36:09.980+00:00"},"s":"I", "c":"STORAGE", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":"[1636626969:980542][1:0x7ffbc16d6700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 41, snapshot max: 41 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 1"}}

How can I check the logs that have been generated from the clearing house? Are these the ones that appear in the terminal? I believe that it will be great to have explained in the documentation an example of using the clearing house. Where you can observe the generated logs or generate new ones. Could you add this example information to the documentation? Thanks for your help,

kragall commented 2 years ago

The logs that appear in the terminal are all logs combined from all the services you started using docker-compose. That's the standard behavior of docker-compose. You can start the services as daemon using the "-d" option in which case the terminal will not contain any logs.

Docker allows you to access the logs of any docker container using docker logs <container-name>. So if you are only interested in the logs of e.g. the clearing-house-api you would use docker logs clearing-house-api.

I will have to think about where this information would be appropriate in the documentation.

jfernandezsqs commented 2 years ago

Hello Mark, I have not seen yet updates to the documentation. For the validation of the clearing house we need to have documented in detail how you perform, through the DSC or the Trusted connector, any action that must be collected in the logs of the clearing house. It should also be explained how to perform these operations/actions. So that it is validated by checking the logs, for example, that the negotiation between consumer and provider has been registered at the logs and how can this be checked. Thanks in advance.

kragall commented 2 years ago

For the validation of the clearing house we need to have documented in detail how you perform, through the DSC or the Trusted connector, any action that must be collected in the logs of the clearing house.

The purpose of the documentation here is for installation and deployment. The definition of "processes or actions that should be logged" should be provided either in the IDS-G or the IDS RAM. Similarly, the documentation of how connectors access the data entries stored in the Clearing House is supposed to be defined in the IDS-G.

Other than using the Clearing House API (supposed to be defined in the IDS-G) with a connector there is no "easy" way to access the data stored. You certainly can access all databases and check the information stored in the databases, but the data is encrypted, so you will have to take some extra steps to decrypt it for validation.

I'm closing this issue because the original problem with docker-compose has been solved.