bhits / consent2share

Set up Consent2Share Including Infrastructure and Applications
https://bhits.github.io/consent2share/
Apache License 2.0
40 stars 10 forks source link

Populate Sample Data issue #23

Open ehb54 opened 5 years ago

ehb54 commented 5 years ago

I am setting up a test instance with 3.5.0, using C2S v3 deployment guide. Got thru 3.1.1 *Configure DB Server" & 3.1.2 "Configure App Server" without issue. I skipped the "edge-server security" step since, if I am reading correctly - https://github.com/bhits/consent2share#ssl - this is not needed for testing environments. Got thru 3.1.5, .6 (docker-compose steps) without issue.

ERRORS found following the Populate Sample Data 3.3.1 instructions: -->docker ps | grep pls-db 04d28eade981 mysql:5.7 "docker-entrypoint.s…" 19 hours ago Up 21 minutes 33060/tcp, 0.0.0.0:3308->3306/tcp java_pls-db.c2s.com_1 -->docker exec -it 04d28eade981 bash root@04d28eade981:/# cd /java/C2S_PROPS/pls root@04d28eade981:/java/C2S_PROPS/pls# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> use pls; Database changed mysql> source insert_state_code_lookup_data.sql; Database changed ERROR 1146 (42S02): Table 'pls.state_code' doesn't exist mysql> source pls_db_sample.sql; Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected, 1 warning (0.00 sec) Query OK, 0 rows affected (0.00 sec) Database changed ERROR 1146 (42S02): Table 'pls.provider' doesn't exist ERROR 1146 (42S02): Table 'pls.provider' doesn't exist ERROR 1146 (42S02): Table 'pls.provider' doesn't exist ERROR 1146 (42S02): Table 'pls.provider' doesn't exist Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected, 1 warning (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.01 sec) Query OK, 0 rows affected (0.00 sec) Query OK, 0 rows affected (0.00 sec)

ehb54 commented 5 years ago

Similar issue with Sample Data / Sample Value Sets 3.3.2, it seems the tables are not being created following the instructions of the deployment guide.

-->docker ps | grep vss-db 9a65619ea3b8 mysql:5.7 "docker-entrypoint.s…" 19 hours ago Up 35 minutes 33060/tcp, 0.0.0.0:3309->3306/tcp java_vss-db.c2s.com_1 -->docker exec -it 9a65619ea3b8 bash root@9a65619ea3b8:/# cd /java/C2S_PROPS/vss root@9a65619ea3b8:/java/C2S_PROPS/vss# mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use vss; Database changed mysql> source vss_db_sample.sql; ERROR 1146 (42S02): Table 'vss.value_set_category_system' doesn't exist ERROR 1146 (42S02): Table 'vss.code_system' doesn't exist ERROR 1146 (42S02): Table 'vss.code_system_version' doesn't exist ERROR 1146 (42S02): Table 'vss.value_set_category' doesn't exist ERROR 1146 (42S02): Table 'vss.value_set' doesn't exist ERROR 1146 (42S02): Table 'vss.coded_concept' doesn't exist ERROR 1146 (42S02): Table 'vss.coded_concept_value_set' doesn't exist mysql>

burcakulug commented 5 years ago

Can you try restarting the service containers? The table should have been created by flyway scripts, maybe it is a timing issue? Any errors on the service container logs? Try you also try to check the schema_version flyway table to see the state of database migration. https://github.com/bhits/pls/blob/master/pls/src/main/resources/db/migration/V2.0.0__Add_state_code.sql

ehb54 commented 5 years ago

Background: Note this is a 2 server config (one for DB server, one for App server). I would have preferred a 1 server config, but was concerned that docker-compose.yml, /etc/profile.d/c2s_env.sh, and possibly other files would get clobbered (do they merge? - I have not tried it yet). I did set (on the app server) /etc/profile.d/c2s_env.sh C2S_DB_HOST=db.host.ip, C2S_APP_HOST=app.host.ip, BASIC_AUTH_USER=root, BASIC_AUTH_PASSWORD=admin

After a full restart on both the db server and app server (service restart, compose down, compose up) I am getting on app server docker-compose: ERROR: for java_staff-ui.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_master-ui.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_config-server.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_c2s-ui-api.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_c2s-ui.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_pcm.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for java_provider-ui-api.c2s.com_1 UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for c2s-ui-api.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for staff-ui.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for master-ui.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for config-server.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for pcm.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for provider-ui-api.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for c2s-ui.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: for edge-server.c2s.com UnixHTTPConnectionPool(host='localhost', port=None): Read timed out. (read timeout=60) ERROR: An HTTP request took too long to complete. Retry with --verbose to obtain debug information. If you encounter this issue regularly because of slow network conditions, consider setting COMPOSE_HTTP_TIMEOUT to a higher value (current value: 60).

