docker4drupal
docker4drupal copied to clipboard
Can not make requests longer than 60 seconds
Codebase Drupal 8.6.7
Describe the bug No matter what environmental variables I change I can not have a php function that takes more than 60 seconds.
Output of docker info
Containers: 17
Running: 7
Paused: 0
Stopped: 10
Images: 11
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.97-74.72.amzn1.x86_64
Operating System: Amazon Linux AMI 2018.03
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.853GiB
Name: AWSLASSETD01
ID: THHI:TXV7:VOBJ:JYCK:ACLD:CPCZ:GWQ2:HBRZ:5JQP:E6DC:TEPH:ZVQY
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Contents of your docker-compose.yml
version: "3"
services:
mariadb:
image: wodby/mariadb:$MARIADB_TAG
container_name: "${PROJECT_NAME}_mariadb"
stop_grace_period: 30s
environment:
MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD
MYSQL_DATABASE: $DB_NAME
MYSQL_USER: $DB_USER
MYSQL_PASSWORD: $DB_PASSWORD
# volumes:
# - ./mariadb-init:/docker-entrypoint-initdb.d # Place init .sql file(s) here.
# - /path/to/mariadb/data/on/host:/var/lib/mysql # Use bind mount
restart: always
php:
image: wodby/drupal-php:$PHP_TAG
container_name: "${PROJECT_NAME}_php"
environment:
PHP_DEFAULT_SOCKET_TIMEOUT: 300
PHP_MAX_INPUT_TIME: 300
PHP_MAX_EXECUTION_TIME: 300
PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
DB_HOST: $DB_HOST
DB_USER: $DB_USER
DB_PASSWORD: $DB_PASSWORD
DB_NAME: $DB_NAME
DB_DRIVER: $DB_DRIVER
COLUMNS: 80 # Set 80 columns for docker exec -it.
## Read instructions at https://wodby.com/stacks/drupal/docs/local/xdebug/
#PHP_XDEBUG: 1
#PHP_XDEBUG_DEFAULT_ENABLE: 1
#PHP_XDEBUG_REMOTE_CONNECT_BACK: 0
#PHP_IDE_CONFIG: serverName=php-storm
#PHP_XDEBUG_REMOTE_HOST: host.docker.internal # Docker 18.03+ & Linux/Mac/Win
# PHP_XDEBUG_REMOTE_HOST: 172.17.0.1 # Linux, Docker < 18.03
# PHP_XDEBUG_REMOTE_HOST: 10.254.254.254 # macOS, Docker < 18.03
# PHP_XDEBUG_REMOTE_HOST: 10.0.75.1 # Windows, Docker < 18.03
volumes:
- ./web:/var/www/html
- ./files:/var/www/html/docroot/sites/default/files
## For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
# - ./:/var/www/html:cached # User-guided caching
# - docker-sync:/var/www/html # Docker-sync
## For Xdebug profiler files
- ./xdebug-files:/mnt/files
restart: always
apache:
image: wodby/apache:$APACHE_TAG
container_name: "${PROJECT_NAME}_apache"
depends_on:
- php
environment:
APACHE_LOG_LEVEL: debug
APACHE_BACKEND_HOST: php
APACHE_VHOST_PRESET: php
APACHE_DOCUMENT_ROOT: /#var/www/html/docroot
APACHE_TIMEOUT: 300
ports:
- '81:80'
volumes:
- ./web:/var/www/html
- ./files:/var/www/html/docroot/sites/default/files
- ./simplesamlphp:/var/simplesamlphp
# - ./apache/simplesamlphp.conf:/etc/apache2/sites-enabled/simplesamlphp.conf
- ./sqlite3:/var/www/simplesaml/sqlite3
# For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
# - ./:/var/www/html:cached # User-guided caching
# - docker-sync:/var/www/html # Docker-sync
labels:
- 'traefik.backend=apache'
- 'traefik.port=80'
- 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'
restart: always
# nginx:
# image: wodby/nginx:$NGINX_TAG
# container_name: "${PROJECT_NAME}_nginx"
# depends_on:
# - php
# environment:
# NGINX_CLIENT_HEADER_TIMEOUT: 300s
# NGINX_CLIENT_BODY_TIMEOUT: 300s
# NGINX_KEEPALIVE_TIMEOUT: 300s
# NGINX_SEND_TIMEOUT: 300s
# NGINX_STATIC_OPEN_FILE_CACHE: "off"
# NGINX_ERROR_LOG_LEVEL: debug
# NGINX_BACKEND_HOST: php
# NGINX_SERVER_ROOT: /var/www/html/web
# NGINX_VHOST_PRESET: $NGINX_VHOST_PRESET
## NGINX_DRUPAL_FILE_PROXY_URL: http://example.com
# volumes:
# - ./web:/var/www/html
# - ./files:/var/www/html/docroot/sites/default/files
## For macOS users (https://wodby.com/stacks/drupal/docs/local/docker-for-mac/)
## - ./:/var/www/html:cached # User-guided caching
## - docker-sync:/var/www/html # Docker-sync
# labels:
# - 'traefik.backend=${PROJECT_NAME}_nginx'
# - 'traefik.port=80'
# - 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'
portainer:
image: portainer/portainer
container_name: "${PROJECT_NAME}_portainer"
command: --no-auth -H unix:///var/run/docker.sock
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- '9000:9000'
labels:
- 'traefik.backend=portainer'
- 'traefik.port=9000'
- 'traefik.frontend.rule=Host:portainer.${PROJECT_BASE_URL}'
restart: always
traefik:
image: traefik
container_name: "${PROJECT_NAME}_traefik"
command: -c /etc/traefik --web --docker --logLevel=INFO
ports:
- '80:80'
- '443:443'
# - '8443:8443'
# - '8080:8080' # Dashboard
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./traefik:/etc/traefik
- ./key:/etc/ssl/key
restart: always
node:
image: wodby/node:$NODE_TAG
container_name: "${PROJECT_NAME}_node"
working_dir: /var/www/html/docroot/sites/all/themes/bootstrap_sealedair
labels:
- 'traefik.backend=node'
- 'traefik.port=3000'
- 'traefik.frontend.rule=Host:front.${PROJECT_BASE_URL}'
expose:
- "3000"
volumes:
- ./web:/var/www/html
command: sh -c 'yarn install && yarn run start'
simplesamlphp-apache:
container_name: "${PROJECT_NAME}_saml"
build: ./simplesamlphp-docker
volumes:
- ./simplesamlphp-docker/simplesamlphp:/var/simplesamlphp
- ./simplesamlphp-docker/apache/simplesamlphp.conf:/etc/apache2/sites-enabled/simplesamlphp.conf
- ./simplesamlphp-docker/sqlite3:/var/www/simplesaml/sqlite3
ports:
- "8090:80"
- "8443:443"
expose:
- "8443"
# labels:
# - 'traefik.backend=saml'
# - 'traefik.port=8443'
# - 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'
restart: always
# varnish:
# image: wodby/varnish:$VARNISH_TAG
# container_name: "${PROJECT_NAME}_varnish"
# depends_on:
# - nginx
# environment:
# VARNISH_SECRET: secret
# VARNISH_BACKEND_HOST: nginx
# VARNISH_BACKEND_PORT: 80
# VARNISH_CONFIG_PRESET: drupal
# VARNISH_PURGE_EXTERNAL_REQUEST_HEADER: X-Real-IP
# labels:
# - 'traefik.backend=varnish'
# - 'traefik.port=6081'
# - 'traefik.frontend.rule=Host:varnish.${PROJECT_BASE_URL}'
# redis:
# container_name: "${PROJECT_NAME}_redis"
# image: wodby/redis:$REDIS_TAG
# adminer:
# container_name: "${PROJECT_NAME}_adminer"
# image: wodby/adminer:$ADMINER_TAG
# environment:
## For PostgreSQL:
## ADMINER_DEFAULT_DB_DRIVER: pgsql
# ADMINER_DEFAULT_DB_HOST: $DB_HOST
# ADMINER_DEFAULT_DB_NAME: $DB_NAME
# labels:
# - 'traefik.backend=adminer'
# - 'traefik.port=9000'
# - 'traefik.frontend.rule=Host:adminer.${PROJECT_BASE_URL}'
solr:
image: wodby/solr:$SOLR_TAG
container_name: "${PROJECT_NAME}_solr"
environment:
SOLR_DEFAULT_CONFIG_SET: $SOLR_CONFIG_SET
SOLR_HEAP: 1024m
labels:
- 'traefik.backend=solr'
- 'traefik.port=8983'
- 'traefik.frontend.rule=Host:solr.${PROJECT_BASE_URL}'
restart: always
# drupal-node:
# image: wodby/drupal-node:$DRUPAL_NODE_TAG
# container_name: "${PROJECT_NAME}_drupal_nodejs"
# environment:
# NODE_SERVICE_KEY: node-service-key
# labels:
# - 'traefik.backend=nodejs'
# - 'traefik.port=8080'
# - 'traefik.frontend.rule=Host:nodejs.${PROJECT_BASE_URL}'
# volumes:
# - ./path/to/your/single-page-app:/app
# command: sh -c 'npm install && npm run start'
# memcached:
# container_name: "${PROJECT_NAME}_memcached"
# image: wodby/memcached:$MEMCACHED_TAG
# rsyslog:
# container_name: "${PROJECT_NAME}_rsyslog"
# image: wodby/rsyslog:$RSYSLOG_TAG
# athenapdf:
# image: arachnysdocker/athenapdf-service:$ATHENAPDF_TAG
# container_name: "${PROJECT_NAME}_athenapdf"
# environment:
# WEAVER_AUTH_KEY: weaver-auth-key
# WEAVER_ATHENA_CMD: "athenapdf -S"
# WEAVER_MAX_WORKERS: 10
# WEAVER_MAX_CONVERSION_QUEUE: 50
# WEAVER_WORKER_TIMEOUT: 90
# WEAVER_CONVERSION_FALLBACK: "false"
# blackfire:
# image: blackfire/blackfire
# container_name: "${PROJECT_NAME}_blackfire"
# environment:
# BLACKFIRE_SERVER_ID: XXXXX
# BLACKFIRE_SERVER_TOKEN: YYYYY
# webgrind:
# image: wodby/webgrind:$WEBGRIND_TAG
# container_name: "${PROJECT_NAME}_webgrind"
# environment:
# WEBGRIND_PROFILER_DIR: /mnt/files/xdebug/profiler
# labels:
# - 'traefik.backend=webgrind'
# - 'traefik.port=8080'
# - 'traefik.frontend.rule=Host:webgrind.${PROJECT_BASE_URL}'
# volumes:
# - files:/mnt/files
# elasticsearch:
# image: wodby/elasticsearch:$ELASTICSEARCH_TAG
# environment:
# ES_JAVA_OPTS: "-Xms500m -Xmx500m"
# ulimits:
# memlock:
# soft: -1
# hard: -1
# kibana:
# image: wodby/kibana:$KIBANA_TAG
# depends_on:
# - elasticsearch
# labels:
# - 'traefik.backend=kibana'
# - 'traefik.port=5601'
# - 'traefik.frontend.rule=Host:kibana.php.docker.localhost'
# opensmtpd:
# container_name: "${PROJECT_NAME}_opensmtpd"
# image: wodby/opensmtpd:$OPENSMTPD_TAG
#volumes:
## Docker-sync for macOS users
# docker-sync:
# external: true
## For Xdebug profiler
# files:
Contents of your .env
### Documentation available at https://wodby.com/docs/stacks/drupal/local
### Changelog can be found at https://github.com/wodby/docker4drupal/releases
###
### Images tags format is [VERSION]-[STABILITY_TAG]
###
### [VERSION] is usually a version of application running in a container
### [VERSION] sometimes additionally includes major drupal version (see nginx)
### [STABILITY_TAG] is a version of an image (not application)
### [STABILITY_TAG] correspond to a git tag of corresponding image repository
###
### EXAMPLE: wodby/mariadb:10.2-3.1.2 has MariaDB 10.2 and stability tag 3.1.2
### New stability tags include patch updates for applications and other fixes/improvements
### You can find all details of this image at https://github.com/wodby/mariadb
###
### ! We highly encourage to use images only with stability tags
### PROJECT SETTINGS
PROJECT_NAME=asset
PROJECT_BASE_URL=dev-asset.innovation.sealedair.com
DB_NAME=drupal
DB_USER=drupal
DB_PASSWORD=drupal
DB_ROOT_PASSWORD=password
DB_HOST=mariadb
DB_DRIVER=mysql
### --- MARIADB ----
MARIADB_TAG=10.1-3.3.7
#MARIADB_TAG=10.3-3.3.7
#MARIADB_TAG=10.2-3.3.7
### --- VANILLA DRUPAL ----
### [DRUPAL_VERSION]-[PHP_VERSION]-[STABILITY_TAG]
# Drupal 8
#DRUPAL_TAG=8-7.2-4.8.0
#DRUPAL_TAG=8-7.1-4.8.0
# Drupal 7
DRUPAL_TAG=7-7.1-4.8.0
#DRUPAL_TAG=7-7.2-4.8.0
#DRUPAL_TAG=7-5.6-4.8.0
### --- PHP ----
# Linux (uid 1000 gid 1000)
#PHP_TAG=7.2-dev-4.8.0
PHP_TAG=7.1-dev-4.8.0
#PHP_TAG=5.6-dev-4.8.0
# macOS (uid 501 gid 20)
#PHP_TAG=7.2-dev-macos-4.8.0
#PHP_TAG=7.1-dev-macos-4.8.0
#PHP_TAG=5.6-dev-macos-4.8.0
### --- NGINX ----
NGINX_TAG=1.15-5.0.9
#NGINX_TAG=1.14-5.0.9
#NGINX_VHOST_PRESET=drupal8
NGINX_VHOST_PRESET=drupal7
#NGINX_VHOST_PRESET=drupal6
### --- SOLR ---
SOLR_CONFIG_SET="search_api_solr_7.x-1.14"
#SOLR_TAG=7.4-3.0.6
#SOLR_TAG=7.3-3.0.6
#SOLR_TAG=7.2-3.0.6
#SOLR_TAG=7.1-3.0.6
SOLR_TAG=6.6-3.0.6
#SOLR_TAG=5.5-3.0.6
#SOLR_TAG=5.4-3.0.6
### --- ELASTICSEARCH ---
ELASTICSEARCH_TAG=6.2-3.0.1
#ELASTICSEARCH_TAG=6.1-3.0.1
#ELASTICSEARCH_TAG=6.0-3.0.1
#ELASTICSEARCH_TAG=5.6-3.0.1
#ELASTICSEARCH_TAG=5.5-3.0.1
#ELASTICSEARCH_TAG=5.4-3.0.1
### --- KIBANA ---
KIBANA_TAG=6.2-3.0.1
#KIBANA_TAG=6.1-3.0.1
#KIBANA_TAG=6.0-3.0.1
#KIBANA_TAG=5.6-3.0.1
#KIBANA_TAG=5.5-3.0.1
#KIBANA_TAG=5.4-3.0.1
### --- REDIS ---
REDIS_TAG=4.0-2.1.7
#REDIS_TAG=3.2-2.1.7
### --- NODE ---
NODE_TAG=10.9-0.4.0
#NODE_TAG=8.11-0.4.0
#NODE_TAG=6.14-0.4.0
### --- POSTGRESQL ----
POSTGRES_TAG=10-1.4.0
#POSTGRES_TAG=9.6-1.4.0
#POSTGRES_TAG=9.5-1.4.0
#POSTGRES_TAG=9.4-1.4.0
#POSTGRES_TAG=9.3-1.4.0
### OTHERS
ADMINER_TAG=4.6-3.0.1
APACHE_TAG=2.4-4.0.2
ATHENAPDF_TAG=2.10.0
DRUPAL_NODE_TAG=1.0-2.0.0
MEMCACHED_TAG=1.5-2.1.1
OPENSMTPD_TAG=6.0-1.4.0
RSYSLOG_TAG=latest
VARNISH_TAG=4.1-3.0.7
WEBGRIND_TAG=1.5-1.5.0
Logs output docker-compose logs
Attaching to asset_apache, asset_php, asset_mariadb, asset_solr, asset_traefik, asset_portainer, asset_node, asset_saml
asset_apache | [Thu Feb 28 15:32:54.513073 2019] [proxy_fcgi:debug] [pid 22:tid 139858884246248] mod_proxy_fcgi.c(1028): [client 10.244.1.140:42476] AH01078: serving URL fcgi://php:9000/var/www/html/docroot/index.php
asset_apache | [Thu Feb 28 15:32:54.513079 2019] [proxy:debug] [pid 22:tid 139858884246248] proxy_util.c(2315): AH00942: FCGI: has acquired connection for (php)
asset_apache | [Thu Feb 28 15:32:54.513086 2019] [proxy:debug] [pid 22:tid 139858884246248] proxy_util.c(2368): [client 10.244.1.140:42476] AH00944: connecting fcgi://php:9000/var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:32:54.513092 2019] [proxy:debug] [pid 22:tid 139858884246248] proxy_util.c(2577): [client 10.244.1.140:42476] AH00947: connected /var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:32:54.513180 2019] [proxy:debug] [pid 22:tid 139858884246248] proxy_util.c(3046): AH02824: FCGI: connection established with 172.19.0.4:9000 (php)
asset_apache | [Thu Feb 28 15:32:54.542836 2019] [proxy:debug] [pid 22:tid 139858884246248] proxy_util.c(2330): AH00943: FCGI: has released connection for (php)
asset_apache | 10.244.1.140 - - [28/Feb/2019:15:32:54 +0000] "GET /health HTTP/1.1" 200 10
asset_apache | [Thu Feb 28 15:32:58.527949 2019] [authz_core:debug] [pid 21:tid 139858884528872] mod_authz_core.c(820): [client 10.244.2.209:36396] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:32:58.527975 2019] [authz_core:debug] [pid 21:tid 139858884528872] mod_authz_core.c(820): [client 10.244.2.209:36396] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:32:58.528043 2019] [authz_core:debug] [pid 21:tid 139858884528872] mod_authz_core.c(820): [client 10.244.2.209:36396] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:32:58.528058 2019] [authz_core:debug] [pid 21:tid 139858884528872] mod_authz_core.c(820): [client 10.244.2.209:36396] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:32:58.528087 2019] [proxy:debug] [pid 21:tid 139858884528872] mod_proxy.c(1248): [client 10.244.2.209:36396] AH01143: Running scheme fcgi handler (attempt 0)
asset_apache | [Thu Feb 28 15:32:58.528092 2019] [proxy_fcgi:debug] [pid 21:tid 139858884528872] mod_proxy_fcgi.c(1021): [client 10.244.2.209:36396] AH01076: url: fcgi://php:9000/var/www/html/docroot/index.php proxyname: (null) proxyport: 0
asset_apache | [Thu Feb 28 15:32:58.528097 2019] [proxy_fcgi:debug] [pid 21:tid 139858884528872] mod_proxy_fcgi.c(1028): [client 10.244.2.209:36396] AH01078: serving URL fcgi://php:9000/var/www/html/docroot/index.php
asset_apache | [Thu Feb 28 15:32:58.528103 2019] [proxy:debug] [pid 21:tid 139858884528872] proxy_util.c(2315): AH00942: FCGI: has acquired connection for (php)
asset_apache | [Thu Feb 28 15:32:58.528109 2019] [proxy:debug] [pid 21:tid 139858884528872] proxy_util.c(2368): [client 10.244.2.209:36396] AH00944: connecting fcgi://php:9000/var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:32:58.528115 2019] [proxy:debug] [pid 21:tid 139858884528872] proxy_util.c(2577): [client 10.244.2.209:36396] AH00947: connected /var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:32:58.528208 2019] [proxy:debug] [pid 21:tid 139858884528872] proxy_util.c(3046): AH02824: FCGI: connection established with 172.19.0.4:9000 (php)
asset_apache | [Thu Feb 28 15:32:58.557567 2019] [proxy:debug] [pid 21:tid 139858884528872] proxy_util.c(2330): AH00943: FCGI: has released connection for (php)
asset_apache | 10.244.2.209 - - [28/Feb/2019:15:32:58 +0000] "GET /health HTTP/1.1" 200 10
asset_apache | [Thu Feb 28 15:33:24.539181 2019] [authz_core:debug] [pid 216:tid 139858884340456] mod_authz_core.c(820): [client 10.244.1.140:42512] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:33:24.539206 2019] [authz_core:debug] [pid 216:tid 139858884340456] mod_authz_core.c(820): [client 10.244.1.140:42512] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:33:24.539301 2019] [authz_core:debug] [pid 216:tid 139858884340456] mod_authz_core.c(820): [client 10.244.1.140:42512] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:33:24.539311 2019] [authz_core:debug] [pid 216:tid 139858884340456] mod_authz_core.c(820): [client 10.244.1.140:42512] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:33:24.539342 2019] [proxy:debug] [pid 216:tid 139858884340456] mod_proxy.c(1248): [client 10.244.1.140:42512] AH01143: Running scheme fcgi handler (attempt 0)
asset_apache | [Thu Feb 28 15:33:24.539347 2019] [proxy_fcgi:debug] [pid 216:tid 139858884340456] mod_proxy_fcgi.c(1021): [client 10.244.1.140:42512] AH01076: url: fcgi://php:9000/var/www/html/docroot/index.php proxyname: (null) proxyport: 0
asset_apache | [Thu Feb 28 15:33:24.539352 2019] [proxy_fcgi:debug] [pid 216:tid 139858884340456] mod_proxy_fcgi.c(1028): [client 10.244.1.140:42512] AH01078: serving URL fcgi://php:9000/var/www/html/docroot/index.php
asset_apache | [Thu Feb 28 15:33:24.539370 2019] [proxy:debug] [pid 216:tid 139858884340456] proxy_util.c(2315): AH00942: FCGI: has acquired connection for (php)
asset_apache | [Thu Feb 28 15:33:24.539376 2019] [proxy:debug] [pid 216:tid 139858884340456] proxy_util.c(2368): [client 10.244.1.140:42512] AH00944: connecting fcgi://php:9000/var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:33:24.539385 2019] [proxy:debug] [pid 216:tid 139858884340456] proxy_util.c(2577): [client 10.244.1.140:42512] AH00947: connected /var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:33:24.539505 2019] [proxy:debug] [pid 216:tid 139858884340456] proxy_util.c(3046): AH02824: FCGI: connection established with 172.19.0.4:9000 (php)
asset_apache | [Thu Feb 28 15:33:24.569406 2019] [proxy:debug] [pid 216:tid 139858884340456] proxy_util.c(2330): AH00943: FCGI: has released connection for (php)
asset_apache | 10.244.1.140 - - [28/Feb/2019:15:33:24 +0000] "GET /health HTTP/1.1" 200 10
asset_apache | [Thu Feb 28 15:33:28.529972 2019] [authz_core:debug] [pid 21:tid 139858883398376] mod_authz_core.c(820): [client 10.244.2.209:36432] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:33:28.529996 2019] [authz_core:debug] [pid 21:tid 139858883398376] mod_authz_core.c(820): [client 10.244.2.209:36432] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:33:28.530062 2019] [authz_core:debug] [pid 21:tid 139858883398376] mod_authz_core.c(820): [client 10.244.2.209:36432] AH01626: authorization result of Require all granted: granted
asset_apache | [Thu Feb 28 15:33:28.530104 2019] [authz_core:debug] [pid 21:tid 139858883398376] mod_authz_core.c(820): [client 10.244.2.209:36432] AH01626: authorization result of <RequireAny>: granted
asset_apache | [Thu Feb 28 15:33:28.530135 2019] [proxy:debug] [pid 21:tid 139858883398376] mod_proxy.c(1248): [client 10.244.2.209:36432] AH01143: Running scheme fcgi handler (attempt 0)
asset_apache | [Thu Feb 28 15:33:28.530141 2019] [proxy_fcgi:debug] [pid 21:tid 139858883398376] mod_proxy_fcgi.c(1021): [client 10.244.2.209:36432] AH01076: url: fcgi://php:9000/var/www/html/docroot/index.php proxyname: (null) proxyport: 0
asset_apache | [Thu Feb 28 15:33:28.530146 2019] [proxy_fcgi:debug] [pid 21:tid 139858883398376] mod_proxy_fcgi.c(1028): [client 10.244.2.209:36432] AH01078: serving URL fcgi://php:9000/var/www/html/docroot/index.php
asset_apache | [Thu Feb 28 15:33:28.530152 2019] [proxy:debug] [pid 21:tid 139858883398376] proxy_util.c(2315): AH00942: FCGI: has acquired connection for (php)
asset_apache | [Thu Feb 28 15:33:28.530158 2019] [proxy:debug] [pid 21:tid 139858883398376] proxy_util.c(2368): [client 10.244.2.209:36432] AH00944: connecting fcgi://php:9000/var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:33:28.530164 2019] [proxy:debug] [pid 21:tid 139858883398376] proxy_util.c(2577): [client 10.244.2.209:36432] AH00947: connected /var/www/html/docroot/index.php to php:9000
asset_apache | [Thu Feb 28 15:33:28.530251 2019] [proxy:debug] [pid 21:tid 139858883398376] proxy_util.c(3046): AH02824: FCGI: connection established with 172.19.0.4:9000 (php)
asset_apache | [Thu Feb 28 15:33:28.560791 2019] [proxy:debug] [pid 21:tid 139858883398376] proxy_util.c(2330): AH00943: FCGI: has released connection for (php)
asset_apache | 10.244.2.209 - - [28/Feb/2019:15:33:28 +0000] "GET /health HTTP/1.1" 200 10
asset_apache | [Thu Feb 28 15:33:37.726689 2019] [proxy_fcgi:error] [pid 216:tid 139858884434664] (70007)The timeout specified has expired: [client 10.244.1.140:42448] AH01075: Error dispatching request to : (polling), referer: http://dev-asset.innovation.sealedair.com/asset_verify/form/asset_verification/422
asset_apache | [Thu Feb 28 15:33:37.726725 2019] [proxy:debug] [pid 216:tid 139858884434664] proxy_util.c(2330): AH00943: FCGI: has released connection for (php)
asset_apache | [Thu Feb 28 15:33:37.726814 2019] [headers:debug] [pid 216:tid 139858884434664] mod_headers.c(900): AH01503: headers: ap_headers_error_filter()
asset_apache | 10.244.1.140 - - [28/Feb/2019:15:32:37 +0000] "POST /asset_verify/form/asset_verification/422 HTTP/1.1" 504 247
asset_php | [28-Feb-2019 15:29:45] NOTICE: fpm is running, pid 1
asset_php | [28-Feb-2019 15:29:45] NOTICE: ready to handle connections
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:47 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:54 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:54 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:54 +0000 "POST /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:54 +0000 "POST /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:55 +0000 "POST /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:55 +0000 "POST /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:29:58 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:30:24 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:30:28 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:30:54 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:30:58 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:24 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:28 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:50 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:51 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:53 +0000 "POST /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:54 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:31:58 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:32:24 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:32:28 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:32:54 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:32:58 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:33:24 +0000 "GET /index.php" 200
asset_php | 172.19.0.9 - 28/Feb/2019:15:33:28 +0000 "GET /index.php" 200
asset_solr | 2019-02-25 12:51:46.506 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.node
asset_solr | 2019-02-25 12:51:46.515 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jvm
asset_solr | 2019-02-25 12:51:46.521 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jetty
asset_solr | 2019-02-25 12:51:46.523 INFO (Thread-0) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient cache for 2147483647 transient cores
asset_solr | Starting Solr 6.6.5
asset_solr | 2019-02-25 12:52:48.063 INFO (main) [ ] o.e.j.s.Server jetty-9.3.14.v20161028
asset_solr | 2019-02-25 12:52:48.625 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 6.6.5
asset_solr | 2019-02-25 12:52:48.625 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983
asset_solr | 2019-02-25 12:52:48.625 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr
asset_solr | 2019-02-25 12:52:48.661 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2019-02-25T12:52:48.627Z
asset_solr | 2019-02-25 12:52:48.696 INFO (main) [ ] o.a.s.c.SolrResourceLoader Using system property solr.solr.home: /opt/solr/server/solr
asset_solr | 2019-02-25 12:52:48.709 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /opt/solr/server/solr/solr.xml
asset_solr | 2019-02-25 12:52:48.968 INFO (main) [ ] o.a.s.c.SolrResourceLoader [null] Added 0 libs to classloader, from paths: []
asset_solr | 2019-02-25 12:52:49.531 INFO (main) [ ] o.a.s.u.UpdateShardHandler Creating UpdateShardHandler HTTP client with params: socketTimeout=600000&connTimeout=60000&retry=true
asset_solr | 2019-02-25 12:52:49.759 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 0 core definitions underneath /opt/solr/server/solr
asset_solr | 2019-02-25 12:52:49.821 INFO (main) [ ] o.e.j.s.Server Started @2579ms
asset_solr | 2019-02-28 15:01:03.656 INFO (Thread-0) [ ] o.a.s.c.CoreContainer Shutting down CoreContainer instance=1254344205
asset_solr | 2019-02-28 15:01:03.669 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.node
asset_solr | 2019-02-28 15:01:03.703 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jvm
asset_solr | 2019-02-28 15:01:03.704 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jetty
asset_solr | 2019-02-28 15:01:03.706 INFO (Thread-0) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient cache for 2147483647 transient cores
asset_solr | Starting Solr 6.6.5
asset_solr | 2019-02-28 15:01:09.398 INFO (main) [ ] o.e.j.s.Server jetty-9.3.14.v20161028
asset_solr | 2019-02-28 15:01:09.854 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 6.6.5
asset_solr | 2019-02-28 15:01:09.854 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983
asset_solr | 2019-02-28 15:01:09.854 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr
asset_solr | 2019-02-28 15:01:09.879 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2019-02-28T15:01:09.856Z
asset_solr | 2019-02-28 15:01:09.904 INFO (main) [ ] o.a.s.c.SolrResourceLoader Using system property solr.solr.home: /opt/solr/server/solr
asset_solr | 2019-02-28 15:01:09.913 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /opt/solr/server/solr/solr.xml
asset_solr | 2019-02-28 15:01:10.098 INFO (main) [ ] o.a.s.c.SolrResourceLoader [null] Added 0 libs to classloader, from paths: []
asset_solr | 2019-02-28 15:01:10.535 INFO (main) [ ] o.a.s.u.UpdateShardHandler Creating UpdateShardHandler HTTP client with params: socketTimeout=600000&connTimeout=60000&retry=true
asset_solr | 2019-02-28 15:01:10.727 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 0 core definitions underneath /opt/solr/server/solr
asset_solr | 2019-02-28 15:01:10.782 INFO (main) [ ] o.e.j.s.Server Started @2036ms
asset_solr | 2019-02-28 15:27:10.193 INFO (Thread-0) [ ] o.a.s.c.CoreContainer Shutting down CoreContainer instance=1254344205
asset_solr | 2019-02-28 15:27:10.230 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.node
asset_solr | 2019-02-28 15:27:10.251 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jvm
asset_solr | 2019-02-28 15:27:10.252 INFO (Thread-0) [ ] o.a.s.m.SolrMetricManager Closing metric reporters for: solr.jetty
asset_solr | 2019-02-28 15:27:10.257 INFO (Thread-0) [ ] o.a.s.c.TransientSolrCoreCacheDefault Allocating transient cache for 2147483647 transient cores
asset_solr | Starting Solr 6.6.5
asset_solr | 2019-02-28 15:27:16.127 INFO (main) [ ] o.e.j.s.Server jetty-9.3.14.v20161028
asset_solr | 2019-02-28 15:27:16.542 INFO (main) [ ] o.a.s.s.SolrDispatchFilter ___ _ Welcome to Apache Solr™ version 6.6.5
asset_solr | 2019-02-28 15:27:16.542 INFO (main) [ ] o.a.s.s.SolrDispatchFilter / __| ___| |_ _ Starting in standalone mode on port 8983
asset_solr | 2019-02-28 15:27:16.543 INFO (main) [ ] o.a.s.s.SolrDispatchFilter \__ \/ _ \ | '_| Install dir: /opt/solr
asset_solr | 2019-02-28 15:27:16.564 INFO (main) [ ] o.a.s.s.SolrDispatchFilter |___/\___/_|_| Start time: 2019-02-28T15:27:16.545Z
asset_solr | 2019-02-28 15:27:16.582 INFO (main) [ ] o.a.s.c.SolrResourceLoader Using system property solr.solr.home: /opt/solr/server/solr
asset_solr | 2019-02-28 15:27:16.589 INFO (main) [ ] o.a.s.c.SolrXmlConfig Loading container configuration from /opt/solr/server/solr/solr.xml
asset_solr | 2019-02-28 15:27:16.718 INFO (main) [ ] o.a.s.c.SolrResourceLoader [null] Added 0 libs to classloader, from paths: []
asset_solr | 2019-02-28 15:27:17.037 INFO (main) [ ] o.a.s.u.UpdateShardHandler Creating UpdateShardHandler HTTP client with params: socketTimeout=600000&connTimeout=60000&retry=true
asset_solr | 2019-02-28 15:27:17.183 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 0 core definitions underneath /opt/solr/server/solr
asset_solr | 2019-02-28 15:27:17.235 INFO (main) [ ] o.e.j.s.Server Started @1670ms
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Compressed tables use zlib 1.2.11
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Using Linux native AIO
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Using SSE crc32 instructions
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Initializing buffer pool, size = 128.0M
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Completed initialization of buffer pool
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Highest supported file format is Barracuda.
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: 128 rollback segment(s) are active.
asset_mariadb | 2019-02-28 15:01:07 139731560176520 [Note] InnoDB: Waiting for purge to start
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 19774551852
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] Plugin 'FEEDBACK' is disabled.
asset_mariadb | 2019-02-28 15:01:08 139730980629224 [Note] InnoDB: Dumping buffer pool(s) not yet started
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] Server socket created on IP: '0.0.0.0'.
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Warning] 'proxies_priv' entry '@% root@f87f5e0022f6' ignored in --skip-name-resolve mode.
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] Reading of all Master_info entries succeded
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] Added new Master_info '' to hash table
asset_mariadb | 2019-02-28 15:01:08 139731560176520 [Note] mysqld: ready for connections.
asset_mariadb | Version: '10.1.36-MariaDB' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
asset_mariadb | 2019-02-28 15:27:10 139730978233064 [Note] mysqld: Normal shutdown
asset_mariadb | 2019-02-28 15:27:10 139730978233064 [Note] Event Scheduler: Purging the queue. 0 events
asset_mariadb | 2019-02-28 15:27:10 139730981006056 [Note] InnoDB: FTS optimize thread exiting.
asset_mariadb | 2019-02-28 15:27:10 139730978233064 [Note] InnoDB: Starting shutdown...
asset_mariadb | 2019-02-28 15:27:10 139730978233064 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
asset_mariadb | 2019-02-28 15:27:12 139730978233064 [Note] InnoDB: Shutdown completed; log sequence number 19866186808
asset_mariadb | 2019-02-28 15:27:12 139730978233064 [Note] mysqld: Shutdown complete
asset_mariadb |
asset_mariadb | 2019-02-28 15:27:13 140460730940296 [Note] mysqld (mysqld 10.1.36-MariaDB) starting as process 1 ...
asset_mariadb | 2019-02-28 15:27:13 140460730940296 [Warning] Could not increase number of max_open_files to more than 1024 (request: 8323)
asset_mariadb | 2019-02-28 15:27:13 140460730940296 [Warning] Changed limits: max_open_files: 1024 max_connections: 100 (was 100) table_cache: 447 (was 4096)
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Using mutexes to ref count buffer pool pages
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: The InnoDB memory heap is disabled
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Compressed tables use zlib 1.2.11
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Using Linux native AIO
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Using SSE crc32 instructions
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Initializing buffer pool, size = 128.0M
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Completed initialization of buffer pool
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Highest supported file format is Barracuda.
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: 128 rollback segment(s) are active.
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Waiting for purge to start
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] InnoDB: Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 19866186808
asset_mariadb | 2019-02-28 15:27:14 140460151393000 [Note] InnoDB: Dumping buffer pool(s) not yet started
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] Plugin 'FEEDBACK' is disabled.
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] Server socket created on IP: '0.0.0.0'.
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Warning] 'proxies_priv' entry '@% root@f87f5e0022f6' ignored in --skip-name-resolve mode.
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] Reading of all Master_info entries succeded
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] Added new Master_info '' to hash table
asset_mariadb | 2019-02-28 15:27:14 140460730940296 [Note] mysqld: ready for connections.
asset_mariadb | Version: '10.1.36-MariaDB' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MariaDB Server
asset_traefik | time="2019-02-28T15:15:08Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:18:03Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:18:03Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:18:03Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:18:15Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:18:15Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:18:15Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:18:17Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:18:17Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:18:17Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:19:44Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:19:44Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:19:44Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:19:46Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:19:46Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:19:46Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:26:34Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:26:34Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:26:34Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:26:37Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:26:37Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:26:37Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:27:10Z" level=info msg="I have to go..."
asset_traefik | time="2019-02-28T15:27:10Z" level=info msg="Stopping server gracefully"
asset_traefik | time="2019-02-28T15:27:10Z" level=info msg="Server stopped"
asset_traefik | time="2019-02-28T15:27:10Z" level=info msg="Shutting down"
asset_traefik | time="2019-02-28T15:27:13Z" level=info msg="Using TOML configuration file /etc/traefik/traefik.toml"
asset_traefik | time="2019-02-28T15:27:13Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics"
asset_traefik | time="2019-02-28T15:27:13Z" level=info msg="Traefik version v1.7.7 built on 2019-01-08_10:21:03AM"
asset_traefik | time="2019-02-28T15:27:13Z" level=info msg="\nStats collection is disabled.\nHelp us improve Traefik by turning this feature on :)\nMore details on: https://docs.traefik.io/basics/#collected-data\n"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Preparing server https &{Address::443 TLS:0xc0001a47e0 Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc0007044e0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Preparing server traefik &{Address::8080 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc000704500} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Starting server on :443"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Preparing server http &{Address::80 TLS:<nil> Redirect:0xc0003bee80 Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc0007044c0} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Starting server on :8080"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Starting server on :80"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Starting provider configuration.ProviderAggregator {}"
asset_traefik | time="2019-02-28T15:27:14Z" level=info msg="Starting provider *docker.Provider {\"Watch\":true,\"Filename\":\"\",\"Constraints\":null,\"Trace\":false,\"TemplateVersion\":2,\"DebugLogGeneratedTemplate\":false,\"Endpoint\":\"unix:///var/run/docker.sock\",\"Domain\":\"\",\"TLS\":null,\"ExposedByDefault\":true,\"UseBindPortIP\":false,\"SwarmMode\":false,\"Network\":\"\",\"SwarmModeRefreshSeconds\":15}"
asset_traefik | time="2019-02-28T15:27:15Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:27:15Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:27:15Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:27:28Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:27:28Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:27:28Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:29:44Z" level=info msg="Server configuration reloaded on :8080"
asset_traefik | time="2019-02-28T15:29:44Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:29:44Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:29:46Z" level=info msg="Server configuration reloaded on :80"
asset_traefik | time="2019-02-28T15:29:46Z" level=info msg="Server configuration reloaded on :443"
asset_traefik | time="2019-02-28T15:29:46Z" level=info msg="Server configuration reloaded on :8080"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.04s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.06s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.04s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.08s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.04s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.04s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_node | yarn install v1.9.2
asset_node | [1/4] Resolving packages...
asset_node | success Already up-to-date.
asset_node | Done in 0.07s.
asset_node | yarn run v1.9.2
asset_node | error Couldn't find a package.json file in "/var/www/html/docroot/sites/all/themes/bootstrap_sealedair"
asset_node | info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
asset_portainer | 2019/02/25 12:45:56 Templates already registered inside the database. Skipping template import.
asset_portainer | 2019/02/25 12:45:56 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
asset_portainer | 2019/02/25 12:45:56 Starting Portainer 1.20.0 on :9000
asset_portainer | 2019/02/25 12:52:44 Templates already registered inside the database. Skipping template import.
asset_portainer | 2019/02/25 12:52:44 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
asset_portainer | 2019/02/25 12:52:44 Starting Portainer 1.20.0 on :9000
asset_portainer | 2019/02/28 15:01:06 Templates already registered inside the database. Skipping template import.
asset_portainer | 2019/02/28 15:01:06 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
asset_portainer | 2019/02/28 15:01:06 Starting Portainer 1.20.0 on :9000
asset_portainer | 2019/02/28 15:27:13 Templates already registered inside the database. Skipping template import.
asset_portainer | 2019/02/28 15:27:13 Instance already has defined endpoints. Skipping the endpoint defined via CLI.
asset_portainer | 2019/02/28 15:27:13 Starting Portainer 1.20.0 on :9000
Hi, you may try to play with env vars with a default value of 60 in PHP container:
- PHP_MAX_INPUT_TIME
- PHP_DEFAULT_SOCKET_TIMEOUT
In my case, adding the following variables to the apache section at docker-compose.yml solved it:
APACHE_TIMEOUT: 6000
APACHE_FCGI_PROXY_TIMEOUT: 6000
@juampynr, thanks for that. Your settings worked for me also. I was facing a Drupal 7 Simple Test problem where the batch process would return a "504 Gateway Timeout Gateway" error.