cytopia / devilbox

A modern Docker LAMP stack and MEAN stack for local development
http://devilbox.org
MIT License
4.38k stars 652 forks source link

MySQL 8 Won't Start / Connect #845

Closed redesigned closed 2 years ago

redesigned commented 2 years ago

ISSUE TYPE

Checklist

OS / ENVIRONMENT

  1. Host operating system and version: Windows 11 Pro 22478 WSL2 Ubuntu 18.04.6 LTS
  2. (Windows only) Native Docker or Docker Toolbox: Docker Desktop 4.0.1 / Docker 20.10.8
  3. Docker version: 20.10.8
  4. Docker Compose version: 1.29.2
  5. (Linux) Is SELinux enabled?: no
  6. What git commit hash are you on?: 23a6aed10d25986cb1d97b64d04b67898008bbf6

SUMMARY

Fresh Install of Devilbox, default .env everything starts up fine. switch to mysql-5.7 everything starts up fine. switch to mysql-8.0 and mysql won't start or connect.

STEPS TO REPRODUCE

Comment out mariadb and uncomment mysql-8.0 in .env restart devilbox

EXPECTED BEHAVIOUR

mysql-8.0 works

ACTUAL BEHAVIOUR

mysql-8.0 can't be connected to.

OTHER INFORMATION

Start command

$ docker-compose up

Outputs

$ ./check-config.sh

# ==============================================================================
# Checking git
# ==============================================================================
[SUCC]  git is clean

# ==============================================================================
# Checking .env file
# ==============================================================================
[SUCC]  .env file exists
[SUCC]  .env file is readable
[SUCC]  All variables are present in .env file
[SUCC]  No variables is duplicated in .env file

# ==============================================================================
# Checking .env file values
# ==============================================================================
[SUCC]  All .env file variables have correct values

# ==============================================================================
# Checking required Devilbox core directories exist
# ==============================================================================
[SUCC]  All PHP cfg/ sub directories are present
[SUCC]  All PHP log/ sub directories are present
[SUCC]  All PHP mod/ sub directories are present
[SUCC]  All HTTPD cfg/ sub directories are present
[SUCC]  All HTTPD log/ sub directories are present

# ==============================================================================
# Checking devilbox core directory permissions
# ==============================================================================
[SUCC]  All devilbox directories have correct permissions
[SUCC]  All devilbox directories have correct uid
[SUCC]  All devilbox directories have correct gid

# ==============================================================================
# Checking devilbox core file permissions
# ==============================================================================
[SUCC]  All devilbox files have correct permissions
[SUCC]  All devilbox files have correct uid
[SUCC]  All devilbox files have correct gid

# ==============================================================================
# Checking projects permissions
# ==============================================================================
[SUCC]  All project dirs have correct permissions
[SUCC]  All project dirs have correct uid
[SUCC]  All project dirs have correct gid

# ==============================================================================
# Checking projects settings
# ==============================================================================
[SUCC]  All projects have valid DNS records
[SUCC]  All projects have valid HTTPD_DOCROOT_DIR

# ==============================================================================
# Checking customizations
# ==============================================================================
[INFO]  No custom configurations applied

# ==============================================================================
# SUMMARY
# ==============================================================================
[SUCC]  Found no errors
[INFO]  No custom configurations applied
[INFO]  Ensure to run 'docker-compose stop; docker-compose rm -f' on .env changes or custom configs
$ docker-compose logs