After waiting 10 minutes: [js-19-49] emre /usr/local/java-->cd C2S_LOGS/ [js-19-49] emre /usr/local/java/C2S_LOGS-->sudo grep ERROR /log config-server/config-server.log:2019-06-19 10:24:44.026 ERROR 1 --- [main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:44.028 ERROR 1 --- [main] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to refresh its cache! status = Cannot execute request on any known server config-server/config-server.log:2019-06-19 10:24:45.457 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:45.554 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.485 ERROR 1 --- [localhost-startStop-1] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.493 ERROR 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient : DiscoveryClient_DOCUMENT-VALIDATOR/a2006b4dff90:document-validator - was unable to refresh its cache! status = Cannot execute request on any known server document-validator/document-validator.log:2019-06-19 10:25:08.787 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error [js-19-49] emre /usr/local/java/C2S_LOGS-->sudo grep ERROR /log config-server/config-server.log:2019-06-19 10:24:44.026 ERROR 1 --- [main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:44.028 ERROR 1 --- [main] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to refresh its cache! status = Cannot execute request on any known server config-server/config-server.log:2019-06-19 10:24:45.457 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:45.554 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.054 ERROR 1 --- [DiscoveryClient-CacheRefreshExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.055 ERROR 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to refresh its cache! status = Cannot execute request on any known server config-server/config-server.log:2019-06-19 10:25:14.064 ERROR 1 --- [DiscoveryClient-HeartbeatExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.065 ERROR 1 --- [DiscoveryClient-HeartbeatExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to send heartbeat! config-server/config-server.log:2019-06-19 10:25:15.585 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.485 ERROR 1 --- [localhost-startStop-1] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.493 ERROR 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient : DiscoveryClient_DOCUMENT-VALIDATOR/a2006b4dff90:document-validator - was unable to refresh its cache! status = Cannot execute request on any known server document-validator/document-validator.log:2019-06-19 10:25:08.787 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error [js-19-49] emre /usr/local/java/C2S_LOGS-->sleep 480 && !! sleep 480 && sudo grep ERROR /log config-server/config-server.log:2019-06-19 10:24:44.026 ERROR 1 --- [main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:44.028 ERROR 1 --- [main] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to refresh its cache! status = Cannot execute request on any known server config-server/config-server.log:2019-06-19 10:24:45.457 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:24:45.554 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.054 ERROR 1 --- [DiscoveryClient-CacheRefreshExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.055 ERROR 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to refresh its cache! status = Cannot execute request on any known server config-server/config-server.log:2019-06-19 10:25:14.064 ERROR 1 --- [DiscoveryClient-HeartbeatExecutor-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error config-server/config-server.log:2019-06-19 10:25:14.065 ERROR 1 --- [DiscoveryClient-HeartbeatExecutor-0] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/67519d8fde0b:config-server:5a581a6e72b74a53c327126dda0946ed - was unable to send heartbeat! config-server/config-server.log:2019-06-19 10:25:15.585 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.485 ERROR 1 --- [localhost-startStop-1] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error document-validator/document-validator.log:2019-06-19 10:25:08.493 ERROR 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient : DiscoveryClient_DOCUMENT-VALIDATOR/a2006b4dff90:document-validator - was unable to refresh its cache! status = Cannot execute request on any known server document-validator/document-validator.log:2019-06-19 10:25:08.787 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error

burcakulug commented 5 years ago

1 server setup would be easier way to go with less complications if you are just trying to build a sandbox. if you are using 2 separate docker-compose files on the same host, I think it MAY be isolating the docker network by default, so I would recommend 1 server setup for your first time setup, testing and sandbox.

ehb54 commented 5 years ago

Ok, I started with a single server setup, which I will describe below: Environment Fresh VM of CentOS Linux release 7.6.1810 (Core), 3 cores, 20 GB ram c2s_docker_install.sh fails docker 17 seems quite tricky to get working working with Docker version 18.09.6, build 481bc77156, docker-compose version 1.13.0, build 1719ceb docker-py version: 2.2.1 CPython version: 2.7.13 OpenSSL version: OpenSSL 1.0.1t 3 May 2016

Here are the steps I followed: After docker, git, curl, wget installed: $ sudo usermod -aG docker username $ wget https://github.com/bhits/consent2share/raw/master/infrastructure/scripts/c2s_config.sh $ sh c2s_config.sh select option 2 EHR Edition DB Server $ cd /usr/local/java $ cp docker-compose.yml docker-compose-db.yml $ sh c2s_config.sh select option 1 EHR Edition App Server $ cd /usr/local/java $ cp docker-compose.yml docker-compose-app.yml $ sudo vi /etc/profile.d/c2s_env.sh modify in c2s_env.sh export C2S_DB_HOST=127.0.0.1 export C2S_APP_HOST=127.0.0.1 export BASIC_AUTH_USER=root export BASIC_AUTH_PASSWORD=admin -> I was getting some errors on starting app, --spring.profile.active= invalid argument -> perhaps should be application-default,docker ? export ENV_APP_PROFILE=your_app_Server_specific_profile logout, login for fresh c2s_env.sh startup db $ cd /usr/local/java $ docker-compose -f docker-compose-db.yml up -d startup app $ docker-compose -f docker-compose-app.yml up -d

note 3 cores stay 100% active for quite some time … I let them run for over 1 hour, still busy,

DB test still fails (tables not created)

Here's what's running: $ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES be28ec4851d0 bhitsdev/context-handler:2.3.0 "/entrypoint.sh --sp…" 2 hours ago Up 17 seconds java_context-handler.c2s.com_1 f0a0678a71e7 bhitsdev/provider-ui-api:0.3.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_provider-ui-api.c2s.com_1 15b0fb5c7893 bhitsdev/provider-ui:0.3.0 "/entrypoint.sh" 2 hours ago Up 3 minutes java_provider-ui.c2s.com_1 cc9783d4ddf4 bhitsdev/pls:3.3.0 "/entrypoint.sh --sp…" 2 hours ago Up About a minute java_pls.c2s.com_1 e0c77ab7480c bhitsdev/dss:2.4.0 "/entrypoint.sh --sp…" 2 hours ago Up 20 seconds java_dss.c2s.com_1 7083f15cacff bhitsdev/document-validator:1.1.0 "catalina.sh run" 2 hours ago Up 2 hours 8080/tcp java_document-validator.c2s.com_1 10c3973cf8eb bhits/hapi-fhir-jpaserver:2.3-01 "catalina.sh run" 2 hours ago Up 2 hours 0.0.0.0:8080->8080/tcp java_hapi-fhir.c2s.com_1 216e0793195a bhits/guvnor:5.5.0 "catalina.sh run" 2 hours ago Up 2 hours 8080/tcp java_guvnor.c2s.com_1 c09e9eeee5a8 bhitsdev/ums:0.4.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_ums.c2s.com_1 239321719b7d bhitsdev/staff-ui-api:0.4.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_staff-ui-api.c2s.com_1 bfee10892b67 bhitsdev/staff-ui:0.4.0 "/entrypoint.sh" 2 hours ago Up 44 seconds java_staff-ui.c2s.com_1 2ea507156307 bhitsdev/config-server:0.4.0 "/entrypoint.sh" 2 hours ago Up 2 hours java_config-server.c2s.com_1 4fd915c19511 bhitsdev/discovery-server:0.12.0 "/entrypoint.sh" 2 hours ago Up 2 hours java_discovery-server.c2s.com_1 a902511c8588 bhitsdev/vss:0.5.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 seconds java_vss.c2s.com_1 513a03aed830 bhitsdev/master-ui:0.2.0 "/entrypoint.sh" 2 hours ago Up 22 seconds java_master-ui.c2s.com_1 93894c1c23cc bhitsdev/phr:2.2.0 "/entrypoint.sh --sp…" 2 hours ago Up 13 seconds java_phr.c2s.com_1 4f61760fe3ea bhitsdev/try-policy:2.2.0 "/entrypoint.sh --sp…" 2 hours ago Up 4 minutes java_try-policy.c2s.com_1 8d40951ad09f bhitsdev/master-ui-api:0.2.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_master-ui-api.c2s.com_1 2f5cc1b8771a bhitsdev/pcm:2.4.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_pcm.c2s.com_1 1d04a5e79b7e bhitsdev/edge-server:0.20.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes 0.0.0.0:80->80/tcp java_edge-server.c2s.com_1 3b64df623cab bhitsdev/pep:2.1.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_pep.c2s.com_1 21512573d19a bhitsdev/c2s-ui-api:0.6.0 "/entrypoint.sh --sp…" 2 hours ago Up 3 minutes java_c2s-ui-api.c2s.com_1 a06c510d8d71 bhitsdev/c2s-ui:0.6.0 "/entrypoint.sh" 2 hours ago Up 7 seconds java_c2s-ui.c2s.com_1 2ba2c2d74820 bhitsdev/uaa:3.4.1-08 "catalina.sh run" 2 hours ago Up 2 hours 8080/tcp java_uaa.c2s.com_1 f26d5c71c005 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3308->3306/tcp java_pls-db.c2s.com_1 1c8add23c066 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3307->3306/tcp java_pcm-db.c2s.com_1 a08558c7b75e mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3312->3306/tcp java_phr-db.c2s.com_1 775814795d05 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3311->3306/tcp java_hapi-fhir-db.c2s.com_1 3e3d2286df89 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 0.0.0.0:3306->3306/tcp, 33060/tcp java_uaa-db.c2s.com_1 b1d8a4e9e502 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3309->3306/tcp java_vss-db.c2s.com_1 2fda55431894 mysql:5.7 "docker-entrypoint.s…" 2 hours ago Up 2 hours 33060/tcp, 0.0.0.0:3310->3306/tcp java_ums-db.c2s.com_1

Here are my "ERRORS": $ sudo grep ERROR C2S_LOGS// C2S_LOGS/config-server/config-server.log:2019-06-23 11:38:54.634 ERROR 1 --- [main] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error C2S_LOGS/config-server/config-server.log:2019-06-23 11:38:54.637 ERROR 1 --- [main] com.netflix.discovery.DiscoveryClient : DiscoveryClient_CONFIG-SERVER/2ea507156307:config-server:bdaf2193422bd99272bc7b593e80242b - was unable to refresh its cache! status = Cannot execute request on any known server C2S_LOGS/config-server/config-server.log:2019-06-23 11:38:55.459 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error C2S_LOGS/config-server/config-server.log:2019-06-23 11:38:55.540 ERROR 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.d.s.t.d.RedirectingEurekaHttpClient : Request execution error

Any suggestions would be appreciated.

burcakulug commented 5 years ago

I believe you need to go to copied c2s_app_env.sh file and edit it based on the environment you want to setup. If you change the value for ENV_APP_PROFILE variable to application-default,docker there, it should be able to work as far as I can remember. Also go through the other variables there and adjust the versions and other configuration based on your needs.

ehb54 commented 5 years ago

Still not having any luck. Tried c2s_app_env.sh ENV_APP_PROFILE=application-default,docker here's my c2s_app_env.sh in /etc/profile.d

#!/bin/bash

# Declare methods start
function defaultConfig() {
    # Database details
    export HAPI_FHIR_DB_PASSWORD=admin
    export PCM_DB_PASSWORD=admin
    export PHR_DB_PASSWORD=admin
    export PLS_DB_PASSWORD=admin
    export VSS_DB_PASSWORD=admin
    export UAA_DB_PASSWORD=admin
    export UMS_DB_PASSWORD=admin

    export C2S_BASE_PATH=/usr/local
    export CONFIG_DATA_GIT_DIR=c2s-config-data

    # Edge Server configuraiton
    export C2S_APP_PORT=80

    # SMTP details
    export UAA_SMTP_HOST=your_mail_host
    export UAA_SMTP_PORT=your_mail_port
    export UAA_SMTP_USER=your_mail_username
    export UAA_SMTP_PASSWORD=your_mail_password
   }

function c2sRl3.4.0Versions(){
    export C2S_UI_VERSION=0.6.0
    export C2S_UI_API_VERSION=0.6.0
    export CONFIG_SERVER_VERSION=0.4.0
    export CONTEXT_HANDLER_VERSION=2.3.0
    export DISCOVERY_SERVER_VERSION=0.12.0
    export DOCUMENT_VALIDATOR_VERSION=1.1.0
    export DSS_VERSION=2.4.0
    export EDGE_SERVER_VERSION=0.20.0
    export GUVNOR_VERSION=5.5.0
    export IEXHUB_PIX_PDQ_VERSION=0.1.0
    export IEXHUB_XDSB_VERSION=0.1.0
    export MASTER_UI_VERSION=0.2.0
    export MASTER_UI_API_VERSION=0.2.0
    export PCM_VERSION=2.4.0
    export PEP_VERSION=2.1.0
    #export PEP_API_VERSION=2.1.0
    export PHR_VERSION=2.2.0
    export PLS_VERSION=3.3.0
    export PROVIDER_UI_VERSION=0.3.0
    export PROVIDER_UI_API_VERSION=0.3.0
    export STAFF_UI_VERSION=0.4.0
    export STAFF_UI_API_VERSION=0.4.0
    export TRY_POLICY_VERSION=2.2.0
    export UAA_VERSION=3.4.1-08
    export UMS_VERSION=0.4.0
    export VSS_VERSION=0.5.0
}

# Start Method
function appServerConfig() {
    defaultConfig
    c2sRl3.4.0Versions
    # This variable is only required in 'two-servers' deployment scenario, so it MUST be uncommented and configured accordingly in 'two-servers' deployment.
    export C2S_DB_HOST=127.0.0.1

    # Edge Server configuraiton
    export C2S_APP_HOST=127.0.0.1

    # Config Server Configuration
    export BASIC_AUTH_USER=root
    export BASIC_AUTH_PASSWORD=admin

    # This variable is only required to give server environment specific profile
    # data added in config-data repository
    export ENV_APP_PROFILE=application-default,docker

    # This variable is only required if encrypted values are available in the server environment specific profile
    # conofig data variables
    #export CONFIG_DATA_ENCRYPT_KEY=your_config_data_encrypt
 }

appServerConfig

The versions all seem to be related to the code branch... I didn't change anything from default install. I did notice that the functions say c2sRl3.4.0 not 3.5.0, but I assume it's ok. Tried restarting (docker compose down, service restart, etc) & made sure $ENV_APP_PROFILE was updated before compose up....

Just never seem to have tables created (even after several hours, in case of a timing issue).

I looked at issue #22, and saw bhits/vss#1 note my application.yml does not look similar to the one referenced above:

management:
  context-path: /management
---
spring.profiles: oauth2-resource-default
security:
  basic:
    enabled: false
  oauth2:
    resource:
      # If SSL is turned on in the UAA application, you must change/override the 'user-info-uri' property below
      #   to use 'https://' instead of 'http://'. You must also change/override the port number in the URL.
      user-info-uri: http://localhost:8080/uaa/userinfo
      jwt:
        keyValue:
                         -----BEGIN PUBLIC KEY-----
                         MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0m59l2u9iDnMbrXHfqkO
                         rn2dVQ3vfBJqcDuFUK03d+1PZGbVlNCqnkpIJ8syFppW8ljnWweP7+LiWpRoz0I7
                         fYb3d8TjhV86Y997Fl4DBrxgM6KTJOuE/uxnoDhZQ14LgOU2ckXjOzOdTsnGMKQB
                         LCl0vpcXBtFLMaSbpv1ozi8h7DJyVZ6EnFQZUWGdgTMhDrmqevfx95U/16c5WBDO
                         kqwIn7Glry9n9Suxygbf8g5AzpWcusZgDLIIZ7JTUldBb8qU2a0Dl4mvLZOn4wPo
                         jfj9Cw2QICsc5+Pwf21fP+hzf+1WSRHbnYv8uanRO0gZ8ekGaghM/2H6gqJbo2nI
                         JwIDAQAB
                         -----END PUBLIC KEY-----
---
spring.profiles: eureka-client
eureka:
  client:
    healthcheck:
      enabled: true
---
spring.profiles: mysql
spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    validation-query: select 1
    test-on-borrow: true
    test-on-return: true
    test-while-idle: true
    time-between-eviction-runs-millis: 1800000
    num-tests-per-eviction-run: 3
    min-evictable-idle-time-millis: 1800000
  jpa:
    properties:
      hibernate:
        dialect: org.hibernate.dialect.MySQL5InnoDBDialect
        hbm2ddl:
          auto: validate
    hibernate:
      ddl-auto: none
      naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
    show-sql: false
---
spring.profiles: h2
spring:
  datasource:
    username: sa
    password:
  jpa:
    properties:
      hibernate:
        dialect: org.hibernate.dialect.H2Dialect
        hbm2ddl:
          auto: validate
    hibernate:
      ddl-auto: none
      naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
    show-sql: false
---
spring.profiles: ssl-default
server:
  port: ${server.port}
  ssl:
    ciphers: "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"
    enabledProtocols: "TLSv1.1,TLSv1.2"
    key-store: /ssl_keystore.keystore
    key-store-password: changeit
eureka:
  instance:
    secure-port: ${server.port}
    secure-port-enabled: true
    non-secure-port-enabled: false

Not sure if that is related or anything should be changed there... it contains what was distributed. Is there a specific container that runs "flyway" that I should dig into? Should I try the older 2.1.x branch?

burcakulug commented 5 years ago

are you using 2 separate docker-compose.yml files, one for apps the other for db? if yes, can you try copying the db one into the app one at the end and run all your docker-compose commands against a single file?

ehb54 commented 5 years ago

Yes, I had tried joining the docker-compose-db, -app.yml's into 1, same results, no tables created. (after a full docker restart etc).

CindyLiFei commented 5 years ago

These two enviroment variables should be your VM IP address not localhost(localhost actually refer to container itself). export C2S_DB_HOST=127.0.0.1 export C2S_APP_HOST=127.0.0.1

Can you keep the DB container up, and change the config and restart the app container? If table still not created, please share app container logs.

ehb54 commented 5 years ago

CS2_*_HOST were already set to 127.0.0.1.

Can you keep the DB container up, and change the config and restart the app container? If table still not created, please share app container logs.

Went ahead and restarted the app containers, still no tables. Here's the full set of logs (not sure if you needed some specific log file):

2019-07-09 13:12:43.445  INFO 1 --- [main] g.s.c.c.ConfigServerApplication          : The following profiles are active: docker
2019-07-09 13:12:47.100  INFO 1 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@8646db9: startup date [Tue Jul 09 13:12:47 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@26f0a63f
2019-07-09 13:12:54.609  INFO 1 --- [main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=19a07f98-8cad-313d-8bb2-7ce2b95fad0c
2019-07-09 13:12:54.762  INFO 1 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2019-07-09 13:12:55.496  INFO 1 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration' of type [org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration$$EnhancerBySpringCGLIB$$56eca00a] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:12:55.552  INFO 1 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$40d9fcc6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:12:58.035  INFO 1 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8888 (http)
2019-07-09 13:12:58.089  INFO 1 --- [main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-07-09 13:12:58.091  INFO 1 --- [main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.16
2019-07-09 13:12:58.519  INFO 1 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-07-09 13:12:58.520  INFO 1 --- [localhost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 11420 ms
2019-07-09 13:13:00.258  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'metricsFilter' to: [/*]
2019-07-09 13:13:00.259  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-07-09 13:13:00.259  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-07-09 13:13:00.259  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-07-09 13:13:00.259  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2019-07-09 13:13:00.289  INFO 1 --- [localhost-startStop-1] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
2019-07-09 13:13:00.290  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'webRequestLoggingFilter' to: [/*]
2019-07-09 13:13:00.290  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'applicationContextIdFilter' to: [/*]
2019-07-09 13:13:00.290  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2019-07-09 13:13:05.773  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@8646db9: startup date [Tue Jul 09 13:12:47 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@26f0a63f
2019-07-09 13:13:07.266  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2019-07-09 13:13:07.268  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2019-07-09 13:13:07.320  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/encrypt],methods=[POST]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.encrypt(java.lang.String,org.springframework.http.MediaType)
2019-07-09 13:13:07.321  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/encrypt/{name}/{profiles}],methods=[POST]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.encrypt(java.lang.String,java.lang.String,java.lang.String,org.springframework.http.MediaType)
2019-07-09 13:13:07.321  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/decrypt/{name}/{profiles}],methods=[POST]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.decrypt(java.lang.String,java.lang.String,java.lang.String,org.springframework.http.MediaType)
2019-07-09 13:13:07.321  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/decrypt],methods=[POST]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.decrypt(java.lang.String,org.springframework.http.MediaType)
2019-07-09 13:13:07.322  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/encrypt/status],methods=[GET]}" onto public java.util.Map<java.lang.String, java.lang.Object> org.springframework.cloud.config.server.encryption.EncryptionController.status()
2019-07-09 13:13:07.322  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/key],methods=[GET]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.getPublicKey()
2019-07-09 13:13:07.323  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/key/{name}/{profiles}],methods=[GET]}" onto public java.lang.String org.springframework.cloud.config.server.encryption.EncryptionController.getPublicKey(java.lang.String,java.lang.String)
2019-07-09 13:13:07.388  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}-{profiles}.properties],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.properties(java.lang.String,java.lang.String,boolean) throws java.io.IOException
2019-07-09 13:13:07.389  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}/{profiles:.*[^-].*}],methods=[GET]}" onto public org.springframework.cloud.config.environment.Environment org.springframework.cloud.config.server.environment.EnvironmentController.defaultLabel(java.lang.String,java.lang.String)
2019-07-09 13:13:07.389  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}/{profiles}/{label:.*}],methods=[GET]}" onto public org.springframework.cloud.config.environment.Environment org.springframework.cloud.config.server.environment.EnvironmentController.labelled(java.lang.String,java.lang.String,java.lang.String)
2019-07-09 13:13:07.390  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{label}/{name}-{profiles}.properties],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.labelledProperties(java.lang.String,java.lang.String,java.lang.String,boolean) throws java.io.IOException
2019-07-09 13:13:07.391  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}-{profiles}.json],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.jsonProperties(java.lang.String,java.lang.String,boolean) throws java.lang.Exception
2019-07-09 13:13:07.391  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{label}/{name}-{profiles}.json],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.labelledJsonProperties(java.lang.String,java.lang.String,java.lang.String,boolean) throws java.lang.Exception
2019-07-09 13:13:07.392  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{label}/{name}-{profiles}.yml || /{label}/{name}-{profiles}.yaml],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.labelledYaml(java.lang.String,java.lang.String,java.lang.String,boolean) throws java.lang.Exception
2019-07-09 13:13:07.424  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}-{profiles}.yml || /{name}-{profiles}.yaml],methods=[GET]}" onto public org.springframework.http.ResponseEntity<java.lang.String> org.springframework.cloud.config.server.environment.EnvironmentController.yaml(java.lang.String,java.lang.String,boolean) throws java.lang.Exception
2019-07-09 13:13:07.441  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}/{profile}/{label}/**],methods=[GET],produces=[application/octet-stream]}" onto public synchronized byte[] org.springframework.cloud.config.server.resource.ResourceController.binary(java.lang.String,java.lang.String,java.lang.String,javax.servlet.http.HttpServletRequest) throws java.io.IOException
2019-07-09 13:13:07.441  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/{name}/{profile}/{label}/**],methods=[GET]}" onto public java.lang.String org.springframework.cloud.config.server.resource.ResourceController.retrieve(java.lang.String,java.lang.String,java.lang.String,javax.servlet.http.HttpServletRequest,boolean) throws java.io.IOException
2019-07-09 13:13:07.722  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:07.723  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:08.050  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:11.665  INFO 1 --- [main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: OrRequestMatcher [requestMatchers=[Ant [pattern='/css/**'], Ant [pattern='/js/**'], Ant [pattern='/images/**'], Ant [pattern='/webjars/**'], Ant [pattern='/**/favicon.ico'], Ant [pattern='/error']]], []
2019-07-09 13:13:12.459  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/service-registry/instance-status],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.getStatus()
2019-07-09 13:13:12.476  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/service-registry/instance-status],methods=[POST]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.setStatus(java.lang.String)
2019-07-09 13:13:12.477  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/dump || /management/dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.478  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:12.479  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/metrics || /management/metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.479  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/autoconfig || /management/autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.486  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/auditevents || /management/auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
2019-07-09 13:13:12.487  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/pause || /management/pause.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:12.515  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/mappings || /management/mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.517  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:12.517  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/env || /management/env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.537  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/resume || /management/resume.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:12.538  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/info || /management/info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.544  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/restart || /management/restart.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.restart.RestartMvcEndpoint.invoke()
2019-07-09 13:13:12.546  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/configprops || /management/configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.547  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/archaius || /management/archaius.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.563  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/heapdump || /management/heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
2019-07-09 13:13:12.576  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/health || /management/health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
2019-07-09 13:13:12.577  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/beans || /management/beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.578  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/trace || /management/trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.589  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/refresh || /management/refresh.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:12.590  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/features || /management/features.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.595  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
2019-07-09 13:13:12.596  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:12.596  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/loggers || /management/loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:12.597  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/logfile || /management/logfile.json],methods=[GET || HEAD]}" onto public void org.springframework.boot.actuate.endpoint.mvc.LogFileMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws javax.servlet.ServletException,java.io.IOException
2019-07-09 13:13:12.597  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/env],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.value(java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:12.600  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/management/env/reset],methods=[POST]}" onto public java.util.Map<java.lang.String, java.lang.Object> org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.reset()
2019-07-09 13:13:12.604  INFO 1 --- [main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: Ant [pattern='/management/**'], [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6df20ade, org.springframework.security.web.context.SecurityContextPersistenceFilter@5c1bd44c, org.springframework.security.web.header.HeaderWriterFilter@538613b3, org.springframework.web.filter.CorsFilter@4fbb001b, org.springframework.security.web.authentication.logout.LogoutFilter@2755d705, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3574e198, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@18cc679e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@67ef029, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4010d494, org.springframework.security.web.session.SessionManagementFilter@11389053, org.springframework.security.web.access.ExceptionTranslationFilter@2187fff7, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@758f4f03]
2019-07-09 13:13:12.606  INFO 1 --- [main] o.s.s.web.DefaultSecurityFilterChain     : Creating filter chain: OrRequestMatcher [requestMatchers=[Ant [pattern='/**']]], [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5d10455d, org.springframework.security.web.context.SecurityContextPersistenceFilter@344b8190, org.springframework.security.web.header.HeaderWriterFilter@7f4d9395, org.springframework.security.web.authentication.logout.LogoutFilter@1929425f, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@718607eb, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6a078481, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@79c5636f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@535b8c24, org.springframework.security.web.session.SessionManagementFilter@2f19f2aa, org.springframework.security.web.access.ExceptionTranslationFilter@cda4919, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@676f0a60]
2019-07-09 13:13:14.931  WARN 1 --- [main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:13:14.932  INFO 1 --- [main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:13:15.074  WARN 1 --- [main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:13:15.075  INFO 1 --- [main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:13:15.177  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2019-07-09 13:13:15.188  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'environmentManager' has been autodetected for JMX exposure
2019-07-09 13:13:15.190  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'configurationPropertiesRebinder' has been autodetected for JMX exposure
2019-07-09 13:13:15.190  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:15.191  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'restartEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:15.192  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'serviceRegistryEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:15.193  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshScope' has been autodetected for JMX exposure
2019-07-09 13:13:15.210  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'environmentManager': registering with JMX server as MBean [org.springframework.cloud.context.environment:name=environmentManager,type=EnvironmentManager]
2019-07-09 13:13:15.225  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'restartEndpoint': registering with JMX server as MBean [org.springframework.cloud.context.restart:name=restartEndpoint,type=RestartEndpoint]
2019-07-09 13:13:15.237  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'serviceRegistryEndpoint': registering with JMX server as MBean [org.springframework.cloud.client.serviceregistry.endpoint:name=serviceRegistryEndpoint,type=ServiceRegistryEndpoint]
2019-07-09 13:13:15.249  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshScope': registering with JMX server as MBean [org.springframework.cloud.context.scope.refresh:name=refreshScope,type=RefreshScope]
2019-07-09 13:13:15.271  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'configurationPropertiesRebinder': registering with JMX server as MBean [org.springframework.cloud.context.properties:name=configurationPropertiesRebinder,context=8646db9,type=ConfigurationPropertiesRebinder]
2019-07-09 13:13:15.279  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshEndpoint': registering with JMX server as MBean [org.springframework.cloud.endpoint:name=refreshEndpoint,type=RefreshEndpoint]
2019-07-09 13:13:15.894  INFO 1 --- [main] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 0
2019-07-09 13:13:15.915  INFO 1 --- [main] o.s.c.n.eureka.InstanceInfoFactory       : Setting initial instance status as: STARTING
2019-07-09 13:13:16.254  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2019-07-09 13:13:17.186  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON encoding codec LegacyJacksonJson
2019-07-09 13:13:17.186  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON decoding codec LegacyJacksonJson
2019-07-09 13:13:17.736  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using XML encoding codec XStreamXml
2019-07-09 13:13:17.736  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using XML decoding codec XStreamXml
2019-07-09 13:13:19.202  INFO 1 --- [main] c.n.d.s.r.aws.ConfigClusterResolver      : Resolving eureka endpoints via configuration
2019-07-09 13:13:19.353  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2019-07-09 13:13:19.353  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2019-07-09 13:13:19.354  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2019-07-09 13:13:19.354  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Application is null : false
2019-07-09 13:13:19.354  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2019-07-09 13:13:19.354  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Application version is -1: true
2019-07-09 13:13:19.354  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2019-07-09 13:13:19.619  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : The response status is 200
2019-07-09 13:13:19.707  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Starting heartbeat executor: renew interval is: 30
2019-07-09 13:13:19.710  INFO 1 --- [main] c.n.discovery.InstanceInfoReplicator     : InstanceInfoReplicator onDemand update allowed rate per min is 4
2019-07-09 13:13:19.716  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1562692399716 with initial instances count: 0
2019-07-09 13:13:19.819  INFO 1 --- [main] o.s.c.n.e.s.EurekaServiceRegistry        : Registering application config-server with eureka with status UP
2019-07-09 13:13:19.821  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1562692399821, current=UP, previous=STARTING]
2019-07-09 13:13:19.909  WARN 1 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1562692399909, current=DOWN, previous=UP]
2019-07-09 13:13:19.910  WARN 1 --- [DiscoveryClient-InstanceInfoReplicator-0] c.n.discovery.InstanceInfoReplicator     : Ignoring onDemand update due to rate limiter
2019-07-09 13:13:19.910  INFO 1 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_CONFIG-SERVER/f49036231628:config-server:8c68cd5d75cc8e15a0c01a8ad9748489: registering service...
2019-07-09 13:13:20.371  INFO 1 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_CONFIG-SERVER/f49036231628:config-server:8c68cd5d75cc8e15a0c01a8ad9748489 - registration status: 204
2019-07-09 13:13:20.390  INFO 1 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8888 (http)
2019-07-09 13:13:20.394  INFO 1 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8888
2019-07-09 13:13:20.403  INFO 1 --- [main] g.s.c.c.ConfigServerApplication          : Started ConfigServerApplication in 57.616 seconds (JVM running for 68.659)
2019-07-09 13:13:49.718  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2019-07-09 13:13:49.718  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2019-07-09 13:13:49.718  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2019-07-09 13:13:49.718  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Application is null : false
2019-07-09 13:13:49.719  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2019-07-09 13:13:49.719  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Application version is -1: false
2019-07-09 13:13:49.719  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2019-07-09 13:13:49.875  INFO 1 --- [DiscoveryClient-CacheRefreshExecutor-0] com.netflix.discovery.DiscoveryClient    : The response status is 200

2019-07-09 13:12:19.093  INFO 1 --- [main] g.s.c.d.DiscoveryServerApplication       : The following profiles are active: docker
2019-07-09 13:12:21.182  INFO 1 --- [main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e06451e: startup date [Tue Jul 09 13:12:21 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1ee0005
2019-07-09 13:12:33.313  INFO 1 --- [main] o.s.cloud.context.scope.GenericScope     : BeanFactory id=cef96b6f-bf5a-3c1d-b25e-827a411ed19c
2019-07-09 13:12:33.393  INFO 1 --- [main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2019-07-09 13:12:34.471  INFO 1 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration' of type [org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration$$EnhancerBySpringCGLIB$$428fd7ee] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:12:34.553  INFO 1 --- [main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$2c7d34aa] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:12:41.445  INFO 1 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8761 (http)
2019-07-09 13:12:41.485  INFO 1 --- [main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-07-09 13:12:41.486  INFO 1 --- [main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.16
2019-07-09 13:12:42.469  INFO 1 --- [localhost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-07-09 13:12:42.470  INFO 1 --- [localhost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 21288 ms
2019-07-09 13:12:50.968  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'metricsFilter' to: [/*]
2019-07-09 13:12:50.971  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-07-09 13:12:50.971  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-07-09 13:12:50.971  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-07-09 13:12:50.972  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2019-07-09 13:12:50.972  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'webRequestTraceFilter' to: [/*]
2019-07-09 13:12:50.972  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'servletContainer' to urls: [/eureka/*]
2019-07-09 13:12:50.972  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'applicationContextIdFilter' to: [/*]
2019-07-09 13:12:50.972  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2019-07-09 13:12:52.538  INFO 1 --- [localhost-startStop-1] c.s.j.s.i.a.WebApplicationImpl           : Initiating Jersey application, version 'Jersey: 1.19.1 03/11/2016 02:08 PM'
2019-07-09 13:12:53.102  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON encoding codec LegacyJacksonJson
2019-07-09 13:12:53.120  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON decoding codec LegacyJacksonJson
2019-07-09 13:12:54.638  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using XML encoding codec XStreamXml
2019-07-09 13:12:54.638  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using XML decoding codec XStreamXml
2019-07-09 13:12:59.476  WARN 1 --- [main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:12:59.477  INFO 1 --- [main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:12:59.530  WARN 1 --- [main] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:12:59.531  INFO 1 --- [main] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:13:02.299  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e06451e: startup date [Tue Jul 09 13:12:21 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1ee0005
2019-07-09 13:13:03.202  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2019-07-09 13:13:03.226  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2019-07-09 13:13:03.241  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/lastn],methods=[GET]}" onto public java.lang.String org.springframework.cloud.netflix.eureka.server.EurekaController.lastn(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.Object>)
2019-07-09 13:13:03.242  INFO 1 --- [main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[GET]}" onto public java.lang.String org.springframework.cloud.netflix.eureka.server.EurekaController.status(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.Object>)
2019-07-09 13:13:03.338  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:03.340  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:03.594  INFO 1 --- [main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:07.241  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/resume || /resume.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:07.248  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
2019-07-09 13:13:07.249  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.266  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/refresh || /refresh.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:07.277  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:07.277  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.289  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.291  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:07.297  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.372  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
2019-07-09 13:13:07.383  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:07.384  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.384  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/pause || /pause.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:07.385  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/features || /features.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.412  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.413  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.431  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.value(java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:07.431  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env/reset],methods=[POST]}" onto public java.util.Map<java.lang.String, java.lang.Object> org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.reset()
2019-07-09 13:13:07.448  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/restart || /restart.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.restart.RestartMvcEndpoint.invoke()
2019-07-09 13:13:07.449  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/service-registry/instance-status],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.getStatus()
2019-07-09 13:13:07.451  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/service-registry/instance-status],methods=[POST]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.setStatus(java.lang.String)
2019-07-09 13:13:07.455  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.456  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/logfile || /logfile.json],methods=[GET || HEAD]}" onto public void org.springframework.boot.actuate.endpoint.mvc.LogFileMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws javax.servlet.ServletException,java.io.IOException
2019-07-09 13:13:07.459  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
2019-07-09 13:13:07.464  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/archaius || /archaius.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.484  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
2019-07-09 13:13:07.485  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:07.488  INFO 1 --- [main] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:08.421  INFO 1 --- [main] o.s.ui.freemarker.SpringTemplateLoader   : SpringTemplateLoader for FreeMarker: using resource loader [org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e06451e: startup date [Tue Jul 09 13:12:21 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@1ee0005] and template loader path [classpath:/templates/]
2019-07-09 13:13:08.427  INFO 1 --- [main] o.s.w.s.v.f.FreeMarkerConfigurer         : ClassTemplateLoader for Spring macros added to FreeMarker configuration
2019-07-09 13:13:09.124  INFO 1 --- [main] o.s.c.n.eureka.InstanceInfoFactory       : Setting initial instance status as: STARTING
2019-07-09 13:13:09.459  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2019-07-09 13:13:09.460  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Client configured to neither register nor query for data.
2019-07-09 13:13:09.514  INFO 1 --- [main] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1562692389513 with initial instances count: 0
2019-07-09 13:13:10.238  INFO 1 --- [main] c.n.eureka.DefaultEurekaServerContext    : Initializing ...
2019-07-09 13:13:10.277  INFO 1 --- [main] c.n.eureka.cluster.PeerEurekaNodes       : Adding new peer nodes [http://localhost:8761/eureka/]
2019-07-09 13:13:11.726  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON encoding codec LegacyJacksonJson
2019-07-09 13:13:11.726  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON decoding codec LegacyJacksonJson
2019-07-09 13:13:11.726  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using XML encoding codec XStreamXml
2019-07-09 13:13:11.726  INFO 1 --- [main] c.n.d.provider.DiscoveryJerseyProvider   : Using XML decoding codec XStreamXml
2019-07-09 13:13:12.452  INFO 1 --- [main] c.n.eureka.cluster.PeerEurekaNodes       : Replica node URL:  http://localhost:8761/eureka/
2019-07-09 13:13:12.598  INFO 1 --- [main] c.n.e.registry.AbstractInstanceRegistry  : Finished initializing remote region registries. All known remote regions: []
2019-07-09 13:13:12.599  INFO 1 --- [main] c.n.eureka.DefaultEurekaServerContext    : Initialized
2019-07-09 13:13:12.938  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2019-07-09 13:13:12.969  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'environmentManager' has been autodetected for JMX exposure
2019-07-09 13:13:12.972  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'configurationPropertiesRebinder' has been autodetected for JMX exposure
2019-07-09 13:13:12.972  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:12.984  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'restartEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:12.985  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'serviceRegistryEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:12.986  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshScope' has been autodetected for JMX exposure
2019-07-09 13:13:13.038  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'environmentManager': registering with JMX server as MBean [org.springframework.cloud.context.environment:name=environmentManager,type=EnvironmentManager]
2019-07-09 13:13:13.112  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'restartEndpoint': registering with JMX server as MBean [org.springframework.cloud.context.restart:name=restartEndpoint,type=RestartEndpoint]
2019-07-09 13:13:13.289  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'serviceRegistryEndpoint': registering with JMX server as MBean [org.springframework.cloud.client.serviceregistry.endpoint:name=serviceRegistryEndpoint,type=ServiceRegistryEndpoint]
2019-07-09 13:13:13.357  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshScope': registering with JMX server as MBean [org.springframework.cloud.context.scope.refresh:name=refreshScope,type=RefreshScope]
2019-07-09 13:13:13.458  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'configurationPropertiesRebinder': registering with JMX server as MBean [org.springframework.cloud.context.properties:name=configurationPropertiesRebinder,context=6e06451e,type=ConfigurationPropertiesRebinder]
2019-07-09 13:13:13.492  INFO 1 --- [main] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshEndpoint': registering with JMX server as MBean [org.springframework.cloud.endpoint:name=refreshEndpoint,type=RefreshEndpoint]
2019-07-09 13:13:14.745  INFO 1 --- [main] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 0
2019-07-09 13:13:14.746  INFO 1 --- [main] o.s.c.n.e.s.EurekaServiceRegistry        : Registering application discovery-server with eureka with status UP
2019-07-09 13:13:14.852  INFO 1 --- [Thread-11] o.s.c.n.e.server.EurekaServerBootstrap   : Setting the eureka configuration..
2019-07-09 13:13:14.852  INFO 1 --- [Thread-11] o.s.c.n.e.server.EurekaServerBootstrap   : Eureka data center value eureka.datacenter is not set, defaulting to default
2019-07-09 13:13:14.853  INFO 1 --- [Thread-11] o.s.c.n.e.server.EurekaServerBootstrap   : Eureka environment value eureka.environment is not set, defaulting to test
2019-07-09 13:13:14.873  INFO 1 --- [Thread-11] o.s.c.n.e.server.EurekaServerBootstrap   : isAws returned false
2019-07-09 13:13:14.874  INFO 1 --- [Thread-11] o.s.c.n.e.server.EurekaServerBootstrap   : Initialized server context
2019-07-09 13:13:14.874  INFO 1 --- [Thread-11] c.n.e.r.PeerAwareInstanceRegistryImpl    : Got 1 instances from neighboring DS node
2019-07-09 13:13:14.875  INFO 1 --- [Thread-11] c.n.e.r.PeerAwareInstanceRegistryImpl    : Renew threshold is: 1
2019-07-09 13:13:14.875  INFO 1 --- [Thread-11] c.n.e.r.PeerAwareInstanceRegistryImpl    : Changing status to UP
2019-07-09 13:13:14.890  INFO 1 --- [Thread-11] e.s.EurekaServerInitializerConfiguration : Started Eureka Server
2019-07-09 13:13:15.263  INFO 1 --- [main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8761 (http)
2019-07-09 13:13:15.288  INFO 1 --- [main] .s.c.n.e.s.EurekaAutoServiceRegistration : Updating port to 8761
2019-07-09 13:13:15.305  INFO 1 --- [main] g.s.c.d.DiscoveryServerApplication       : Started DiscoveryServerApplication in 71.783 seconds (JVM running for 83.343)
2019-07-09 13:13:15.415  INFO 1 --- [http-nio-8761-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring FrameworkServlet 'dispatcherServlet'
2019-07-09 13:13:15.416  INFO 1 --- [http-nio-8761-exec-2] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization started
2019-07-09 13:13:15.510  INFO 1 --- [http-nio-8761-exec-2] o.s.web.servlet.DispatcherServlet        : FrameworkServlet 'dispatcherServlet': initialization completed in 94 ms
2019-07-09 13:13:20.333  INFO 1 --- [http-nio-8761-exec-7] c.n.e.registry.AbstractInstanceRegistry  : Registered instance CONFIG-SERVER/f49036231628:config-server:8c68cd5d75cc8e15a0c01a8ad9748489 with status DOWN (replication=false)
2019-07-09 13:13:21.136  INFO 1 --- [http-nio-8761-exec-8] c.n.e.registry.AbstractInstanceRegistry  : Registered instance CONFIG-SERVER/f49036231628:config-server:8c68cd5d75cc8e15a0c01a8ad9748489 with status DOWN (replication=true)
2019-07-09 13:13:34.238  INFO 1 --- [http-nio-8761-exec-2] c.n.e.registry.AbstractInstanceRegistry  : Registered instance DOCUMENT-VALIDATOR/e0a5f6487889:document-validator with status UP (replication=false)
2019-07-09 13:13:34.758  INFO 1 --- [http-nio-8761-exec-3] c.n.e.registry.AbstractInstanceRegistry  : Registered instance DOCUMENT-VALIDATOR/e0a5f6487889:document-validator with status UP (replication=true)
2019-07-09 13:14:14.877  INFO 1 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms
2019-07-09 13:15:14.877  INFO 1 --- [Eureka-EvictionTimer] c.n.e.registry.AbstractInstanceRegistry  : Running the evict task with compensationTime 0ms

2019-07-09 13:13:14.409  INFO 1 --- [localhost-startStop-1] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at: http://localhost:8888
2019-07-09 13:13:15.068  WARN 1 --- [localhost-startStop-1] c.c.c.ConfigServicePropertySourceLocator : Could not locate PropertySource: I/O error on GET request for "http://localhost:8888/document-validator/docker": Connection refused (Connection refused); nested exception is java.net.ConnectException: Connection refused (Connection refused)
2019-07-09 13:13:15.070  INFO 1 --- [localhost-startStop-1] g.s.c.d.DocumentValidatorApplication     : The following profiles are active: docker
2019-07-09 13:13:15.075  INFO 1 --- [localhost-startStop-1] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7e3a4708: startup date [Tue Jul 09 13:13:15 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@54459b06
2019-07-09 13:13:18.265  INFO 1 --- [localhost-startStop-1] o.s.cloud.context.scope.GenericScope     : BeanFactory id=a68a5492-ec35-33dd-9269-ad7d7dc265a9
2019-07-09 13:13:18.283  INFO 1 --- [localhost-startStop-1] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2019-07-09 13:13:18.485  INFO 1 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration' of type [org.springframework.cloud.netflix.metrics.MetricsInterceptorConfiguration$MetricsRestTemplateConfiguration$$EnhancerBySpringCGLIB$$83184361] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:13:18.597  INFO 1 --- [localhost-startStop-1] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$6d05a01d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-07-09 13:13:18.604  INFO 1 --- [localhost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 3529 ms
2019-07-09 13:13:19.360  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2019-07-09 13:13:19.364  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'errorPageFilter' to: [/*]
2019-07-09 13:13:19.365  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'metricsFilter' to: [/*]
2019-07-09 13:13:19.365  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2019-07-09 13:13:19.365  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2019-07-09 13:13:19.365  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2019-07-09 13:13:19.365  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2019-07-09 13:13:19.367  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'webRequestLoggingFilter' to: [/*]
2019-07-09 13:13:19.368  INFO 1 --- [localhost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'applicationContextIdFilter' to: [/*]
2019-07-09 13:13:19.476  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:19.477  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:19.477  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:23.863  WARN 1 --- [localhost-startStop-1] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:13:23.863  INFO 1 --- [localhost-startStop-1] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:13:23.870  WARN 1 --- [localhost-startStop-1] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-07-09 13:13:23.871  INFO 1 --- [localhost-startStop-1] c.n.c.sources.URLConfigurationSource     : To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2019-07-09 13:13:24.792  INFO 1 --- [localhost-startStop-1] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@7e3a4708: startup date [Tue Jul 09 13:13:15 EDT 2019]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@54459b06
2019-07-09 13:13:25.155  INFO 1 --- [localhost-startStop-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/multipartFileDocumentValidation],methods=[POST]}" onto public gov.samhsa.c2s.documentvalidator.service.dto.ValidationResponseDto gov.samhsa.c2s.documentvalidator.web.DocumentValidationController.validateClinicalDocumentFile(org.springframework.web.multipart.MultipartFile)
2019-07-09 13:13:25.158  INFO 1 --- [localhost-startStop-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/documentValidation],methods=[POST]}" onto public gov.samhsa.c2s.documentvalidator.service.dto.ValidationResponseDto gov.samhsa.c2s.documentvalidator.web.DocumentValidationController.validateClinicalDocument(gov.samhsa.c2s.documentvalidator.service.dto.ValidationRequestDto)
2019-07-09 13:13:25.163  INFO 1 --- [localhost-startStop-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2019-07-09 13:13:25.164  INFO 1 --- [localhost-startStop-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2019-07-09 13:13:25.346  INFO 1 --- [localhost-startStop-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:25.347  INFO 1 --- [localhost-startStop-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:25.579  INFO 1 --- [localhost-startStop-1] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2019-07-09 13:13:28.410  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
2019-07-09 13:13:28.411  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:28.411  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.412  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.412  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/features || /features.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.414  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/logfile || /logfile.json],methods=[GET || HEAD]}" onto public void org.springframework.boot.actuate.endpoint.mvc.LogFileMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws javax.servlet.ServletException,java.io.IOException
2019-07-09 13:13:28.414  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.415  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.416  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
2019-07-09 13:13:28.416  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/refresh || /refresh.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:28.417  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.436  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
2019-07-09 13:13:28.438  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:28.438  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.439  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/archaius || /archaius.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.439  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.value(java.util.Map<java.lang.String, java.lang.String>)
2019-07-09 13:13:28.439  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/env/reset],methods=[POST]}" onto public java.util.Map<java.lang.String, java.lang.Object> org.springframework.cloud.context.environment.EnvironmentManagerMvcEndpoint.reset()
2019-07-09 13:13:28.440  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/restart || /restart.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.context.restart.RestartMvcEndpoint.invoke()
2019-07-09 13:13:28.441  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/service-registry/instance-status],methods=[GET]}" onto public org.springframework.http.ResponseEntity org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.getStatus()
2019-07-09 13:13:28.441  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/service-registry/instance-status],methods=[POST]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.cloud.client.serviceregistry.endpoint.ServiceRegistryEndpoint.setStatus(java.lang.String)
2019-07-09 13:13:28.442  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.443  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/pause || /pause.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:28.444  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.444  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
2019-07-09 13:13:28.448  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.449  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
2019-07-09 13:13:28.449  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
2019-07-09 13:13:28.450  INFO 1 --- [localhost-startStop-1] o.s.b.a.e.mvc.EndpointHandlerMapping     : Mapped "{[/resume || /resume.json],methods=[POST]}" onto public java.lang.Object org.springframework.cloud.endpoint.GenericPostableMvcEndpoint.invoke()
2019-07-09 13:13:29.525  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2019-07-09 13:13:29.543  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'environmentManager' has been autodetected for JMX exposure
2019-07-09 13:13:29.548  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'configurationPropertiesRebinder' has been autodetected for JMX exposure
2019-07-09 13:13:29.549  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:29.550  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'restartEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:29.551  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'serviceRegistryEndpoint' has been autodetected for JMX exposure
2019-07-09 13:13:29.552  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'refreshScope' has been autodetected for JMX exposure
2019-07-09 13:13:29.557  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'environmentManager': registering with JMX server as MBean [org.springframework.cloud.context.environment:name=environmentManager,type=EnvironmentManager]
2019-07-09 13:13:29.588  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'restartEndpoint': registering with JMX server as MBean [org.springframework.cloud.context.restart:name=restartEndpoint,type=RestartEndpoint]
2019-07-09 13:13:29.619  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'serviceRegistryEndpoint': registering with JMX server as MBean [org.springframework.cloud.client.serviceregistry.endpoint:name=serviceRegistryEndpoint,type=ServiceRegistryEndpoint]
2019-07-09 13:13:29.638  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshScope': registering with JMX server as MBean [org.springframework.cloud.context.scope.refresh:name=refreshScope,type=RefreshScope]
2019-07-09 13:13:29.671  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'configurationPropertiesRebinder': registering with JMX server as MBean [org.springframework.cloud.context.properties:name=configurationPropertiesRebinder,context=7e3a4708,type=ConfigurationPropertiesRebinder]
2019-07-09 13:13:29.686  INFO 1 --- [localhost-startStop-1] o.s.j.e.a.AnnotationMBeanExporter        : Located managed bean 'refreshEndpoint': registering with JMX server as MBean [org.springframework.cloud.endpoint:name=refreshEndpoint,type=RefreshEndpoint]
2019-07-09 13:13:31.163  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:31.164  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:31.164  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:31.174  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:31.174  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:31.174  WARN 1 --- [localhost-startStop-1] figurationPropertiesBindingPostProcessor : The @ConfigurationProperties bean class gov.samhsa.c2s.documentvalidator.config.DocumentValidatorProperties$$EnhancerBySpringCGLIB$$ae7f33fb contains validation constraints but had not been annotated with @Validated.
2019-07-09 13:13:32.035  INFO 1 --- [localhost-startStop-1] o.s.c.support.DefaultLifecycleProcessor  : Starting beans in phase 0
2019-07-09 13:13:32.055  INFO 1 --- [localhost-startStop-1] o.s.c.n.eureka.InstanceInfoFactory       : Setting initial instance status as: STARTING
2019-07-09 13:13:32.136  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2019-07-09 13:13:32.447  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON encoding codec LegacyJacksonJson
2019-07-09 13:13:32.447  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON decoding codec LegacyJacksonJson
2019-07-09 13:13:32.973  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using XML encoding codec XStreamXml
2019-07-09 13:13:32.973  INFO 1 --- [localhost-startStop-1] c.n.d.provider.DiscoveryJerseyProvider   : Using XML decoding codec XStreamXml
2019-07-09 13:13:33.203  INFO 1 --- [localhost-startStop-1] c.n.d.s.r.aws.ConfigClusterResolver      : Resolving eureka endpoints via configuration
2019-07-09 13:13:33.231  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2019-07-09 13:13:33.231  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2019-07-09 13:13:33.231  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2019-07-09 13:13:33.231  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Application is null : false
2019-07-09 13:13:33.231  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2019-07-09 13:13:33.232  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Application version is -1: true
2019-07-09 13:13:33.232  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2019-07-09 13:13:34.048  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : The response status is 200
2019-07-09 13:13:34.049  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Starting heartbeat executor: renew interval is: 30
2019-07-09 13:13:34.052  INFO 1 --- [localhost-startStop-1] c.n.discovery.InstanceInfoReplicator     : InstanceInfoReplicator onDemand update allowed rate per min is 4
2019-07-09 13:13:34.061  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1562692414061 with initial instances count: 1
2019-07-09 13:13:34.093  INFO 1 --- [localhost-startStop-1] o.s.c.n.e.s.EurekaServiceRegistry        : Registering application document-validator with eureka with status UP
2019-07-09 13:13:34.095  INFO 1 --- [localhost-startStop-1] com.netflix.discovery.DiscoveryClient    : Saw local status change event StatusChangeEvent [timestamp=1562692414095, current=UP, previous=STARTING]
2019-07-09 13:13:34.104  INFO 1 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_DOCUMENT-VALIDATOR/e0a5f6487889:document-validator: registering service...
2019-07-09 13:13:34.243  INFO 1 --- [DiscoveryClient-InstanceInfoReplicator-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_DOCUMENT-VALIDATOR/e0a5f6487889:document-validator - registration status: 204
2019-07-09 13:13:34.297  INFO 1 --- [localhost-startStop-1] g.s.c.d.DocumentValidatorApplication     : Started DocumentValidatorApplication in 29.52 seconds (JVM running for 78.53)