Attaching to devilbox_pgsql_1, devilbox_mysql_1, devilbox_mongo_1, devilbox_redis_1, devilbox_memcd_1, devilbox_httpd_1, devilbox_php_1, devilbox_bind_1
memcd_1  | Signal handled: Terminated.
httpd_1  | [INFO] Debug level: 2
httpd_1  | [INFO] Runtime debug: 2
httpd_1  | [INFO] Changing user 'nginx' uid to: 1000
httpd_1  | root $ usermod -u 1000 nginx
httpd_1  | [INFO] Changing group 'nginx' gid to: 1000
httpd_1  | root $ groupmod -g 1000 nginx
httpd_1  | [INFO] Setting container timezone to: UTC
httpd_1  | root $ ln -sf /usr/share/zoneinfo/UTC /etc/localtime
httpd_1  | [INFO] Docker date set to: Sat Oct 16 04:20:56 UTC 2021
httpd_1  | [INFO] $WORKER_PROCESSES set to its default value: 'auto'.
httpd_1  | root $ sed -i'' 's/__WORKER_PROCESSES__/auto/g' /etc/nginx/nginx.conf
httpd_1  | [INFO] Setting worker_connections to: 1024
httpd_1  | root $ sed -i'' 's/__WORKER_CONNECTIONS__/1024/g' /etc/nginx/nginx.conf
httpd_1  | [INFO] $DOCKER_LOGS disabled. Logging errors and access to log files inside container.
httpd_1  | [INFO] PHP-FPM: Enabled
httpd_1  | [INFO] PHP-FPM: Server address: 172.16.238.10
httpd_1  | [INFO] PHP-FPM: Server port: 9000
httpd_1  | [INFO] PHP-FPM: Timeout: 180
httpd_1  | [INFO] Main vhost: Enabled
httpd_1  | [INFO] Main vhost: Setting SSL type to: http and https
httpd_1  | [INFO] Main vhost: Enable automatic generation of SSL certificates
httpd_1  | [INFO] Main vhost: SSL CN: localhost,*.localhost,devilbox,*.devilbox,httpd
httpd_1  | [INFO] $MAIN_VHOST_DOCROOT not specified. Keeping default: htdocs
httpd_1  | [INFO] $MAIN_VHOST_TPL not specified. Keeping default: cfg
httpd_1  | [INFO] Main vhost: Enabling httpd status page
httpd_1  | [INFO] Main vhost: Changing status page alias to: /devilbox-httpd-status
httpd_1  | [INFO] Mass vhost: Enabled
httpd_1  | [INFO] Mass vhost: Setting SSL type to: http and https
httpd_1  | [INFO] Mass vhost: Enable automatic generation of SSL certificates
httpd_1  | [INFO] Mass vhost: changing tld to: .loc
httpd_1  | [INFO] Mass vhost: changing document root to: htdocs
httpd_1  | [INFO] Mass vhost: changing template dir to: .devilbox
httpd_1  | [INFO] vhost-gen: no customized template found
httpd_1  | root $ sed -i'' 's/__PHP_ENABLE__/yes/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_ADDR__/172.16.238.10/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_PORT__/9000/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_TIMEOUT__/180/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_ENABLE__/yes/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_ADDR__/172.16.238.10/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_PORT__/9000/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_TIMEOUT__/180/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ERROR__/no/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ACCESS__/no/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ERROR__/no/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ACCESS__/no/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's|__ENABLE_STATUS__|yes|g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's|__STATUS_ALIAS__|/devilbox-httpd-status|g' /etc/vhost-gen/main.yml
httpd_1  | root $ vhost-gen -n localhost -p /var/www/default/htdocs -t /etc/vhost-gen/templates-main/ -c /etc/vhost-gen/main.yml -o /var/www/default/cfg -v -d -s -m both
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading configuration file        (-c): /etc/vhost-gen/main.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading vhost template (global)   (-t): /etc/vhost-gen/templates-main/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading vhost template (override) (-o): /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [WARN]  (2021-10-16 04:20:56): Override Vhost template not found: /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Creating vhost type: https and http (both)
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Using vhost name: localhost
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Log setting: dir -> True
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Log setting: Not specified
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Vhost config written to: /etc/httpd/conf.d/localhost.conf
httpd_1  | root $ sed -i'' 's|__DOCROOT_SUFFIX__|htdocs|g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__TLD__/.loc/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ mkdir -p /etc/httpd/cert/main
httpd_1  | root $ cert-gen -v -c DE -s Berlin -l Berlin -o Devilbox -u Devilbox -n 'localhost' -e 'admin@localhost' -a 'localhost *.localhost devilbox *.devilbox httpd' /ca/devilbox-ca.key /ca/devilbox-ca.crt /etc/httpd/cert/main/localhost.key /etc/httpd/cert/main/localhost.csr /etc/httpd/cert/main/localhost.crt
httpd_1  | $ openssl req -newkey rsa:2048 -sha256 -nodes -extensions v3_req -config <(echo "[req]
httpd_1  | distinguished_name = req_distinguished_name
httpd_1  | x509_extensions = v3_req
httpd_1  |
httpd_1  | [req_distinguished_name]
httpd_1  |
httpd_1  | [ v3_req ]
httpd_1  | basicConstraints = critical, CA:FALSE
httpd_1  | subjectKeyIdentifier = hash
httpd_1  | keyUsage = critical, digitalSignature, keyEncipherment
httpd_1  | authorityKeyIdentifier = keyid:always,issuer:always
httpd_1  | extendedKeyUsage = serverAuth, clientAuth
httpd_1  | subjectAltName=${ALT_NAMES}") -keyout /etc/httpd/cert/main/localhost.key -subj '/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=localhost/emailAddress=admin@localhost' -out /etc/httpd/cert/main/localhost.csr
httpd_1  | $ openssl x509 -req -sha256 -extensions v3_req -extfile <(echo "[req]
httpd_1  | distinguished_name = req_distinguished_name
httpd_1  | x509_extensions = v3_req
httpd_1  |
httpd_1  | [req_distinguished_name]
httpd_1  |
httpd_1  | [ v3_req ]
httpd_1  | basicConstraints = critical, CA:FALSE
httpd_1  | subjectKeyIdentifier = hash
httpd_1  | keyUsage = critical, digitalSignature, keyEncipherment
httpd_1  | authorityKeyIdentifier = keyid:always,issuer:always
httpd_1  | extendedKeyUsage = serverAuth, clientAuth
httpd_1  | subjectAltName=${ALT_NAMES}") -days 825 -in /etc/httpd/cert/main/localhost.csr -CA /ca/devilbox-ca.crt -CAkey /ca/devilbox-ca.key -CAcreateserial -out /etc/httpd/cert/main/localhost.crt
httpd_1  | Certificate:
httpd_1  |     Data:
httpd_1  |         Version: 3 (0x2)
httpd_1  |         Serial Number:
httpd_1  |             6a:f0:f6:1d:be:8f:c8:e5:13:19:bd:46:97:e1:ec:e9:dc:b9:14:8c
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.326+00:00"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.329+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.329+00:00"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"STORAGE",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"mongo"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.10","gitVersion":"58971da1ef93435a9f62bf4708a81713def6e88c","openSSLVersion":"OpenSSL 1.1.1f  31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22270,   "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22297,   "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22315,   "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=3363M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.052+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:52853][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 29 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.124+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:124521][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 30 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.188+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:188783][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 29/4992 to 30/256"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.257+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:257932][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 29 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.305+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:305007][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 30 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.347+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:347026][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.347+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:347148][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.353+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:353069][1:0x7fdc3031ecc0], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 762"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.370+00:00"},"s":"I",  "c":"STORAGE",  "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1038}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.370+00:00"},"s":"I",  "c":"RECOVERY", "id":23987,   "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.372+00:00"},"s":"I",  "c":"STORAGE",  "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.373+00:00"},"s":"I",  "c":"STORAGE",  "id":22262,   "ctx":"initandlisten","msg":"Timestamp monitor starting"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.380+00:00"},"s":"W",  "c":"CONTROL",  "id":22120,   "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.380+00:00"},"s":"W",  "c":"CONTROL",  "id":22178,   "ctx":"initandlisten","msg":"/sys/kernel/mm/transparent_hugepage/enabled is 'always'. We suggest setting it to 'never'","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.383+00:00"},"s":"I",  "c":"STORAGE",  "id":20536,   "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.388+00:00"},"s":"I",  "c":"FTDC",     "id":20625,   "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.388+00:00"},"s":"I",  "c":"REPL",     "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23016,   "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.582+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51586","connectionId":1,"connectionCount":1}}
httpd_1  |         Signature Algorithm: sha256WithRSAEncryption
httpd_1  |         Issuer: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = Devilbox Root CA, emailAddress = cytopia@devilbox.org, dnQualifier = kRAsENZQQ2b/sP2Fnp5jxwYTpzw=
httpd_1  |         Validity
httpd_1  |             Not Before: Oct 16 04:20:56 2021 GMT
httpd_1  |             Not After : Jan 19 04:20:56 2024 GMT
httpd_1  |         Subject: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = localhost, emailAddress = admin@localhost
httpd_1  |         Subject Public Key Info:
httpd_1  |             Public Key Algorithm: rsaEncryption
httpd_1  |                 RSA Public-Key: (2048 bit)
httpd_1  |                 Modulus:
httpd_1  |                     00:b4:f0:05:96:48:ae:7d:0d:ef:4b:8f:7f:2d:97:
httpd_1  |                     ad:b4:a3:ee:3e:18:ab:70:17:81:f8:cb:f3:97:b4:
httpd_1  |                     ba:af:97:70:3f:fa:74:f1:9f:bb:8c:c8:d6:6e:73:
httpd_1  |                     5c:b3:86:cb:2a:4c:34:35:ed:62:70:05:76:51:12:
httpd_1  |                     75:0e:0b:3b:6d:0d:11:fe:ca:14:e9:7c:42:8e:1f:
httpd_1  |                     56:72:7a:87:0a:fb:8d:0b:6f:b2:e2:4a:bd:fd:0c:
httpd_1  |                     db:17:f6:fc:55:cd:b8:a3:db:e9:ec:39:ae:0c:90:
httpd_1  |                     8c:7b:80:53:2a:8b:39:f4:71:ae:d2:9b:9b:c5:02:
httpd_1  |                     ba:2c:36:c0:d3:6d:87:07:ff:f3:62:4d:4d:54:7d:
httpd_1  |                     9e:ce:dd:41:20:e1:eb:88:48:b2:4d:d2:69:79:d5:
httpd_1  |                     80:fb:27:2a:39:35:3d:74:4b:59:19:27:5a:8a:9e:
httpd_1  |                     e0:55:45:7a:09:de:65:83:52:76:cf:58:90:4f:24:
httpd_1  |                     a6:ef:8b:37:2e:89:42:d6:35:d4:75:c2:3d:c2:93:
httpd_1  |                     9c:a2:53:3d:0b:e6:16:c2:f8:99:9b:01:a5:57:14:
httpd_1  |                     a7:40:5a:c2:89:a3:94:76:cf:1b:8d:9d:51:89:9b:
httpd_1  |                     26:8e:9b:70:00:f9:81:0f:67:82:7c:84:b7:1c:4a:
httpd_1  |                     b3:5b:19:14:62:c8:8f:85:55:29:e7:7d:5e:f3:03:
httpd_1  |                     1d:89
httpd_1  |                 Exponent: 65537 (0x10001)
httpd_1  |         X509v3 extensions:
httpd_1  |             X509v3 Basic Constraints: critical
httpd_1  |                 CA:FALSE
httpd_1  |             X509v3 Subject Key Identifier:
httpd_1  |                 3F:F5:A0:60:1E:CB:F6:C3:18:92:FA:94:76:CA:60:4B:CC:3D:56:F7
httpd_1  |             X509v3 Key Usage: critical
httpd_1  |                 Digital Signature, Key Encipherment
httpd_1  |             X509v3 Authority Key Identifier:
httpd_1  |                 keyid:91:10:2C:10:D6:50:43:66:FF:B0:FD:85:9E:9E:63:C7:06:13:A7:3C
httpd_1  |                 DirName:/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=Devilbox Root CA/emailAddress=cytopia@devilbox.org/dnQualifier=kRAsENZQQ2b/sP2Fnp5jxwYTpzw=
httpd_1  |                 serial:5B:3F:7C:53:1F:60:40:05:9C:F6:D0:D3:15:1D:76:1F:D2:5F:D5:92
httpd_1  |
httpd_1  |             X509v3 Extended Key Usage:
httpd_1  |                 TLS Web Server Authentication, TLS Web Client Authentication
httpd_1  |             X509v3 Subject Alternative Name:
httpd_1  |                 DNS:localhost, DNS:localhost, DNS:*.localhost, DNS:devilbox, DNS:*.devilbox, DNS:httpd
httpd_1  |     Signature Algorithm: sha256WithRSAEncryption
httpd_1  |          c2:6f:3b:be:fa:16:f6:a1:6a:66:0b:2a:94:5b:c1:7a:15:e8:
httpd_1  |          d7:40:dd:58:72:17:d5:dd:27:0f:93:7e:dc:bc:da:34:a4:9d:
httpd_1  |          e4:19:56:43:33:6a:6e:0e:98:49:86:ac:2a:8e:97:7d:9c:b6:
httpd_1  |          a3:ca:8f:88:46:0f:55:b6:c6:28:a3:df:73:69:8f:1e:80:c1:
httpd_1  |          24:21:32:d1:ac:36:e6:ec:2c:90:df:85:10:f5:a1:db:e0:11:
httpd_1  |          f5:d6:5e:fa:5d:05:62:4c:db:9d:30:e5:de:0a:58:54:24:74:
httpd_1  |          ce:c8:f4:b5:f7:d2:fe:d3:40:66:78:81:71:10:74:27:c6:e4:
httpd_1  |          33:88:94:49:ac:53:3f:a4:24:83:97:51:75:99:33:00:61:ce:
httpd_1  |          e2:03:a2:3c:a1:4f:05:c0:7d:22:1b:69:81:f5:56:ff:66:28:
httpd_1  |          82:82:11:ee:ed:f6:32:0a:22:df:84:08:94:56:c7:8d:bf:4c:
httpd_1  |          91:c1:64:88:63:f2:c3:50:6e:7c:fd:da:1d:49:2f:7b:3d:e5:
httpd_1  |          cd:42:88:d7:55:e3:e3:f4:df:42:71:36:1f:25:a0:23:d1:ef:
httpd_1  |          a2:ab:21:7e:8f:c3:92:5b:53:59:65:d5:f2:82:21:e1:a0:dc:
httpd_1  |          4b:0a:03:aa:1f:64:2f:2f:4d:10:36:e9:95:2d:65:0a:19:0d:
httpd_1  |          c5:64:66:e2
httpd_1  | /etc/httpd/cert/main/localhost.crt: OK
httpd_1  | root $ chown -R 1000:1000 /ca
httpd_1  | [INFO] Starting supervisord: 3.3.5
httpd_1  | 2021-10-16 04:20:56,868 INFO Set uid to user 0 succeeded
httpd_1  | 2021-10-16 04:20:56,870 INFO supervisord started with pid 1
httpd_1  | 2021-10-16 04:20:57,871 INFO spawned: 'httpd' with pid 236
httpd_1  | 2021-10-16 04:20:57,873 INFO spawned: 'watcherd' with pid 237
httpd_1  | 2021-10-16 04:20:58,875 INFO success: httpd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | 2021-10-16 04:20:58,875 INFO success: watcherd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | watcherd: [2021-10-16 04:21:00] Starting daemon.
httpd_1  | watcherd: [2021-10-16 04:21:00] Using bash loop to watch for changes.
httpd_1  | 2021-10-16 04:22:02,877 WARN received SIGTERM indicating exit request
httpd_1  | 2021-10-16 04:22:02,878 INFO waiting for httpd, watcherd to die
httpd_1  | 2021-10-16 04:22:02,878 INFO stopped: watcherd (terminated by SIGTERM)
httpd_1  | 2021-10-16 04:22:03,020 INFO stopped: httpd (exit status 0)
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.582+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.16.238.10:51586","client":"conn1","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.629+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51628","connectionId":2,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.629+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.16.238.10:51628","client":"conn2","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.632+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51632","connectionId":3,"connectionCount":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.633+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.16.238.10:51632","client":"conn3","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.579+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51678","connectionId":4,"connectionCount":4}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.579+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn4","msg":"client metadata","attr":{"remote":"172.16.238.10:51678","client":"conn4","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.638+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51720","connectionId":5,"connectionCount":5}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.638+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn5","msg":"client metadata","attr":{"remote":"172.16.238.10:51720","client":"conn5","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.641+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51724","connectionId":6,"connectionCount":6}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.641+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn6","msg":"client metadata","attr":{"remote":"172.16.238.10:51724","client":"conn6","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.211+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn3","msg":"Connection ended","attr":{"remote":"172.16.238.10:51632","connectionId":3,"connectionCount":5}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.212+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn2","msg":"Connection ended","attr":{"remote":"172.16.238.10:51628","connectionId":2,"connectionCount":4}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.212+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn1","msg":"Connection ended","attr":{"remote":"172.16.238.10:51586","connectionId":1,"connectionCount":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.222+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn6","msg":"Connection ended","attr":{"remote":"172.16.238.10:51724","connectionId":6,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.223+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn5","msg":"Connection ended","attr":{"remote":"172.16.238.10:51720","connectionId":5,"connectionCount":1}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.223+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn4","msg":"Connection ended","attr":{"remote":"172.16.238.10:51678","connectionId":4,"connectionCount":0}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23377,   "ctx":"SignalHandler","msg":"Received signal","attr":{"signal":15,"error":"Terminated"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23378,   "ctx":"SignalHandler","msg":"Signal was sent by kill(2)","attr":{"pid":0,"uid":0}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23381,   "ctx":"SignalHandler","msg":"will terminate after current cmd ends"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"REPL",     "id":4784900, "ctx":"SignalHandler","msg":"Stepping down the ReplicationCoordinator for shutdown","attr":{"waitTimeMillis":10000}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"COMMAND",  "id":4784901, "ctx":"SignalHandler","msg":"Shutting down the MirrorMaestro"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"SHARDING", "id":4784902, "ctx":"SignalHandler","msg":"Shutting down the WaitForMajorityService"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":4784903, "ctx":"SignalHandler","msg":"Shutting down the LogicalSessionCache"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.333+00:00"},"s":"I",  "c":"NETWORK",  "id":20562,   "ctx":"SignalHandler","msg":"Shutdown: going to close listening sockets"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"NETWORK",  "id":23017,   "ctx":"listener","msg":"removing socket file","attr":{"path":"/tmp/mongodb-27017.sock"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"NETWORK",  "id":4784905, "ctx":"SignalHandler","msg":"Shutting down the global connection pool"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784906, "ctx":"SignalHandler","msg":"Shutting down the FlowControlTicketholder"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"-",        "id":20520,   "ctx":"SignalHandler","msg":"Stopping further Flow Control ticket acquisitions."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784908, "ctx":"SignalHandler","msg":"Shutting down the PeriodicThreadToAbortExpiredTransactions"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784934, "ctx":"SignalHandler","msg":"Shutting down the PeriodicThreadToDecreaseSnapshotHistoryCachePressure"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784909, "ctx":"SignalHandler","msg":"Shutting down the ReplicationCoordinator"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"SHARDING", "id":4784910, "ctx":"SignalHandler","msg":"Shutting down the ShardingInitializationMongoD"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784911, "ctx":"SignalHandler","msg":"Enqueuing the ReplicationStateTransitionLock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"-",        "id":4784912, "ctx":"SignalHandler","msg":"Killing all operations for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"-",        "id":4695300, "ctx":"SignalHandler","msg":"Interrupted all currently running operations","attr":{"opsKilled":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"COMMAND",  "id":4784913, "ctx":"SignalHandler","msg":"Shutting down all open transactions"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784914, "ctx":"SignalHandler","msg":"Acquiring the ReplicationStateTransitionLock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"INDEX",    "id":4784915, "ctx":"SignalHandler","msg":"Shutting down the IndexBuildsCoordinator"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784916, "ctx":"SignalHandler","msg":"Reacquiring the ReplicationStateTransitionLock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784917, "ctx":"SignalHandler","msg":"Attempting to mark clean shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"NETWORK",  "id":4784918, "ctx":"SignalHandler","msg":"Shutting down the ReplicaSetMonitor"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"SHARDING", "id":4784921, "ctx":"SignalHandler","msg":"Shutting down the MigrationUtilExecutor"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"CONTROL",  "id":4784925, "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"CONTROL",  "id":20609,   "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784927, "ctx":"SignalHandler","msg":"Shutting down the HealthLog"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784929, "ctx":"SignalHandler","msg":"Acquiring the global lock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784930, "ctx":"SignalHandler","msg":"Shutting down the storage engine"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":22320,   "ctx":"SignalHandler","msg":"Shutting down journal flusher thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":22321,   "ctx":"SignalHandler","msg":"Finished shutting down journal flusher thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":20282,   "ctx":"SignalHandler","msg":"Deregistering all the collections"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.340+00:00"},"s":"I",  "c":"STORAGE",  "id":22261,   "ctx":"SignalHandler","msg":"Timestamp monitor shutting down"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.340+00:00"},"s":"I",  "c":"STORAGE",  "id":22317,   "ctx":"SignalHandler","msg":"WiredTigerKVEngine shutting down"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.341+00:00"},"s":"I",  "c":"STORAGE",  "id":22318,   "ctx":"SignalHandler","msg":"Shutting down session sweeper thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.341+00:00"},"s":"I",  "c":"STORAGE",  "id":22319,   "ctx":"SignalHandler","msg":"Finished shutting down session sweeper thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":22322,   "ctx":"SignalHandler","msg":"Shutting down checkpoint thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":22323,   "ctx":"SignalHandler","msg":"Finished shutting down checkpoint thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":4795902, "ctx":"SignalHandler","msg":"Closing WiredTiger","attr":{"closeConfig":"leak_memory=true,"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.346+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"SignalHandler","msg":"WiredTiger message","attr":{"message":"[1634358119:346372][1:0x7fdc3031d700], close_ckpt: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 4, snapshot max: 4 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 762"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"STORAGE",  "id":4795901, "ctx":"SignalHandler","msg":"WiredTiger closed","attr":{"durationMillis":35}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"STORAGE",  "id":22279,   "ctx":"SignalHandler","msg":"shutdown: removing fs lock..."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"-",        "id":4784931, "ctx":"SignalHandler","msg":"Dropping the scope cache for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"FTDC",     "id":4784926, "ctx":"SignalHandler","msg":"Shutting down full-time data capture"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"FTDC",     "id":20626,   "ctx":"SignalHandler","msg":"Shutting down full-time diagnostic data capture"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.380+00:00"},"s":"I",  "c":"CONTROL",  "id":20565,   "ctx":"SignalHandler","msg":"Now exiting"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.381+00:00"},"s":"I",  "c":"CONTROL",  "id":23138,   "ctx":"SignalHandler","msg":"Shutting down","attr":{"exitCode":0}}
bind_1   | [INFO] Debug level: 2
bind_1   | [INFO] BIND logging: disabled explicitly
bind_1   | [INFO] Using default DNS TTL time: 3600 sec
bind_1   | [INFO] Using default DNS Refresh time: 1200 sec
bind_1   | [INFO] Using default DNS Retry time: 180 sec
bind_1   | [INFO] Using default DNS Expiry time: 1209600 sec
bind_1   | [INFO] Using default DNS Max Cache time: 10800 sec
bind_1   | [INFO] Adding wildcard DNS: *.loc -> 127.0.0.1
bind_1   |
bind_1   | zone loc/IN: loaded serial 1634358052
bind_1   | OK
bind_1   | [INFO] Not adding any extra hosts
bind_1   | [INFO] DNSSEC Validation: no
bind_1   | [INFO] Adding custom DNS forwarder: 8.8.8.8,8.8.4.4
bind_1   | [INFO] Starting BIND 9.11.3
mysql_1  | 2021-10-16 04:21:01+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | 2021-10-16 04:21:02+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
mysql_1  | 2021-10-16 04:21:02+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | 2021-10-16T04:21:02.381993Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 1
mysql_1  | 2021-10-16T04:21:02.391296Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
mysql_1  | 2021-10-16T04:21:02.569431Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
mysql_1  | 2021-10-16T04:21:02.743830Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
mysql_1  | 2021-10-16T04:21:02.918059Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
mysql_1  | 2021-10-16T04:21:02.918330Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
mysql_1  | 2021-10-16T04:21:02.923386Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
mysql_1  | 2021-10-16T04:21:02.963092Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.22'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server - GPL.
mysql_1  | 2021-10-16T04:21:59.329655Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user <via user signal>. Shutting down mysqld (Version: 8.0.22).
mysql_1  | 2021-10-16T04:22:00.250317Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22)  MySQL Community Server - GPL.
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # Redis version=6.0.16, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis_1  | 1:M 16 Oct 2021 04:21:00.577 * Running mode=standalone, port=6379.
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # Server initialized
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo madvise > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled (set to 'madvise' or 'never').
redis_1  | 1:M 16 Oct 2021 04:21:00.582 * Ready to accept connections
redis_1  | 1:signal-handler (1634358119) Received SIGTERM scheduling shutdown...
redis_1  | 1:M 16 Oct 2021 04:21:59.372 # User requested shutdown...
redis_1  | 1:M 16 Oct 2021 04:21:59.372 * Saving the final RDB snapshot before exiting.
redis_1  | 1:M 16 Oct 2021 04:21:59.375 * DB saved on disk
redis_1  | 1:M 16 Oct 2021 04:21:59.375 # Redis is now ready to exit, bye bye...
pgsql_1  |
pgsql_1  | PostgreSQL Database directory appears to contain a database; Skipping initialization
pgsql_1  |
pgsql_1  | 2021-10-16 04:21:01.895 UTC [1] LOG:  starting PostgreSQL 13.0 (Debian 13.0-1.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
pgsql_1  | 2021-10-16 04:21:01.938 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
pgsql_1  | 2021-10-16 04:21:01.938 UTC [1] LOG:  listening on IPv6 address "::", port 5432
pgsql_1  | 2021-10-16 04:21:01.946 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
pgsql_1  | 2021-10-16 04:21:01.954 UTC [27] LOG:  database system was shut down at 2021-10-16 04:20:20 UTC
pgsql_1  | 2021-10-16 04:21:01.960 UTC [1] LOG:  database system is ready to accept connections
pgsql_1  | 2021-10-16 04:21:59.338 UTC [1] LOG:  received fast shutdown request
pgsql_1  | 2021-10-16 04:21:59.342 UTC [1] LOG:  aborting any active transactions
pgsql_1  | 2021-10-16 04:21:59.345 UTC [1] LOG:  background worker "logical replication launcher" (PID 33) exited with exit code 1
pgsql_1  | 2021-10-16 04:21:59.345 UTC [28] LOG:  shutting down
pgsql_1  | 2021-10-16 04:21:59.379 UTC [1] LOG:  database system is shut down
php_1    | [INFO] Debug level: 2
php_1    | [INFO] Changing user 'devilbox' uid to: 1000
php_1    | root $ usermod -u 1000 devilbox 2>/dev/null
php_1    | root $ chown -R devilbox /home/devilbox 2>/dev/null || true
php_1    | root $ chown -R devilbox /var/lib/php/session
php_1    | root $ chown -R devilbox /var/lib/php/wsdlcache
php_1    | root $ chown -R devilbox /var/spool/mail/devilbox
php_1    | root $ chown -R devilbox /etc/supervisor/custom.d
php_1    | [INFO] Changing group 'devilbox' gid to: 1000
php_1    | root $ groupmod -g 1000 devilbox 2>/dev/null
php_1    | root $ chown -R :devilbox /home/devilbox 2>/dev/null || true
php_1    | root $ chown -R :devilbox /var/lib/php/session
php_1    | root $ chown -R :devilbox /var/lib/php/wsdlcache
php_1    | root $ chown -R :devilbox /var/spool/mail/devilbox
php_1    | root $ chown -R :devilbox /etc/supervisor/custom.d
php_1    | [INFO] Setting container timezone to: UTC
php_1    | root $ ln -sf /usr/share/zoneinfo/UTC /etc/localtime
php_1    | [INFO] Setting PHP: timezone=UTC
php_1    | root $ echo 'date.timezone = UTC' > /usr/local/etc/php/conf.d/devilbox-runtime-timezone.ini
php_1    | [INFO] Docker date set to: Sat Oct 16 04:20:54 UTC 2021
php_1    | [INFO] $DOCKER_LOGS set to 0. Logging to files under: /var/log/php
php_1    | [INFO] Make sure to mount this directory in order to view logs
php_1    | root $ chown -R devilbox:devilbox /var/log/php
php_1    | root $ chmod 0755 /var/log/php
php_1    | [INFO] $ENABLE_MAIL set to 2. Enabling postfix catch-all
php_1    | root $ chown devilbox:devilbox /var/log/php
php_1    | root $ chown devilbox:devilbox /var/log/php/mail.log
php_1    | root $ chmod 0644 /var/log/php/mail.log
php_1    | root $ chmod 0644 /var/mail/devilbox
php_1    | root $ chown devilbox:devilbox /var/mail
php_1    | root $ chown devilbox:devilbox /var/mail/devilbox
php_1    | root $ postconf -e 'strict_mailbox_ownership=no'
php_1    | root $ postconf -e 'inet_protocols=ipv4'
php_1    | root $ postconf -e 'virtual_alias_maps=pcre:/etc/postfix/virtual'
php_1    | root $ echo '/.*@.*/ devilbox' >> /etc/postfix/virtual
php_1    | root $ newaliases
php_1    | [INFO] Forwarding httpd:80 to 127.0.0.1:80 inside this docker.
php_1    | [INFO] Forwarding httpd:443 to 127.0.0.1:443 inside this docker.
php_1    | [INFO] Forwarding mysql:3306 to 127.0.0.1:3306 inside this docker.
php_1    | [INFO] Forwarding pgsql:5432 to 127.0.0.1:5432 inside this docker.
php_1    | [INFO] Forwarding redis:6379 to 127.0.0.1:6379 inside this docker.
php_1    | [INFO] Forwarding memcd:11211 to 127.0.0.1:11211 inside this docker.
php_1    | [INFO] Forwarding mongo:27017 to 127.0.0.1:27017 inside this docker.
php_1    | [INFO] Enabling 'socat-80-httpd-80' to be started by supervisord
php_1    | [INFO] Enabling 'socat-443-httpd-443' to be started by supervisord
php_1    | [INFO] Enabling 'socat-3306-mysql-3306' to be started by supervisord
php_1    | [INFO] Enabling 'socat-5432-pgsql-5432' to be started by supervisord
php_1    | [INFO] Enabling 'socat-6379-redis-6379' to be started by supervisord
php_1    | [INFO] Enabling 'socat-11211-memcd-11211' to be started by supervisord
php_1    | [INFO] Enabling 'socat-27017-mongo-27017' to be started by supervisord
php_1    | [INFO] Enabling 'rsyslogd' to be started by supervisord
php_1    | [INFO] Enabling 'postfix' to be started by supervisord
php_1    | [INFO] Enabling 'php-fpm' to be started by supervisord
php_1    | root $ find /usr/local/etc/php/conf.d -type f -iname '*.ini' -exec chmod 0644 "{}" \;
php_1    | root $ find /usr/local/etc/php-fpm.d -type f -iname '*.conf' -exec chmod 0644 "{}" \;
php_1    | [INFO] $ENABLE_MODULES set, but empty. Not enabling any PHP modules.
php_1    | [INFO] Disabling the following PHP modules: oci8,PDO_OCI,pdo_sqlsrv,sqlsrv,rdkafka,swoole
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-oci8.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-pdo_sqlsrv.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-sqlsrv.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-rdkafka.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-swoole.ini
php_1    | root $ chown devilbox:devilbox /etc/mysqldump-secure.conf
php_1    | root $ chown devilbox:devilbox /etc/mysqldump-secure.cnf
php_1    | root $ chown devilbox:devilbox /var/log/mysqldump-secure.log
php_1    | root $ chown devilbox:devilbox /shared/backups/mysql
php_1    | [INFO] $MYSQL_BACKUP_USER set for mysqldump-secure. Changing to 'root'
php_1    | root $ sed -i'' 's/^user.*/user = root/g' /etc/mysqldump-secure.cnf
php_1    | [INFO] $MYSQL_BACKUP_PASS set for mysqldump-secure. Changing to '******'
php_1    | root $ perl -pi -e 's/^password.*/password = /g' /etc/mysqldump-secure.cnf
php_1    | [INFO] $MYSQL_BACKUP_HOST set for mysqldump-secure. Changing to 'mysql'
php_1    | root $ sed -i'' 's/^host.*/host = mysql/g' /etc/mysqldump-secure.cnf
php_1    | root $ chown devilbox:devilbox /shared/backups
php_1    | root $ chown devilbox:devilbox /shared/httpd
php_1    | root $ chmod 0755 /shared/backups
php_1    | root $ chmod 0755 /shared/httpd
php_1    | root $ cp /ca/devilbox-ca.crt /usr/local/share/ca-certificates/devilbox-devilbox-ca.crt
php_1    | root $ update-ca-certificates
php_1    | Updating certificates in /etc/ssl/certs...
php_1    | 1 added, 0 removed; done.
php_1    | Running hooks in /etc/ca-certificates/update.d...
php_1    | done.
php_1    | [INFO] Starting supervisord
php_1    | 2021-10-16 04:20:58,053 WARN No file matches via include "/etc/supervisor/custom.d/*.conf"
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/php-fpm.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/postfix.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/rsyslogd.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-11211-memcd-11211.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-27017-mongo-27017.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-3306-mysql-3306.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-443-httpd-443.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-5432-pgsql-5432.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-6379-redis-6379.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-80-httpd-80.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Set uid to user 0 succeeded
php_1    | 2021-10-16 04:20:58,055 INFO supervisord started with pid 1
php_1    | 2021-10-16 04:20:59,059 INFO spawned: 'rsyslogd' with pid 1553
php_1    | 2021-10-16 04:20:59,062 INFO spawned: 'socat-3306-mysql-3306' with pid 1554
php_1    | 2021-10-16 04:20:59,065 INFO spawned: 'socat-6379-redis-6379' with pid 1555
php_1    | 2021-10-16 04:20:59,067 INFO spawned: 'postfix' with pid 1556
php_1    | 2021-10-16 04:20:59,069 INFO spawned: 'socat-27017-mongo-27017' with pid 1557
php_1    | 2021-10-16 04:20:59,071 INFO spawned: 'php-fpm' with pid 1560
php_1    | 2021-10-16 04:20:59,073 INFO spawned: 'socat-80-httpd-80' with pid 1562
php_1    | 2021-10-16 04:20:59,076 INFO spawned: 'socat-443-httpd-443' with pid 1563
php_1    | 2021-10-16 04:20:59,078 INFO spawned: 'socat-11211-memcd-11211' with pid 1564
php_1    | 2021-10-16 04:20:59,079 INFO spawned: 'socat-5432-pgsql-5432' with pid 1565
php_1    | rsyslogd: imklog: cannot open kernel log (/proc/kmsg): Operation not permitted.
php_1    | rsyslogd: activation of module imklog failed [v8.1901.0 try https://www.rsyslog.com/e/2145 ]
php_1    | 2021-10-16 04:21:00,144 INFO success: rsyslogd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: socat-3306-mysql-3306 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: socat-6379-redis-6379 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: postfix entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-27017-mongo-27017 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-80-httpd-80 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-443-httpd-443 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-11211-memcd-11211 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-5432-pgsql-5432 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:22:04,339 WARN received SIGQUIT indicating exit request
php_1    | 2021-10-16 04:22:04,339 INFO waiting for socat-3306-mysql-3306, socat-6379-redis-6379, postfix, socat-27017-mongo-27017, php-fpm, socat-80-httpd-80, socat-443-httpd-443, socat-11211-memcd-11211, socat-5432-pgsql-5432, rsyslogd to die
php_1    | 2021-10-16 04:22:04,340 INFO stopped: socat-5432-pgsql-5432 (exit status 143)
php_1    | 2021-10-16 04:22:04,340 INFO stopped: socat-11211-memcd-11211 (exit status 143)
php_1    | 2021-10-16 04:22:04,341 INFO stopped: socat-443-httpd-443 (exit status 143)
php_1    | 2021-10-16 04:22:04,342 INFO stopped: socat-80-httpd-80 (exit status 143)
php_1    | 2021-10-16 04:22:04,352 INFO stopped: php-fpm (exit status 0)
php_1    | 2021-10-16 04:22:04,353 INFO stopped: socat-27017-mongo-27017 (exit status 143)
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1663
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1664
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1665
php_1    | 2021-10-16 04:22:05,762 INFO stopped: postfix (exit status 0)
php_1    | 2021-10-16 04:22:05,763 INFO stopped: socat-6379-redis-6379 (exit status 143)
php_1    | 2021-10-16 04:22:05,764 INFO stopped: socat-3306-mysql-3306 (exit status 143)
php_1    | 2021-10-16 04:22:05,771 INFO stopped: rsyslogd (exit status 0)

    883ms  j3surface  joshuajarman     master   21:23:20
   devilbox  ./check-config.sh

# ==============================================================================
# Checking git
# ==============================================================================
[SUCC]  git is clean

# ==============================================================================
# Checking .env file
# ==============================================================================
[SUCC]  .env file exists
[SUCC]  .env file is readable
[SUCC]  All variables are present in .env file
[SUCC]  No variables is duplicated in .env file

# ==============================================================================
# Checking .env file values
# ==============================================================================
[SUCC]  All .env file variables have correct values

# ==============================================================================
# Checking required Devilbox core directories exist
# ==============================================================================
[SUCC]  All PHP cfg/ sub directories are present
[SUCC]  All PHP log/ sub directories are present
[SUCC]  All PHP mod/ sub directories are present
[SUCC]  All HTTPD cfg/ sub directories are present
[SUCC]  All HTTPD log/ sub directories are present

# ==============================================================================
# Checking devilbox core directory permissions
# ==============================================================================
[SUCC]  All devilbox directories have correct permissions
[SUCC]  All devilbox directories have correct uid
[SUCC]  All devilbox directories have correct gid

# ==============================================================================
# Checking devilbox core file permissions
# ==============================================================================
[SUCC]  All devilbox files have correct permissions
[SUCC]  All devilbox files have correct uid
[SUCC]  All devilbox files have correct gid

# ==============================================================================
# Checking projects permissions
# ==============================================================================
[SUCC]  All project dirs have correct permissions
[SUCC]  All project dirs have correct uid
[SUCC]  All project dirs have correct gid

# ==============================================================================
# Checking projects settings
# ==============================================================================
[SUCC]  All projects have valid DNS records
[SUCC]  All projects have valid HTTPD_DOCROOT_DIR

# ==============================================================================
# Checking customizations
# ==============================================================================
[INFO]  No custom configurations applied

# ==============================================================================
# SUMMARY
# ==============================================================================
[SUCC]  Found no errors
[INFO]  No custom configurations applied
[INFO]  Ensure to run 'docker-compose stop; docker-compose rm -f' on .env changes or custom configs

    6s  j3surface  joshuajarman     master   21:24:46
   devilbox  lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.6 LTS
Release:        18.04
Codename:       bionic

 Git commit:        3967b7d
 Built:             Fri Jul 30 19:54:02 2021
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Server: Docker Engine - Community
 Engine:
  Version:          20.10.8
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.16.6
  Git commit:       75249d8
  Built:            Fri Jul 30 19:52:10 2021
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.4.9
  GitCommit:        e25210fe30a0a703442421b0f60afac609f950a3
 runc:
  Version:          1.0.1
  GitCommit:        v1.0.1-0-g4144b63
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0

    1s  j3surface  joshuajarman     master   22:31:27
   devilbox  docker-compose version
docker-compose version 1.29.2, build 5becea4c
docker-py version: 5.0.0
CPython version: 3.7.10
OpenSSL version: OpenSSL 1.1.0l  10 Sep 2019

    758ms  j3surface  joshuajarman     master   22:32:09
   devilbox  sudo apt install selinux-utils
[sudo] password for joshuajarman:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  selinux-utils
0 upgraded, 1 newly installed, 0 to remove and 5 not upgraded.
Need to get 81.7 kB of archives.
After this operation, 362 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 selinux-utils amd64 2.7-2build2 [81.7 kB]
Fetched 81.7 kB in 1s (79.1 kB/s)
Selecting previously unselected package selinux-utils.
(Reading database ... 107111 files and directories currently installed.)
Preparing to unpack .../selinux-utils_2.7-2build2_amd64.deb ...
Unpacking selinux-utils (2.7-2build2) ...
Setting up selinux-utils (2.7-2build2) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...

    9s  j3surface  joshuajarman     master   22:33:13
   devilbox  selinuxenabled; echo $?
1

      j3surface  joshuajarman     master   22:33:24
   devilbox  git rev-parse HEAD
23a6aed10d25986cb1d97b64d04b67898008bbf6

      j3surface  joshuajarman     master   22:34:01
   devilbox 
bracketed-paste-magic:zle:47: not enough arguments for -U

      j3surface  joshuajarman     master   22:34:01
   devilbox  ./check-config.sh

# ==============================================================================
# Checking git
# ==============================================================================
[SUCC]  git is clean

# ==============================================================================
# Checking .env file
# ==============================================================================
[SUCC]  .env file exists
[SUCC]  .env file is readable
[SUCC]  All variables are present in .env file
[SUCC]  No variables is duplicated in .env file

# ==============================================================================
# Checking .env file values
# ==============================================================================
[SUCC]  All .env file variables have correct values

# ==============================================================================
# Checking required Devilbox core directories exist
# ==============================================================================
[SUCC]  All PHP cfg/ sub directories are present
[SUCC]  All PHP log/ sub directories are present
[SUCC]  All PHP mod/ sub directories are present
[SUCC]  All HTTPD cfg/ sub directories are present
[SUCC]  All HTTPD log/ sub directories are present

# ==============================================================================
# Checking devilbox core directory permissions
# ==============================================================================
[SUCC]  All devilbox directories have correct permissions
[SUCC]  All devilbox directories have correct uid
[SUCC]  All devilbox directories have correct gid

# ==============================================================================
# Checking devilbox core file permissions
# ==============================================================================
[SUCC]  All devilbox files have correct permissions
[SUCC]  All devilbox files have correct uid
[SUCC]  All devilbox files have correct gid

# ==============================================================================
# Checking projects permissions
# ==============================================================================
[SUCC]  All project dirs have correct permissions
[SUCC]  All project dirs have correct uid
[SUCC]  All project dirs have correct gid

# ==============================================================================
# Checking projects settings
# ==============================================================================
[SUCC]  All projects have valid DNS records
[SUCC]  All projects have valid HTTPD_DOCROOT_DIR

# ==============================================================================
# Checking customizations
# ==============================================================================
[INFO]  No custom configurations applied

# ==============================================================================
# SUMMARY
# ==============================================================================
[SUCC]  Found no errors
[INFO]  No custom configurations applied
[INFO]  Ensure to run 'docker-compose stop; docker-compose rm -f' on .env changes or custom configs

    5s  j3surface  joshuajarman     master   22:37:49
   devilbox  docker-compose logs
Attaching to devilbox_pgsql_1, devilbox_mysql_1, devilbox_mongo_1, devilbox_redis_1, devilbox_memcd_1, devilbox_httpd_1, devilbox_php_1, devilbox_bind_1
bind_1   | [INFO] Debug level: 2
bind_1   | [INFO] BIND logging: disabled explicitly
bind_1   | [INFO] Using default DNS TTL time: 3600 sec
bind_1   | [INFO] Using default DNS Refresh time: 1200 sec
bind_1   | [INFO] Using default DNS Retry time: 180 sec
bind_1   | [INFO] Using default DNS Expiry time: 1209600 sec
bind_1   | [INFO] Using default DNS Max Cache time: 10800 sec
bind_1   | [INFO] Adding wildcard DNS: *.loc -> 127.0.0.1
bind_1   |
bind_1   | zone loc/IN: loaded serial 1634358052
bind_1   | OK
bind_1   | [INFO] Not adding any extra hosts
bind_1   | [INFO] DNSSEC Validation: no
bind_1   | [INFO] Adding custom DNS forwarder: 8.8.8.8,8.8.4.4
bind_1   | [INFO] Starting BIND 9.11.3
httpd_1  | [INFO] Debug level: 2
httpd_1  | [INFO] Runtime debug: 2
httpd_1  | [INFO] Changing user 'nginx' uid to: 1000
httpd_1  | root $ usermod -u 1000 nginx
httpd_1  | [INFO] Changing group 'nginx' gid to: 1000
httpd_1  | root $ groupmod -g 1000 nginx
httpd_1  | [INFO] Setting container timezone to: UTC
httpd_1  | root $ ln -sf /usr/share/zoneinfo/UTC /etc/localtime
httpd_1  | [INFO] Docker date set to: Sat Oct 16 04:20:56 UTC 2021
httpd_1  | [INFO] $WORKER_PROCESSES set to its default value: 'auto'.
httpd_1  | root $ sed -i'' 's/__WORKER_PROCESSES__/auto/g' /etc/nginx/nginx.conf
httpd_1  | [INFO] Setting worker_connections to: 1024
httpd_1  | root $ sed -i'' 's/__WORKER_CONNECTIONS__/1024/g' /etc/nginx/nginx.conf
httpd_1  | [INFO] $DOCKER_LOGS disabled. Logging errors and access to log files inside container.
httpd_1  | [INFO] PHP-FPM: Enabled
httpd_1  | [INFO] PHP-FPM: Server address: 172.16.238.10
httpd_1  | [INFO] PHP-FPM: Server port: 9000
httpd_1  | [INFO] PHP-FPM: Timeout: 180
httpd_1  | [INFO] Main vhost: Enabled
httpd_1  | [INFO] Main vhost: Setting SSL type to: http and https
httpd_1  | [INFO] Main vhost: Enable automatic generation of SSL certificates
httpd_1  | [INFO] Main vhost: SSL CN: localhost,*.localhost,devilbox,*.devilbox,httpd
httpd_1  | [INFO] $MAIN_VHOST_DOCROOT not specified. Keeping default: htdocs
httpd_1  | [INFO] $MAIN_VHOST_TPL not specified. Keeping default: cfg
httpd_1  | [INFO] Main vhost: Enabling httpd status page
httpd_1  | [INFO] Main vhost: Changing status page alias to: /devilbox-httpd-status
httpd_1  | [INFO] Mass vhost: Enabled
httpd_1  | [INFO] Mass vhost: Setting SSL type to: http and https
httpd_1  | [INFO] Mass vhost: Enable automatic generation of SSL certificates
httpd_1  | [INFO] Mass vhost: changing tld to: .loc
httpd_1  | [INFO] Mass vhost: changing document root to: htdocs
httpd_1  | [INFO] Mass vhost: changing template dir to: .devilbox
httpd_1  | [INFO] vhost-gen: no customized template found
httpd_1  | root $ sed -i'' 's/__PHP_ENABLE__/yes/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_ADDR__/172.16.238.10/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_PORT__/9000/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_TIMEOUT__/180/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__PHP_ENABLE__/yes/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_ADDR__/172.16.238.10/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_PORT__/9000/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__PHP_TIMEOUT__/180/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ERROR__/no/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ACCESS__/no/g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ERROR__/no/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__DOCKER_LOGS_ACCESS__/no/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's|__ENABLE_STATUS__|yes|g' /etc/vhost-gen/main.yml
httpd_1  | root $ sed -i'' 's|__STATUS_ALIAS__|/devilbox-httpd-status|g' /etc/vhost-gen/main.yml
httpd_1  | root $ vhost-gen -n localhost -p /var/www/default/htdocs -t /etc/vhost-gen/templates-main/ -c /etc/vhost-gen/main.yml -o /var/www/default/cfg -v -d -s -m both
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading configuration file        (-c): /etc/vhost-gen/main.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading vhost template (global)   (-t): /etc/vhost-gen/templates-main/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Loading vhost template (override) (-o): /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [WARN]  (2021-10-16 04:20:56): Override Vhost template not found: /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Creating vhost type: https and http (both)
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Using vhost name: localhost
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Log setting: dir -> True
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Log setting: Not specified
httpd_1  | vhost-gen: [INFO]  (2021-10-16 04:20:56): Vhost config written to: /etc/httpd/conf.d/localhost.conf
httpd_1  | root $ sed -i'' 's|__DOCROOT_SUFFIX__|htdocs|g' /etc/vhost-gen/mass.yml
httpd_1  | root $ sed -i'' 's/__TLD__/.loc/g' /etc/vhost-gen/mass.yml
httpd_1  | root $ mkdir -p /etc/httpd/cert/main
httpd_1  | root $ cert-gen -v -c DE -s Berlin -l Berlin -o Devilbox -u Devilbox -n 'localhost' -e 'admin@localhost' -a 'localhost *.localhost devilbox *.devilbox httpd' /ca/devilbox-ca.key /ca/devilbox-ca.crt /etc/httpd/cert/main/localhost.key /etc/httpd/cert/main/localhost.csr /etc/httpd/cert/main/localhost.crt
httpd_1  | $ openssl req -newkey rsa:2048 -sha256 -nodes -extensions v3_req -config <(echo "[req]
httpd_1  | distinguished_name = req_distinguished_name
httpd_1  | x509_extensions = v3_req
httpd_1  |
httpd_1  | [req_distinguished_name]
httpd_1  |
httpd_1  | [ v3_req ]
httpd_1  | basicConstraints = critical, CA:FALSE
httpd_1  | subjectKeyIdentifier = hash
httpd_1  | keyUsage = critical, digitalSignature, keyEncipherment
httpd_1  | authorityKeyIdentifier = keyid:always,issuer:always
httpd_1  | extendedKeyUsage = serverAuth, clientAuth
httpd_1  | subjectAltName=${ALT_NAMES}") -keyout /etc/httpd/cert/main/localhost.key -subj '/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=localhost/emailAddress=admin@localhost' -out /etc/httpd/cert/main/localhost.csr
httpd_1  | $ openssl x509 -req -sha256 -extensions v3_req -extfile <(echo "[req]
httpd_1  | distinguished_name = req_distinguished_name
httpd_1  | x509_extensions = v3_req
httpd_1  |
httpd_1  | [req_distinguished_name]
httpd_1  |
httpd_1  | [ v3_req ]
httpd_1  | basicConstraints = critical, CA:FALSE
httpd_1  | subjectKeyIdentifier = hash
httpd_1  | keyUsage = critical, digitalSignature, keyEncipherment
httpd_1  | authorityKeyIdentifier = keyid:always,issuer:always
httpd_1  | extendedKeyUsage = serverAuth, clientAuth
httpd_1  | subjectAltName=${ALT_NAMES}") -days 825 -in /etc/httpd/cert/main/localhost.csr -CA /ca/devilbox-ca.crt -CAkey /ca/devilbox-ca.key -CAcreateserial -out /etc/httpd/cert/main/localhost.crt
httpd_1  | Certificate:
httpd_1  |     Data:
httpd_1  |         Version: 3 (0x2)
httpd_1  |         Serial Number:
httpd_1  |             6a:f0:f6:1d:be:8f:c8:e5:13:19:bd:46:97:e1:ec:e9:dc:b9:14:8c
httpd_1  |         Signature Algorithm: sha256WithRSAEncryption
httpd_1  |         Issuer: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = Devilbox Root CA, emailAddress = cytopia@devilbox.org, dnQualifier = kRAsENZQQ2b/sP2Fnp5jxwYTpzw=
httpd_1  |         Validity
httpd_1  |             Not Before: Oct 16 04:20:56 2021 GMT
httpd_1  |             Not After : Jan 19 04:20:56 2024 GMT
httpd_1  |         Subject: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = localhost, emailAddress = admin@localhost
httpd_1  |         Subject Public Key Info:
httpd_1  |             Public Key Algorithm: rsaEncryption
httpd_1  |                 RSA Public-Key: (2048 bit)
httpd_1  |                 Modulus:
httpd_1  |                     00:b4:f0:05:96:48:ae:7d:0d:ef:4b:8f:7f:2d:97:
httpd_1  |                     ad:b4:a3:ee:3e:18:ab:70:17:81:f8:cb:f3:97:b4:
httpd_1  |                     ba:af:97:70:3f:fa:74:f1:9f:bb:8c:c8:d6:6e:73:
memcd_1  | Signal handled: Terminated.
httpd_1  |                     5c:b3:86:cb:2a:4c:34:35:ed:62:70:05:76:51:12:
httpd_1  |                     75:0e:0b:3b:6d:0d:11:fe:ca:14:e9:7c:42:8e:1f:
httpd_1  |                     56:72:7a:87:0a:fb:8d:0b:6f:b2:e2:4a:bd:fd:0c:
httpd_1  |                     db:17:f6:fc:55:cd:b8:a3:db:e9:ec:39:ae:0c:90:
httpd_1  |                     8c:7b:80:53:2a:8b:39:f4:71:ae:d2:9b:9b:c5:02:
httpd_1  |                     ba:2c:36:c0:d3:6d:87:07:ff:f3:62:4d:4d:54:7d:
httpd_1  |                     9e:ce:dd:41:20:e1:eb:88:48:b2:4d:d2:69:79:d5:
httpd_1  |                     80:fb:27:2a:39:35:3d:74:4b:59:19:27:5a:8a:9e:
httpd_1  |                     e0:55:45:7a:09:de:65:83:52:76:cf:58:90:4f:24:
httpd_1  |                     a6:ef:8b:37:2e:89:42:d6:35:d4:75:c2:3d:c2:93:
httpd_1  |                     9c:a2:53:3d:0b:e6:16:c2:f8:99:9b:01:a5:57:14:
httpd_1  |                     a7:40:5a:c2:89:a3:94:76:cf:1b:8d:9d:51:89:9b:
httpd_1  |                     26:8e:9b:70:00:f9:81:0f:67:82:7c:84:b7:1c:4a:
httpd_1  |                     b3:5b:19:14:62:c8:8f:85:55:29:e7:7d:5e:f3:03:
httpd_1  |                     1d:89
httpd_1  |                 Exponent: 65537 (0x10001)
httpd_1  |         X509v3 extensions:
httpd_1  |             X509v3 Basic Constraints: critical
httpd_1  |                 CA:FALSE
httpd_1  |             X509v3 Subject Key Identifier:
httpd_1  |                 3F:F5:A0:60:1E:CB:F6:C3:18:92:FA:94:76:CA:60:4B:CC:3D:56:F7
httpd_1  |             X509v3 Key Usage: critical
httpd_1  |                 Digital Signature, Key Encipherment
httpd_1  |             X509v3 Authority Key Identifier:
httpd_1  |                 keyid:91:10:2C:10:D6:50:43:66:FF:B0:FD:85:9E:9E:63:C7:06:13:A7:3C
httpd_1  |                 DirName:/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=Devilbox Root CA/emailAddress=cytopia@devilbox.org/dnQualifier=kRAsENZQQ2b/sP2Fnp5jxwYTpzw=
httpd_1  |                 serial:5B:3F:7C:53:1F:60:40:05:9C:F6:D0:D3:15:1D:76:1F:D2:5F:D5:92
httpd_1  |
httpd_1  |             X509v3 Extended Key Usage:
httpd_1  |                 TLS Web Server Authentication, TLS Web Client Authentication
httpd_1  |             X509v3 Subject Alternative Name:
httpd_1  |                 DNS:localhost, DNS:localhost, DNS:*.localhost, DNS:devilbox, DNS:*.devilbox, DNS:httpd
httpd_1  |     Signature Algorithm: sha256WithRSAEncryption
httpd_1  |          c2:6f:3b:be:fa:16:f6:a1:6a:66:0b:2a:94:5b:c1:7a:15:e8:
httpd_1  |          d7:40:dd:58:72:17:d5:dd:27:0f:93:7e:dc:bc:da:34:a4:9d:
httpd_1  |          e4:19:56:43:33:6a:6e:0e:98:49:86:ac:2a:8e:97:7d:9c:b6:
httpd_1  |          a3:ca:8f:88:46:0f:55:b6:c6:28:a3:df:73:69:8f:1e:80:c1:
httpd_1  |          24:21:32:d1:ac:36:e6:ec:2c:90:df:85:10:f5:a1:db:e0:11:
httpd_1  |          f5:d6:5e:fa:5d:05:62:4c:db:9d:30:e5:de:0a:58:54:24:74:
httpd_1  |          ce:c8:f4:b5:f7:d2:fe:d3:40:66:78:81:71:10:74:27:c6:e4:
httpd_1  |          33:88:94:49:ac:53:3f:a4:24:83:97:51:75:99:33:00:61:ce:
httpd_1  |          e2:03:a2:3c:a1:4f:05:c0:7d:22:1b:69:81:f5:56:ff:66:28:
httpd_1  |          82:82:11:ee:ed:f6:32:0a:22:df:84:08:94:56:c7:8d:bf:4c:
httpd_1  |          91:c1:64:88:63:f2:c3:50:6e:7c:fd:da:1d:49:2f:7b:3d:e5:
httpd_1  |          cd:42:88:d7:55:e3:e3:f4:df:42:71:36:1f:25:a0:23:d1:ef:
httpd_1  |          a2:ab:21:7e:8f:c3:92:5b:53:59:65:d5:f2:82:21:e1:a0:dc:
httpd_1  |          4b:0a:03:aa:1f:64:2f:2f:4d:10:36:e9:95:2d:65:0a:19:0d:
httpd_1  |          c5:64:66:e2
httpd_1  | /etc/httpd/cert/main/localhost.crt: OK
httpd_1  | root $ chown -R 1000:1000 /ca
httpd_1  | [INFO] Starting supervisord: 3.3.5
httpd_1  | 2021-10-16 04:20:56,868 INFO Set uid to user 0 succeeded
httpd_1  | 2021-10-16 04:20:56,870 INFO supervisord started with pid 1
httpd_1  | 2021-10-16 04:20:57,871 INFO spawned: 'httpd' with pid 236
httpd_1  | 2021-10-16 04:20:57,873 INFO spawned: 'watcherd' with pid 237
httpd_1  | 2021-10-16 04:20:58,875 INFO success: httpd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | 2021-10-16 04:20:58,875 INFO success: watcherd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | watcherd: [2021-10-16 04:21:00] Starting daemon.
httpd_1  | watcherd: [2021-10-16 04:21:00] Using bash loop to watch for changes.
httpd_1  | 2021-10-16 04:22:02,877 WARN received SIGTERM indicating exit request
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.326+00:00"},"s":"I",  "c":"CONTROL",  "id":23285,   "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.329+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.329+00:00"},"s":"I",  "c":"NETWORK",  "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"STORAGE",  "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":1,"port":27017,"dbPath":"/data/db","architecture":"64-bit","host":"mongo"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.10","gitVersion":"58971da1ef93435a9f62bf4708a81713def6e88c","openSSLVersion":"OpenSSL 1.1.1f  31 Mar 2020","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2004","distarch":"x86_64","target_arch":"x86_64"}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":51765,   "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"20.04"}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.330+00:00"},"s":"I",  "c":"CONTROL",  "id":21951,   "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"*"}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22270,   "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/data/db","storageEngine":"wiredTiger"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22297,   "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:01.332+00:00"},"s":"I",  "c":"STORAGE",  "id":22315,   "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=3363M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000,close_scan_interval=10,close_handle_minimum=250),statistics_log=(wait=0),verbose=[recovery_progress,checkpoint_progress,compact_progress],"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.052+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:52853][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 29 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.124+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:124521][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 30 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.188+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:188783][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 29/4992 to 30/256"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.257+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:257932][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 29 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.305+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:305007][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 30 through 30"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.347+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:347026][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.347+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:347148][1:0x7fdc3031ecc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.353+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1634358062:353069][1:0x7fdc3031ecc0], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 762"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.370+00:00"},"s":"I",  "c":"STORAGE",  "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1038}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.370+00:00"},"s":"I",  "c":"RECOVERY", "id":23987,   "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.372+00:00"},"s":"I",  "c":"STORAGE",  "id":4366408, "ctx":"initandlisten","msg":"No table logging settings modifications are required for existing WiredTiger tables","attr":{"loggingEnabled":true}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.373+00:00"},"s":"I",  "c":"STORAGE",  "id":22262,   "ctx":"initandlisten","msg":"Timestamp monitor starting"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.380+00:00"},"s":"W",  "c":"CONTROL",  "id":22120,   "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.380+00:00"},"s":"W",  "c":"CONTROL",  "id":22178,   "ctx":"initandlisten","msg":"/sys/kernel/mm/transparent_hugepage/enabled is 'always'. We suggest setting it to 'never'","tags":["startupWarnings"]}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.383+00:00"},"s":"I",  "c":"STORAGE",  "id":20536,   "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.388+00:00"},"s":"I",  "c":"FTDC",     "id":20625,   "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/data/db/diagnostic.data"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.388+00:00"},"s":"I",  "c":"REPL",     "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:02.390+00:00"},"s":"I",  "c":"NETWORK",  "id":23016,   "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.582+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51586","connectionId":1,"connectionCount":1}}
httpd_1  | 2021-10-16 04:22:02,878 INFO waiting for httpd, watcherd to die
httpd_1  | 2021-10-16 04:22:02,878 INFO stopped: watcherd (terminated by SIGTERM)
httpd_1  | 2021-10-16 04:22:03,020 INFO stopped: httpd (exit status 0)
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.582+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.16.238.10:51586","client":"conn1","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.629+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51628","connectionId":2,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.629+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.16.238.10:51628","client":"conn2","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.632+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51632","connectionId":3,"connectionCount":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:33.633+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.16.238.10:51632","client":"conn3","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.579+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51678","connectionId":4,"connectionCount":4}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.579+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn4","msg":"client metadata","attr":{"remote":"172.16.238.10:51678","client":"conn4","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.638+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51720","connectionId":5,"connectionCount":5}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.638+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn5","msg":"client metadata","attr":{"remote":"172.16.238.10:51720","client":"conn5","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.641+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:51724","connectionId":6,"connectionCount":6}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:42.641+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn6","msg":"client metadata","attr":{"remote":"172.16.238.10:51724","client":"conn6","doc":{"driver":{"name":"mongoc / ext-mongodb:PHP ","version":"1.17.4 / 1.9.1 "},"os":{"type":"Linux","name":"Debian GNU/Linux","version":"10","architecture":"x86_64"},"platform":"PHP 7.4.20 cfg=0x03d156a8e9 posix=200809 stdc=201710 CC=GCC 8.3.0 CFLAGS=\"\" LDFLAGS=\"\""}}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.211+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn3","msg":"Connection ended","attr":{"remote":"172.16.238.10:51632","connectionId":3,"connectionCount":5}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.212+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn2","msg":"Connection ended","attr":{"remote":"172.16.238.10:51628","connectionId":2,"connectionCount":4}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:54.212+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn1","msg":"Connection ended","attr":{"remote":"172.16.238.10:51586","connectionId":1,"connectionCount":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.222+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn6","msg":"Connection ended","attr":{"remote":"172.16.238.10:51724","connectionId":6,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.223+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn5","msg":"Connection ended","attr":{"remote":"172.16.238.10:51720","connectionId":5,"connectionCount":1}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:58.223+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn4","msg":"Connection ended","attr":{"remote":"172.16.238.10:51678","connectionId":4,"connectionCount":0}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23377,   "ctx":"SignalHandler","msg":"Received signal","attr":{"signal":15,"error":"Terminated"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23378,   "ctx":"SignalHandler","msg":"Signal was sent by kill(2)","attr":{"pid":0,"uid":0}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":23381,   "ctx":"SignalHandler","msg":"will terminate after current cmd ends"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"REPL",     "id":4784900, "ctx":"SignalHandler","msg":"Stepping down the ReplicationCoordinator for shutdown","attr":{"waitTimeMillis":10000}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"COMMAND",  "id":4784901, "ctx":"SignalHandler","msg":"Shutting down the MirrorMaestro"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"SHARDING", "id":4784902, "ctx":"SignalHandler","msg":"Shutting down the WaitForMajorityService"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.332+00:00"},"s":"I",  "c":"CONTROL",  "id":4784903, "ctx":"SignalHandler","msg":"Shutting down the LogicalSessionCache"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.333+00:00"},"s":"I",  "c":"NETWORK",  "id":20562,   "ctx":"SignalHandler","msg":"Shutdown: going to close listening sockets"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"NETWORK",  "id":23017,   "ctx":"listener","msg":"removing socket file","attr":{"path":"/tmp/mongodb-27017.sock"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"NETWORK",  "id":4784905, "ctx":"SignalHandler","msg":"Shutting down the global connection pool"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784906, "ctx":"SignalHandler","msg":"Shutting down the FlowControlTicketholder"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"-",        "id":20520,   "ctx":"SignalHandler","msg":"Stopping further Flow Control ticket acquisitions."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784908, "ctx":"SignalHandler","msg":"Shutting down the PeriodicThreadToAbortExpiredTransactions"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.338+00:00"},"s":"I",  "c":"STORAGE",  "id":4784934, "ctx":"SignalHandler","msg":"Shutting down the PeriodicThreadToDecreaseSnapshotHistoryCachePressure"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784909, "ctx":"SignalHandler","msg":"Shutting down the ReplicationCoordinator"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"SHARDING", "id":4784910, "ctx":"SignalHandler","msg":"Shutting down the ShardingInitializationMongoD"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784911, "ctx":"SignalHandler","msg":"Enqueuing the ReplicationStateTransitionLock for shutdown"}
mysql_1  | 2021-10-16 04:21:01+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | 2021-10-16 04:21:02+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
mysql_1  | 2021-10-16 04:21:02+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | 2021-10-16T04:21:02.381993Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 1
mysql_1  | 2021-10-16T04:21:02.391296Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
mysql_1  | 2021-10-16T04:21:02.569431Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
mysql_1  | 2021-10-16T04:21:02.743830Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
mysql_1  | 2021-10-16T04:21:02.918059Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
mysql_1  | 2021-10-16T04:21:02.918330Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
mysql_1  | 2021-10-16T04:21:02.923386Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
mysql_1  | 2021-10-16T04:21:02.963092Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.22'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server - GPL.
mysql_1  | 2021-10-16T04:21:59.329655Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user <via user signal>. Shutting down mysqld (Version: 8.0.22).
mysql_1  | 2021-10-16T04:22:00.250317Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.22)  MySQL Community Server - GPL.
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"-",        "id":4784912, "ctx":"SignalHandler","msg":"Killing all operations for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"-",        "id":4695300, "ctx":"SignalHandler","msg":"Interrupted all currently running operations","attr":{"opsKilled":3}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"COMMAND",  "id":4784913, "ctx":"SignalHandler","msg":"Shutting down all open transactions"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784914, "ctx":"SignalHandler","msg":"Acquiring the ReplicationStateTransitionLock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"INDEX",    "id":4784915, "ctx":"SignalHandler","msg":"Shutting down the IndexBuildsCoordinator"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784916, "ctx":"SignalHandler","msg":"Reacquiring the ReplicationStateTransitionLock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"REPL",     "id":4784917, "ctx":"SignalHandler","msg":"Attempting to mark clean shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"NETWORK",  "id":4784918, "ctx":"SignalHandler","msg":"Shutting down the ReplicaSetMonitor"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"SHARDING", "id":4784921, "ctx":"SignalHandler","msg":"Shutting down the MigrationUtilExecutor"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"CONTROL",  "id":4784925, "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"CONTROL",  "id":20609,   "ctx":"SignalHandler","msg":"Shutting down free monitoring"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784927, "ctx":"SignalHandler","msg":"Shutting down the HealthLog"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784929, "ctx":"SignalHandler","msg":"Acquiring the global lock for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":4784930, "ctx":"SignalHandler","msg":"Shutting down the storage engine"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":22320,   "ctx":"SignalHandler","msg":"Shutting down journal flusher thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":22321,   "ctx":"SignalHandler","msg":"Finished shutting down journal flusher thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.339+00:00"},"s":"I",  "c":"STORAGE",  "id":20282,   "ctx":"SignalHandler","msg":"Deregistering all the collections"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.340+00:00"},"s":"I",  "c":"STORAGE",  "id":22261,   "ctx":"SignalHandler","msg":"Timestamp monitor shutting down"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.340+00:00"},"s":"I",  "c":"STORAGE",  "id":22317,   "ctx":"SignalHandler","msg":"WiredTigerKVEngine shutting down"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.341+00:00"},"s":"I",  "c":"STORAGE",  "id":22318,   "ctx":"SignalHandler","msg":"Shutting down session sweeper thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.341+00:00"},"s":"I",  "c":"STORAGE",  "id":22319,   "ctx":"SignalHandler","msg":"Finished shutting down session sweeper thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":22322,   "ctx":"SignalHandler","msg":"Shutting down checkpoint thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":22323,   "ctx":"SignalHandler","msg":"Finished shutting down checkpoint thread"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.342+00:00"},"s":"I",  "c":"STORAGE",  "id":4795902, "ctx":"SignalHandler","msg":"Closing WiredTiger","attr":{"closeConfig":"leak_memory=true,"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.346+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"SignalHandler","msg":"WiredTiger message","attr":{"message":"[1634358119:346372][1:0x7fdc3031d700], close_ckpt: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 4, snapshot max: 4 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 762"}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"STORAGE",  "id":4795901, "ctx":"SignalHandler","msg":"WiredTiger closed","attr":{"durationMillis":35}}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"STORAGE",  "id":22279,   "ctx":"SignalHandler","msg":"shutdown: removing fs lock..."}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"-",        "id":4784931, "ctx":"SignalHandler","msg":"Dropping the scope cache for shutdown"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"FTDC",     "id":4784926, "ctx":"SignalHandler","msg":"Shutting down full-time data capture"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.377+00:00"},"s":"I",  "c":"FTDC",     "id":20626,   "ctx":"SignalHandler","msg":"Shutting down full-time diagnostic data capture"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.380+00:00"},"s":"I",  "c":"CONTROL",  "id":20565,   "ctx":"SignalHandler","msg":"Now exiting"}
mongo_1  | {"t":{"$date":"2021-10-16T04:21:59.381+00:00"},"s":"I",  "c":"CONTROL",  "id":23138,   "ctx":"SignalHandler","msg":"Shutting down","attr":{"exitCode":0}}
pgsql_1  |
pgsql_1  | PostgreSQL Database directory appears to contain a database; Skipping initialization
pgsql_1  |
pgsql_1  | 2021-10-16 04:21:01.895 UTC [1] LOG:  starting PostgreSQL 13.0 (Debian 13.0-1.pgdg100+1) on x86_64-pc-linux-gnu, compiled by gcc (Debian 8.3.0-6) 8.3.0, 64-bit
pgsql_1  | 2021-10-16 04:21:01.938 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
pgsql_1  | 2021-10-16 04:21:01.938 UTC [1] LOG:  listening on IPv6 address "::", port 5432
pgsql_1  | 2021-10-16 04:21:01.946 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
pgsql_1  | 2021-10-16 04:21:01.954 UTC [27] LOG:  database system was shut down at 2021-10-16 04:20:20 UTC
pgsql_1  | 2021-10-16 04:21:01.960 UTC [1] LOG:  database system is ready to accept connections
pgsql_1  | 2021-10-16 04:21:59.338 UTC [1] LOG:  received fast shutdown request
pgsql_1  | 2021-10-16 04:21:59.342 UTC [1] LOG:  aborting any active transactions
pgsql_1  | 2021-10-16 04:21:59.345 UTC [1] LOG:  background worker "logical replication launcher" (PID 33) exited with exit code 1
pgsql_1  | 2021-10-16 04:21:59.345 UTC [28] LOG:  shutting down
pgsql_1  | 2021-10-16 04:21:59.379 UTC [1] LOG:  database system is shut down
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # Redis version=6.0.16, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1  | 1:C 16 Oct 2021 04:21:00.576 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis_1  | 1:M 16 Oct 2021 04:21:00.577 * Running mode=standalone, port=6379.
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # Server initialized
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1  | 1:M 16 Oct 2021 04:21:00.577 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo madvise > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled (set to 'madvise' or 'never').
redis_1  | 1:M 16 Oct 2021 04:21:00.582 * Ready to accept connections
redis_1  | 1:signal-handler (1634358119) Received SIGTERM scheduling shutdown...
redis_1  | 1:M 16 Oct 2021 04:21:59.372 # User requested shutdown...
redis_1  | 1:M 16 Oct 2021 04:21:59.372 * Saving the final RDB snapshot before exiting.
redis_1  | 1:M 16 Oct 2021 04:21:59.375 * DB saved on disk
redis_1  | 1:M 16 Oct 2021 04:21:59.375 # Redis is now ready to exit, bye bye...
php_1    | [INFO] Debug level: 2
php_1    | [INFO] Changing user 'devilbox' uid to: 1000
php_1    | root $ usermod -u 1000 devilbox 2>/dev/null
php_1    | root $ chown -R devilbox /home/devilbox 2>/dev/null || true
php_1    | root $ chown -R devilbox /var/lib/php/session
php_1    | root $ chown -R devilbox /var/lib/php/wsdlcache
php_1    | root $ chown -R devilbox /var/spool/mail/devilbox
php_1    | root $ chown -R devilbox /etc/supervisor/custom.d
php_1    | [INFO] Changing group 'devilbox' gid to: 1000
php_1    | root $ groupmod -g 1000 devilbox 2>/dev/null
php_1    | root $ chown -R :devilbox /home/devilbox 2>/dev/null || true
php_1    | root $ chown -R :devilbox /var/lib/php/session
php_1    | root $ chown -R :devilbox /var/lib/php/wsdlcache
php_1    | root $ chown -R :devilbox /var/spool/mail/devilbox
php_1    | root $ chown -R :devilbox /etc/supervisor/custom.d
php_1    | [INFO] Setting container timezone to: UTC
php_1    | root $ ln -sf /usr/share/zoneinfo/UTC /etc/localtime
php_1    | [INFO] Setting PHP: timezone=UTC
php_1    | root $ echo 'date.timezone = UTC' > /usr/local/etc/php/conf.d/devilbox-runtime-timezone.ini
php_1    | [INFO] Docker date set to: Sat Oct 16 04:20:54 UTC 2021
php_1    | [INFO] $DOCKER_LOGS set to 0. Logging to files under: /var/log/php
php_1    | [INFO] Make sure to mount this directory in order to view logs
php_1    | root $ chown -R devilbox:devilbox /var/log/php
php_1    | root $ chmod 0755 /var/log/php
php_1    | [INFO] $ENABLE_MAIL set to 2. Enabling postfix catch-all
php_1    | root $ chown devilbox:devilbox /var/log/php
php_1    | root $ chown devilbox:devilbox /var/log/php/mail.log
php_1    | root $ chmod 0644 /var/log/php/mail.log
php_1    | root $ chmod 0644 /var/mail/devilbox
php_1    | root $ chown devilbox:devilbox /var/mail
php_1    | root $ chown devilbox:devilbox /var/mail/devilbox
php_1    | root $ postconf -e 'strict_mailbox_ownership=no'
php_1    | root $ postconf -e 'inet_protocols=ipv4'
php_1    | root $ postconf -e 'virtual_alias_maps=pcre:/etc/postfix/virtual'
php_1    | root $ echo '/.*@.*/ devilbox' >> /etc/postfix/virtual
php_1    | root $ newaliases
php_1    | [INFO] Forwarding httpd:80 to 127.0.0.1:80 inside this docker.
php_1    | [INFO] Forwarding httpd:443 to 127.0.0.1:443 inside this docker.
php_1    | [INFO] Forwarding mysql:3306 to 127.0.0.1:3306 inside this docker.
php_1    | [INFO] Forwarding pgsql:5432 to 127.0.0.1:5432 inside this docker.
php_1    | [INFO] Forwarding redis:6379 to 127.0.0.1:6379 inside this docker.
php_1    | [INFO] Forwarding memcd:11211 to 127.0.0.1:11211 inside this docker.
php_1    | [INFO] Forwarding mongo:27017 to 127.0.0.1:27017 inside this docker.
php_1    | [INFO] Enabling 'socat-80-httpd-80' to be started by supervisord
php_1    | [INFO] Enabling 'socat-443-httpd-443' to be started by supervisord
php_1    | [INFO] Enabling 'socat-3306-mysql-3306' to be started by supervisord
php_1    | [INFO] Enabling 'socat-5432-pgsql-5432' to be started by supervisord
php_1    | [INFO] Enabling 'socat-6379-redis-6379' to be started by supervisord
php_1    | [INFO] Enabling 'socat-11211-memcd-11211' to be started by supervisord
php_1    | [INFO] Enabling 'socat-27017-mongo-27017' to be started by supervisord
php_1    | [INFO] Enabling 'rsyslogd' to be started by supervisord
php_1    | [INFO] Enabling 'postfix' to be started by supervisord
php_1    | [INFO] Enabling 'php-fpm' to be started by supervisord
php_1    | root $ find /usr/local/etc/php/conf.d -type f -iname '*.ini' -exec chmod 0644 "{}" \;
php_1    | root $ find /usr/local/etc/php-fpm.d -type f -iname '*.conf' -exec chmod 0644 "{}" \;
php_1    | [INFO] $ENABLE_MODULES set, but empty. Not enabling any PHP modules.
php_1    | [INFO] Disabling the following PHP modules: oci8,PDO_OCI,pdo_sqlsrv,sqlsrv,rdkafka,swoole
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-oci8.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-pdo_sqlsrv.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-sqlsrv.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-rdkafka.ini
php_1    | root $ rm /usr/local/etc/php/conf.d/docker-php-ext-swoole.ini
php_1    | root $ chown devilbox:devilbox /etc/mysqldump-secure.conf
php_1    | root $ chown devilbox:devilbox /etc/mysqldump-secure.cnf
php_1    | root $ chown devilbox:devilbox /var/log/mysqldump-secure.log
php_1    | root $ chown devilbox:devilbox /shared/backups/mysql
php_1    | [INFO] $MYSQL_BACKUP_USER set for mysqldump-secure. Changing to 'root'
php_1    | root $ sed -i'' 's/^user.*/user = root/g' /etc/mysqldump-secure.cnf
php_1    | [INFO] $MYSQL_BACKUP_PASS set for mysqldump-secure. Changing to '******'
php_1    | root $ perl -pi -e 's/^password.*/password = /g' /etc/mysqldump-secure.cnf
php_1    | [INFO] $MYSQL_BACKUP_HOST set for mysqldump-secure. Changing to 'mysql'
php_1    | root $ sed -i'' 's/^host.*/host = mysql/g' /etc/mysqldump-secure.cnf
php_1    | root $ chown devilbox:devilbox /shared/backups
php_1    | root $ chown devilbox:devilbox /shared/httpd
php_1    | root $ chmod 0755 /shared/backups
php_1    | root $ chmod 0755 /shared/httpd
php_1    | root $ cp /ca/devilbox-ca.crt /usr/local/share/ca-certificates/devilbox-devilbox-ca.crt
php_1    | root $ update-ca-certificates
php_1    | Updating certificates in /etc/ssl/certs...
php_1    | 1 added, 0 removed; done.
php_1    | Running hooks in /etc/ca-certificates/update.d...
php_1    | done.
php_1    | [INFO] Starting supervisord
php_1    | 2021-10-16 04:20:58,053 WARN No file matches via include "/etc/supervisor/custom.d/*.conf"
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/php-fpm.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/postfix.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/rsyslogd.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-11211-memcd-11211.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-27017-mongo-27017.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-3306-mysql-3306.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-443-httpd-443.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-5432-pgsql-5432.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-6379-redis-6379.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Included extra file "/etc/supervisor/conf.d/socat-80-httpd-80.conf" during parsing
php_1    | 2021-10-16 04:20:58,054 INFO Set uid to user 0 succeeded
php_1    | 2021-10-16 04:20:58,055 INFO supervisord started with pid 1
php_1    | 2021-10-16 04:20:59,059 INFO spawned: 'rsyslogd' with pid 1553
php_1    | 2021-10-16 04:20:59,062 INFO spawned: 'socat-3306-mysql-3306' with pid 1554
php_1    | 2021-10-16 04:20:59,065 INFO spawned: 'socat-6379-redis-6379' with pid 1555
php_1    | 2021-10-16 04:20:59,067 INFO spawned: 'postfix' with pid 1556
php_1    | 2021-10-16 04:20:59,069 INFO spawned: 'socat-27017-mongo-27017' with pid 1557
php_1    | 2021-10-16 04:20:59,071 INFO spawned: 'php-fpm' with pid 1560
php_1    | 2021-10-16 04:20:59,073 INFO spawned: 'socat-80-httpd-80' with pid 1562
php_1    | 2021-10-16 04:20:59,076 INFO spawned: 'socat-443-httpd-443' with pid 1563
php_1    | 2021-10-16 04:20:59,078 INFO spawned: 'socat-11211-memcd-11211' with pid 1564
php_1    | 2021-10-16 04:20:59,079 INFO spawned: 'socat-5432-pgsql-5432' with pid 1565
php_1    | rsyslogd: imklog: cannot open kernel log (/proc/kmsg): Operation not permitted.
php_1    | rsyslogd: activation of module imklog failed [v8.1901.0 try https://www.rsyslog.com/e/2145 ]
php_1    | 2021-10-16 04:21:00,144 INFO success: rsyslogd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: socat-3306-mysql-3306 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: socat-6379-redis-6379 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,144 INFO success: postfix entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-27017-mongo-27017 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-80-httpd-80 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-443-httpd-443 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-11211-memcd-11211 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:21:00,145 INFO success: socat-5432-pgsql-5432 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-10-16 04:22:04,339 WARN received SIGQUIT indicating exit request
php_1    | 2021-10-16 04:22:04,339 INFO waiting for socat-3306-mysql-3306, socat-6379-redis-6379, postfix, socat-27017-mongo-27017, php-fpm, socat-80-httpd-80, socat-443-httpd-443, socat-11211-memcd-11211, socat-5432-pgsql-5432, rsyslogd to die
php_1    | 2021-10-16 04:22:04,340 INFO stopped: socat-5432-pgsql-5432 (exit status 143)
php_1    | 2021-10-16 04:22:04,340 INFO stopped: socat-11211-memcd-11211 (exit status 143)
php_1    | 2021-10-16 04:22:04,341 INFO stopped: socat-443-httpd-443 (exit status 143)
php_1    | 2021-10-16 04:22:04,342 INFO stopped: socat-80-httpd-80 (exit status 143)
php_1    | 2021-10-16 04:22:04,352 INFO stopped: php-fpm (exit status 0)
php_1    | 2021-10-16 04:22:04,353 INFO stopped: socat-27017-mongo-27017 (exit status 143)
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1663
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1664
php_1    | 2021-10-16 04:22:04,732 INFO reaped unknown pid 1665
php_1    | 2021-10-16 04:22:05,762 INFO stopped: postfix (exit status 0)
php_1    | 2021-10-16 04:22:05,763 INFO stopped: socat-6379-redis-6379 (exit status 143)
php_1    | 2021-10-16 04:22:05,764 INFO stopped: socat-3306-mysql-3306 (exit status 143)
php_1    | 2021-10-16 04:22:05,771 INFO stopped: rsyslogd (exit status 0)
cytopia commented 2 years ago

@redesigned could you check the branch from this PR: https://github.com/cytopia/devilbox/pull/859

It comes with udpated MySQL images and judging by CI and local tests it now works. Let me know if you continue to experience this issue.