cytopia / devilbox

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

xdebug + phpstorm #849

Closed jasonskinner closed 2 years ago

jasonskinner commented 2 years ago

ISSUE TYPE

Checklist

OS / ENVIRONMENT

  1. Windows 11 (was happening in Windows 10)
  2. (Windows only) Native Docker
  3. Docker version: Latest
  4. Docker Compose version: Latest
  5. (Linux) Is SELinux enabled?: N/A
  6. What git commit hash are you on?: Latest

SUMMARY

I cannot get xdebug working

STEPS TO REPRODUCE

I have been at this for a couple of days. I am seasoned PHP developer, as well as dotnet etc etc. I've tried configuring xdebug various ways. I will attach a screenshot. I have also been through the documentation various times, as well as googling to find a solution.

EXPECTED BEHAVIOUR

Connect to xdebug

ACTUAL BEHAVIOUR

Error: [Step Debug] Could not connect to debugging client. Tried: 172.16.238.1:9003 (from REMOTE_ADDR HTTP header), host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port) :-(

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
# ==============================================================================
stat: cannot read file system information for '%OLp': No such file or directory
[ERR]   Variable 'DEVILBOX_PATH' directory must be 0755, 0775 or 0777. Has:   File: "."
    ID: a2aafe4c00000000 Namelen: 255     Type: UNKNOWN (0x3e70eff)
Block size: 4096       Fundamental block size: 4096
Blocks: Total: 249858318  Free: 148012036  Available: 148012036
Inodes: Total: 18446744073709551615 Free: -1
stat: cannot read file system information for '%u': No such file or directory

<!-- 2/2 Add the output from docker-compose logs -->
```bash
$ docker-compose logs

Attaching to devilbox_mysql_1, devilbox_pgsql_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 1636081613
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: 197609
httpd_1  | root $ usermod -u 197609 nginx
httpd_1  | [INFO] Changing group 'nginx' gid to: 197609
httpd_1  | root $ groupmod -g 197609 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: Fri Nov  5 03:06:55 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-11-05 03:06:55): Loading configuration file        (-c): /etc/vhost-gen/main.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Loading vhost template (global)   (-t): /etc/vhost-gen/templates-main/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Loading vhost template (override) (-o): /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [WARN]  (2021-11-05 03:06:55): Override Vhost template not found: /var/www/default/cfg/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Creating vhost type: https and http (both)
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Using vhost name: localhost
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Log setting: dir -> True
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): Log setting: Not specified
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:06:55): 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  |             67:b6:3b:94:35:25:ea:76:eb:9b:47:62:ad:a8:b1:ff:06:55:10:f3
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 = UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |         Validity
httpd_1  |             Not Before: Nov  5 03:06:56 2021 GMT
httpd_1  |             Not After : Feb  8 03:06: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:9e:dc:65:82:6e:e2:e0:05:d3:f7:f4:57:d9:e2:
httpd_1  |                     51:27:47:91:a7:f1:73:89:17:7d:e2:c5:df:86:06:
httpd_1  |                     7e:07:0b:00:67:5c:a5:c2:36:fd:ee:2c:99:81:5e:
httpd_1  |                     8c:68:ff:63:e9:29:e5:23:95:ab:87:24:3d:9e:d0:
httpd_1  |                     b2:14:40:82:13:1e:8b:23:ff:1c:d3:42:ef:68:1e:
httpd_1  |                     46:d9:ea:28:1d:ab:81:04:53:40:fc:c9:fb:4a:86:
httpd_1  |                     42:9f:48:9c:e5:6c:02:8a:60:62:23:cf:ef:f8:16:
httpd_1  |                     ef:c0:09:a2:b2:01:ea:03:7b:25:02:ff:5d:b6:64:
httpd_1  |                     5d:94:79:4e:d4:58:fc:67:ea:a1:a8:c0:5f:e8:ae:
httpd_1  |                     b9:2b:0c:2d:85:d3:cf:ac:cf:a5:d6:28:4b:b8:41:
httpd_1  |                     1b:77:56:a8:f9:d0:b6:ed:b7:c8:c0:86:89:97:7f:
httpd_1  |                     47:1e:2f:b3:c0:c0:3b:62:a6:97:01:d0:84:75:ba:
httpd_1  |                     fa:b0:5c:a4:d9:88:00:57:09:7f:7f:92:4c:ff:3b:
httpd_1  |                     5e:2f:2f:b9:d4:7b:f8:b5:ec:f9:9c:a7:ef:9f:c2:
httpd_1  |                     69:d8:f5:65:f4:2c:5d:68:86:1e:b9:95:16:c3:6c:
httpd_1  |                     f7:5b:30:1d:0f:db:96:f7:40:96:9c:01:50:bd:8b:
httpd_1  |                     61:bb:f5:46:31:57:ea:e9:9d:90:48:87:45:bb:eb:
httpd_1  |                     79:9f
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  |                 19:AD:4D:7E:69:E6:CD:2E:72:CB:0D:D6:64:F4:1C:D6:0D:BB:02:F2
httpd_1  |             X509v3 Key Usage: critical
httpd_1  |                 Digital Signature, Key Encipherment
httpd_1  |             X509v3 Authority Key Identifier:
httpd_1  |                 keyid:50:2A:29:77:52:34:62:C6:83:A2:FB:66:5D:97:08:E1:E2:AD:9B:66
httpd_1  |                 DirName:/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=Devilbox Root CA/emailAddress=cytopia@devilbox.org/dnQualifier=UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |                 serial:38:99:41:09:27:FD:77:0C:E0:36:A8:29:92:4A:B3:04:EA:D1:E9:A0
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  |          a6:e0:e8:95:9b:8f:13:86:b5:9c:5e:4b:91:f7:cf:7c:e2:4e:
httpd_1  |          b5:10:a3:8d:9f:bc:fe:61:0f:41:15:e4:91:ed:9a:1e:c7:81:
httpd_1  |          04:f7:7a:04:30:5e:b3:54:a6:61:3c:29:f5:20:f5:3d:93:b4:
httpd_1  |          f5:90:a2:de:94:fb:f6:12:2d:10:aa:5e:5b:4b:21:a6:81:2c:
httpd_1  |          dc:9b:ee:6f:89:b4:c7:2d:59:5d:ec:75:65:e3:93:16:e4:56:
httpd_1  |          85:4a:25:93:69:80:fc:38:94:9a:32:a0:87:02:9f:bb:37:db:
httpd_1  |          7d:4d:94:5a:8a:60:cf:25:15:a2:be:6f:2a:67:a8:43:90:02:
httpd_1  |          2a:39:8e:c4:48:4a:74:6b:2f:e3:42:f8:9a:57:3f:52:98:04:
httpd_1  |          26:f9:e5:b8:80:52:bb:38:79:ef:f0:27:b7:ff:9a:99:5c:43:
httpd_1  |          1f:51:f3:e7:51:97:e3:24:40:67:04:f4:08:70:14:8f:2f:93:
httpd_1  |          9d:b5:d2:c5:dd:62:f7:4d:64:d8:da:d3:f6:80:e5:39:28:77:
httpd_1  |          17:6e:7d:97:81:dd:3f:73:91:f7:e8:63:20:a0:13:94:3c:33:
httpd_1  |          a2:99:70:9a:d4:58:ad:76:66:e3:e7:41:b8:ad:1f:42:7c:51:
httpd_1  |          5c:a9:4d:35:f1:69:78:da:d3:a7:38:58:27:1f:60:91:7e:f8:
httpd_1  |          67:84:c2:5f
httpd_1  | /etc/httpd/cert/main/localhost.crt: OK
httpd_1  | root $ chown -R 197609:197609 /ca
httpd_1  | [INFO] Starting supervisord: 3.3.5
httpd_1  | 2021-11-05 03:06:56,273 INFO Set uid to user 0 succeeded
httpd_1  | 2021-11-05 03:06:56,274 INFO supervisord started with pid 1
httpd_1  | 2021-11-05 03:06:57,275 INFO spawned: 'httpd' with pid 235
httpd_1  | 2021-11-05 03:06:57,276 INFO spawned: 'watcherd' with pid 236
httpd_1  | 2021-11-05 03:06:58,278 INFO success: httpd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | 2021-11-05 03:06:58,278 INFO success: watcherd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
httpd_1  | watcherd: [2021-11-05 03:07:00] Starting daemon.
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/mass/.idea.loc.key -subj '/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=.idea.loc/emailAddress=admin@.idea.loc' -out /etc/httpd/cert/mass/.idea.loc.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/mass/.idea.loc.csr -CA /ca/devilbox-ca.crt -CAkey /ca/devilbox-ca.key -CAcreateserial -out /etc/httpd/cert/mass/.idea.loc.crt
httpd_1  | Certificate:
httpd_1  |     Data:
httpd_1  |         Version: 3 (0x2)
httpd_1  |         Serial Number:
httpd_1  |             67:b6:3b:94:35:25:ea:76:eb:9b:47:62:ad:a8:b1:ff:06:55:10:f4
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 = UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |         Validity
httpd_1  |             Not Before: Nov  5 03:07:00 2021 GMT
httpd_1  |             Not After : Feb  8 03:07:00 2024 GMT
httpd_1  |         Subject: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = .idea.loc, emailAddress = admin@.idea.loc
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:b1:df:ef:06:77:24:6e:dc:91:9a:fa:26:cf:dc:
httpd_1  |                     d2:86:74:de:76:8a:eb:27:8d:b0:da:d7:4c:69:8b:
httpd_1  |                     d6:2c:f9:17:0f:92:1b:37:9b:30:f2:c1:8f:d7:ff:
httpd_1  |                     d7:03:30:a9:48:df:96:71:10:59:70:20:0a:51:03:
httpd_1  |                     8a:ca:aa:32:7b:dc:1f:5f:ca:ac:3f:1d:f8:96:19:
httpd_1  |                     af:50:35:9f:41:14:c2:20:9a:73:71:a1:c1:65:32:
httpd_1  |                     e1:04:f5:d0:55:05:14:06:3f:50:e8:2b:02:db:76:
httpd_1  |                     d1:6d:f7:f6:32:f5:fc:03:ee:63:b5:14:d4:21:2c:
httpd_1  |                     24:ef:bb:e6:f1:da:52:c8:6b:ea:70:7c:69:36:de:
httpd_1  |                     da:48:2d:7b:d6:99:b5:a3:10:12:6f:77:0c:a6:2a:
httpd_1  |                     b3:30:ae:27:d3:b8:a1:c6:4a:07:76:28:af:38:fc:
httpd_1  |                     ef:4a:c0:be:ea:c3:12:f4:fb:59:ab:60:6d:14:7a:
httpd_1  |                     9c:c7:50:75:fb:2f:d5:2f:99:be:b1:ec:2b:03:02:
httpd_1  |                     8b:24:31:e6:1b:42:a9:ed:c3:4a:52:57:e6:15:01:
httpd_1  |                     27:9d:86:5d:a4:15:81:aa:58:74:8c:e8:8f:c7:cc:
httpd_1  |                     a8:20:b0:94:b5:f0:fe:c8:5c:8e:f6:17:ac:58:8d:
httpd_1  |                     10:3b:e3:6c:db:24:56:e2:11:93:72:70:05:67:33:
httpd_1  |                     c9:1b
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  |                 1F:41:BC:24:F7:68:83:2A:AC:E9:A8:2A:99:CB:24:88:A1:D8:D7:CA
httpd_1  |             X509v3 Key Usage: critical
httpd_1  |                 Digital Signature, Key Encipherment
httpd_1  |             X509v3 Authority Key Identifier:
httpd_1  |                 keyid:50:2A:29:77:52:34:62:C6:83:A2:FB:66:5D:97:08:E1:E2:AD:9B:66
httpd_1  |                 DirName:/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=Devilbox Root CA/emailAddress=cytopia@devilbox.org/dnQualifier=UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |                 serial:38:99:41:09:27:FD:77:0C:E0:36:A8:29:92:4A:B3:04:EA:D1:E9:A0
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:.idea.loc, DNS:*..idea.loc
httpd_1  |     Signature Algorithm: sha256WithRSAEncryption
httpd_1  |          6d:b8:28:ec:a1:60:fe:d8:06:38:46:74:f1:b7:31:47:8c:0c:
httpd_1  |          58:50:4a:05:92:de:64:4b:3f:95:1c:da:63:30:da:8c:f9:2d:
httpd_1  |          2c:91:d6:e4:78:d2:b6:49:e2:a3:09:62:e2:26:1d:a5:8b:36:
httpd_1  |          04:f6:43:c3:9c:8d:d7:09:ab:92:14:3d:2d:41:95:f5:78:1d:
httpd_1  |          1a:a6:6f:00:44:49:42:b8:cb:a2:b5:fd:f7:5f:a7:ee:69:ab:
httpd_1  |          ba:1b:b5:fb:62:5e:8f:6a:6b:cf:3c:08:e4:54:c0:e4:a7:d0:
httpd_1  |          c8:c4:e7:03:33:40:07:e4:01:a9:20:82:ca:89:56:3e:a2:5b:
httpd_1  |          71:00:7f:3d:e4:2e:c0:e0:8a:6e:55:18:46:d7:a1:83:cb:a7:
httpd_1  |          5a:d0:f9:91:79:cc:e4:84:45:f2:f7:e8:52:41:53:8d:29:37:
httpd_1  |          29:be:fc:43:9a:c2:9c:15:ca:6a:ca:0b:36:6d:40:07:b0:e0:
httpd_1  |          2e:f7:de:e0:30:15:8d:c9:57:98:11:c7:08:e0:bb:ee:da:4f:
httpd_1  |          0c:d4:d6:61:ef:5c:34:cc:2f:0d:ca:76:77:a4:1a:22:dc:17:
httpd_1  |          cb:9f:a8:3f:8d:df:18:8d:ac:ba:2f:d0:72:6c:be:6f:48:23:
httpd_1  |          78:74:6e:cc:da:28:21:59:e6:4a:09:8f:dd:d4:eb:ed:f9:99:
httpd_1  |          8f:ba:14:a0
httpd_1  | /etc/httpd/cert/mass/.idea.loc.crt: OK
httpd_1  | $ vhost-gen -p "/shared/httpd/.idea" -n ".idea" -c /etc/vhost-gen/mass.yml -o "/shared/httpd/.idea/.devilbox/" -s -v -m both
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading configuration file        (-c): /etc/vhost-gen/mass.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading vhost template (global)   (-t): /etc/vhost-gen/templates/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading vhost template (override) (-o): /shared/httpd/.idea/.devilbox/nginx.yml
httpd_1  | vhost-gen: [WARN]  (2021-11-05 03:07:00): Override Vhost template not found: /shared/httpd/.idea/.devilbox/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Creating vhost type: https and http (both)
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Using vhost name: .idea.loc
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Log setting: dir -> True
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Log setting: Not specified
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Vhost config written to: /etc/httpd/vhost.d/.idea.conf
httpd_1  | watcherd: [2021-11-05 03:07:00] [OK]  ADD: succeeded: /shared/httpd/.idea
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/mass/skinnerclothingco.loc.key -subj '/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=skinnerclothingco.loc/emailAddress=admin@skinnerclothingco.loc' -out /etc/httpd/cert/mass/skinnerclothingco.loc.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/mass/skinnerclothingco.loc.csr -CA /ca/devilbox-ca.crt -CAkey /ca/devilbox-ca.key -CAcreateserial -out /etc/httpd/cert/mass/skinnerclothingco.loc.crt
httpd_1  | Certificate:
httpd_1  |     Data:
httpd_1  |         Version: 3 (0x2)
httpd_1  |         Serial Number:
httpd_1  |             67:b6:3b:94:35:25:ea:76:eb:9b:47:62:ad:a8:b1:ff:06:55:10:f5
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 = UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |         Validity
httpd_1  |             Not Before: Nov  5 03:07:00 2021 GMT
httpd_1  |             Not After : Feb  8 03:07:00 2024 GMT
httpd_1  |         Subject: C = DE, ST = Berlin, L = Berlin, O = Devilbox, OU = Devilbox, CN = skinnerclothingco.loc, emailAddress = admin@skinnerclothingco.loc
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:aa:9c:56:5c:ab:7c:f4:51:3f:1c:f2:b9:38:86:
httpd_1  |                     e7:26:c0:8a:1e:f0:91:dd:77:f7:0c:ce:55:df:0c:
httpd_1  |                     6f:e0:1c:40:d7:22:a1:a9:59:a5:8d:ef:ec:6a:df:
httpd_1  |                     25:ff:eb:e9:94:f2:2d:ed:2f:f0:19:d8:8a:15:00:
httpd_1  |                     6e:46:ae:cd:63:91:52:dc:e8:da:26:1a:b8:4f:10:
httpd_1  |                     a7:5c:ce:fb:62:b5:76:4b:09:f0:92:1a:51:e1:e5:
httpd_1  |                     97:17:3b:7e:23:c7:78:e9:fd:1d:81:0c:00:51:bb:
httpd_1  |                     90:1a:db:94:4e:a6:80:96:8f:52:5f:b5:61:32:6e:
httpd_1  |                     9f:1a:15:2a:42:89:e4:94:9d:f2:bc:53:cf:5c:53:
httpd_1  |                     20:1c:96:49:25:84:2a:dd:31:fd:bc:ec:6e:4a:f0:
httpd_1  |                     b3:2c:9b:a6:f7:0c:c5:f0:b2:85:1d:26:69:6d:98:
httpd_1  |                     b0:3a:82:19:0f:f5:c2:11:41:53:d8:9c:34:39:d6:
httpd_1  |                     da:01:c0:4c:61:04:9d:d6:a9:75:71:18:b5:56:d5:
httpd_1  |                     1b:ec:5c:92:71:7c:60:2f:e5:86:95:98:6f:f9:b8:
httpd_1  |                     1e:1d:5a:fd:bc:a3:9b:8e:84:56:a0:a9:df:41:5c:
httpd_1  |                     5c:be:ea:56:f4:85:7c:60:95:9c:ce:93:a5:81:e5:
httpd_1  |                     da:1f:e9:40:1b:1f:f5:17:de:b7:fa:c9:08:f1:1a:
httpd_1  |                     5e:5b
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  |                 D8:6D:15:4A:CC:56:6B:7E:C3:BB:1C:DD:94:4C:BA:FD:E1:BA:86:D8
httpd_1  |             X509v3 Key Usage: critical
httpd_1  |                 Digital Signature, Key Encipherment
httpd_1  |             X509v3 Authority Key Identifier:
httpd_1  |                 keyid:50:2A:29:77:52:34:62:C6:83:A2:FB:66:5D:97:08:E1:E2:AD:9B:66
httpd_1  |                 DirName:/C=DE/ST=Berlin/L=Berlin/O=Devilbox/OU=Devilbox/CN=Devilbox Root CA/emailAddress=cytopia@devilbox.org/dnQualifier=UCopd1I0YsaDovtmXZcI4eKtm2Y=
httpd_1  |                 serial:38:99:41:09:27:FD:77:0C:E0:36:A8:29:92:4A:B3:04:EA:D1:E9:A0
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:skinnerclothingco.loc, DNS:*.skinnerclothingco.loc
httpd_1  |     Signature Algorithm: sha256WithRSAEncryption
httpd_1  |          57:ac:92:d7:af:b1:f0:1c:97:4e:be:24:c0:ab:ae:8c:b6:fc:
httpd_1  |          0c:11:aa:05:8a:b0:4f:26:f9:22:b0:9f:83:7a:33:d2:44:94:
httpd_1  |          05:fa:86:f2:d6:8f:07:75:0a:a5:97:08:f5:c8:35:a3:e4:5e:
httpd_1  |          9f:1d:58:22:62:9f:e6:cb:88:ce:9f:d4:f8:4f:03:c9:c2:67:
httpd_1  |          d5:2d:27:e4:53:07:a8:79:18:10:ac:c3:e3:a1:89:a9:ce:cb:
httpd_1  |          c5:6e:1d:ec:9c:1c:47:60:1d:3a:1c:63:0f:e0:03:4a:a5:ab:
httpd_1  |          07:25:71:ea:e3:78:06:66:2d:86:1b:82:34:fe:cf:87:da:1e:
httpd_1  |          63:8b:0f:b0:42:a3:99:c8:f0:ca:e5:66:d8:6e:f0:c2:b9:c9:
httpd_1  |          49:63:e0:8f:17:05:23:fa:6c:3c:a5:37:d8:ef:79:31:ee:10:
httpd_1  |          6e:de:80:2e:7a:db:80:f9:ee:9c:8b:e7:22:4f:88:58:4b:40:
httpd_1  |          72:2a:3e:a7:0f:00:58:5f:3a:a3:69:c5:ba:26:a3:15:9b:c3:
httpd_1  |          6a:9c:74:67:6e:28:95:3f:55:0f:ab:84:c0:2a:6a:d2:7f:0d:
httpd_1  |          a7:2c:c0:76:1f:6a:2c:69:22:91:20:6c:ba:e4:00:a1:bc:98:
httpd_1  |          8b:4e:ed:5b:d2:06:c0:b8:47:b5:5e:5b:32:52:d6:ee:9f:b3:
httpd_1  |          5c:35:2a:43
httpd_1  | /etc/httpd/cert/mass/skinnerclothingco.loc.crt: OK
httpd_1  | $ vhost-gen -p "/shared/httpd/skinnerclothingco" -n "skinnerclothingco" -c /etc/vhost-gen/mass.yml -o "/shared/httpd/skinnerclothingco/.devilbox/" -s -v -m both
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading configuration file        (-c): /etc/vhost-gen/mass.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading vhost template (global)   (-t): /etc/vhost-gen/templates/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Loading vhost template (override) (-o): /shared/httpd/skinnerclothingco/.devilbox/nginx.yml
httpd_1  | vhost-gen: [WARN]  (2021-11-05 03:07:00): Override Vhost template not found: /shared/httpd/skinnerclothingco/.devilbox/nginx.yml
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Creating vhost type: https and http (both)
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Using vhost name: skinnerclothingco.loc
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Log setting: dir -> True
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Log setting: Not specified
httpd_1  | vhost-gen: [INFO]  (2021-11-05 03:07:00): Vhost config written to: /etc/httpd/vhost.d/skinnerclothingco.conf
httpd_1  | watcherd: [2021-11-05 03:07:00] [OK]  ADD: succeeded: /shared/httpd/skinnerclothingco
httpd_1  | 2021/11/05 03:07:00 [notice] 314#314: signal process started
httpd_1  | watcherd: [2021-11-05 03:07:00] [OK]  TRIGGER succeeded: nginx -s stop
httpd_1  | watcherd: [2021-11-05 03:07:00] Using bash loop to watch for changes.
httpd_1  | 2021-11-05 03:07:00,909 INFO exited: httpd (exit status 0; expected)
httpd_1  | 2021-11-05 03:07:01,910 INFO spawned: 'httpd' with pid 351
httpd_1  | 2021-11-05 03:07:02,912 INFO success: httpd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
mongo_1  | {"t":{"$date":"2021-11-05T03:06:56.603+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-11-05T03:06:56.606+00:00"},"s":"W",  "c":"ASIO",     "id":22601,   "ctx":"main","msg":"No TransportLayer configured during NetworkInterface startup"}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:56.606+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-11-05T03:06:56.607+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-11-05T03:06:56.607+00:00"},"s":"I",  "c":"CONTROL",  "id":23403,   "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"4.4.8","gitVersion":"83b8bb8b6b325d8d8d3dfd2ad9f744bdad7d6ca0","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-11-05T03:06:56.607+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-11-05T03:06:56.607+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-11-05T03:06:56.607+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-11-05T03:06:56.607+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-11-05T03:06:56.608+00:00"},"s":"I",  "c":"STORAGE",  "id":22315,   "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=7479M,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-11-05T03:06:57.227+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:227811][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 49 through 50"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.251+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:251186][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 50 through 50"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.287+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:287858][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Main recovery loop: starting at 49/10624 to 50/256"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.327+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:327576][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 49 through 50"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.354+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:354376][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY_PROGRESS] Recovering log 50 through 50"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.374+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:374696][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global recovery timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.374+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:374753][1:0x7fb7cf271cc0], txn-recover: [WT_VERB_RECOVERY | WT_VERB_RECOVERY_PROGRESS] Set global oldest timestamp: (0, 0)"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.376+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":"[1636081617:376914][1:0x7fb7cf271cc0], 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: 22172"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.383+00:00"},"s":"I",  "c":"STORAGE",  "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":775}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.384+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-11-05T03:06:57.385+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-11-05T03:06:57.386+00:00"},"s":"I",  "c":"STORAGE",  "id":22262,   "ctx":"initandlisten","msg":"Timestamp monitor starting"}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.389+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-11-05T03:06:57.389+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-11-05T03:06:57.391+00:00"},"s":"I",  "c":"STORAGE",  "id":20536,   "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.394+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-11-05T03:06:57.395+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.395+00:00"},"s":"I",  "c":"NETWORK",  "id":23015,   "ctx":"listener","msg":"Listening on","attr":{"address":"0.0.0.0"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:06:57.395+00:00"},"s":"I",  "c":"NETWORK",  "id":23016,   "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:07:57.387+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081677:387261][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 3, snapshot max: 3 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:08:57.397+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081737:397868][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 5, snapshot max: 5 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:09:57.405+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081797:405181][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:10:57.411+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081857:411645][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 7, snapshot max: 7 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:11:57.419+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081917:419307][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:12:57.425+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636081977:425114][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 9, snapshot max: 9 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:29.340+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:46896","connectionId":1,"connectionCount":1}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:29.341+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn1","msg":"client metadata","attr":{"remote":"172.16.238.10:46896","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-11-05T03:13:29.365+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:46938","connectionId":2,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:29.365+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn2","msg":"client metadata","attr":{"remote":"172.16.238.10:46938","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-11-05T03:13:29.366+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"172.16.238.10:46942","connectionId":3,"connectionCount":3}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:29.366+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn3","msg":"client metadata","attr":{"remote":"172.16.238.10:46942","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-11-05T03:13:41.809+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn3","msg":"Connection ended","attr":{"remote":"172.16.238.10:46942","connectionId":3,"connectionCount":2}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:41.809+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn2","msg":"Connection ended","attr":{"remote":"172.16.238.10:46938","connectionId":2,"connectionCount":1}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:41.809+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn1","msg":"Connection ended","attr":{"remote":"172.16.238.10:46896","connectionId":1,"connectionCount":0}}
mongo_1  | {"t":{"$date":"2021-11-05T03:13:57.432+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082037:432808][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 10, snapshot max: 10 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:14:57.438+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082097:438595][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 11, snapshot max: 11 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:15:57.446+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082157:446360][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 12, snapshot max: 12 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:16:57.452+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082217:452316][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 13, snapshot max: 13 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:17:57.460+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082277:460259][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 14, snapshot max: 14 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:18:57.466+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082337:466511][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 15, snapshot max: 15 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
mongo_1  | {"t":{"$date":"2021-11-05T03:19:57.474+00:00"},"s":"I",  "c":"STORAGE",  "id":22430,   "ctx":"WTCheckpointThread","msg":"WiredTiger message","attr":{"message":"[1636082397:474405][1:0x7fb7c8262700], WT_SESSION.checkpoint: [WT_VERB_CHECKPOINT_PROGRESS] saving checkpoint snapshot min: 16, snapshot max: 16 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 22173"}}
php_1    | [INFO] Debug level: 2
php_1    | [INFO] Changing user 'devilbox' uid to: 197609
php_1    | root $ usermod -u 197609 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: 197609
php_1    | root $ groupmod -g 197609 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: Fri Nov  5 03:06:55 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    | [INFO] PHP.ini: xdebug.ini -> /usr/local/etc/php/conf.d/yyy-devilbox-user-runtime-xdebug.ini
php_1    | root $ cp /etc/php-custom.d/xdebug.ini /usr/local/etc/php/conf.d/yyy-devilbox-user-runtime-xdebug.ini
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-11-05 03:06:58,321 WARN No file matches via include "/etc/supervisor/custom.d/*.conf"
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/php-fpm.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/postfix.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/rsyslogd.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-11211-memcd-11211.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-27017-mongo-27017.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-3306-mysql-3306.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-443-httpd-443.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-5432-pgsql-5432.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-6379-redis-6379.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Included extra file "/etc/supervisor/conf.d/socat-80-httpd-80.conf" during parsing
php_1    | 2021-11-05 03:06:58,321 INFO Set uid to user 0 succeeded
php_1    | 2021-11-05 03:06:58,322 INFO supervisord started with pid 1
redis_1  | 1:C 05 Nov 2021 03:06:56.585 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1  | 1:C 05 Nov 2021 03:06:56.585 # Redis version=6.0.15, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1  | 1:C 05 Nov 2021 03:06:56.585 # 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 05 Nov 2021 03:06:56.586 * Running mode=standalone, port=6379.
redis_1  | 1:M 05 Nov 2021 03:06:56.586 # Server initialized
redis_1  | 1:M 05 Nov 2021 03:06:56.586 # 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 05 Nov 2021 03:06:56.586 # 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 05 Nov 2021 03:06:56.586 * Ready to accept connections
php_1    | 2021-11-05 03:06:59,324 INFO spawned: 'rsyslogd' with pid 1562
php_1    | 2021-11-05 03:06:59,325 INFO spawned: 'socat-3306-mysql-3306' with pid 1563
php_1    | 2021-11-05 03:06:59,325 INFO spawned: 'socat-6379-redis-6379' with pid 1564
php_1    | 2021-11-05 03:06:59,326 INFO spawned: 'postfix' with pid 1565
php_1    | 2021-11-05 03:06:59,327 INFO spawned: 'socat-27017-mongo-27017' with pid 1566
php_1    | 2021-11-05 03:06:59,328 INFO spawned: 'php-fpm' with pid 1567
php_1    | 2021-11-05 03:06:59,328 INFO spawned: 'socat-80-httpd-80' with pid 1570
php_1    | 2021-11-05 03:06:59,329 INFO spawned: 'socat-443-httpd-443' with pid 1571
php_1    | 2021-11-05 03:06:59,330 INFO spawned: 'socat-11211-memcd-11211' with pid 1572
php_1    | 2021-11-05 03:06:59,331 INFO spawned: 'socat-5432-pgsql-5432' with pid 1574
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-11-05 03:07:00,381 INFO success: rsyslogd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,381 INFO success: socat-3306-mysql-3306 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,381 INFO success: socat-6379-redis-6379 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,381 INFO success: postfix entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,381 INFO success: socat-27017-mongo-27017 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,382 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,382 INFO success: socat-80-httpd-80 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,382 INFO success: socat-443-httpd-443 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,382 INFO success: socat-11211-memcd-11211 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
php_1    | 2021-11-05 03:07:00,382 INFO success: socat-5432-pgsql-5432 entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
pgsql_1  |
pgsql_1  | PostgreSQL Database directory appears to contain a database; Skipping initialization
pgsql_1  |
pgsql_1  | 2021-11-05 03:06:57.021 UTC [1] LOG:  starting PostgreSQL 12.4 (Debian 12.4-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-11-05 03:06:57.022 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
pgsql_1  | 2021-11-05 03:06:57.022 UTC [1] LOG:  listening on IPv6 address "::", port 5432
pgsql_1  | 2021-11-05 03:06:57.025 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
pgsql_1  | 2021-11-05 03:06:57.035 UTC [27] LOG:  database system was shut down at 2021-11-05 03:06:38 UTC
pgsql_1  | 2021-11-05 03:06:57.038 UTC [1] LOG:  database system is ready to accept connections
pgsql_1  | 2021-11-05 03:20:07.574 UTC [1] LOG:  received fast shutdown request
pgsql_1  | 2021-11-05 03:20:07.577 UTC [1] LOG:  aborting any active transactions
pgsql_1  | 2021-11-05 03:20:07.578 UTC [1] LOG:  background worker "logical replication launcher" (PID 33) exited with exit code 1
pgsql_1  | 2021-11-05 03:20:07.578 UTC [28] LOG:  shutting down
mysql_1  | 2021-11-05 03:06:56+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | 2021-11-05 03:06:57+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
mysql_1  | 2021-11-05 03:06:57+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.22-1debian10 started.
mysql_1  | mysqld: [Warning] World-writable config file '/etc/mysql/conf.d/devilbox.cnf' is ignored.
mysql_1  | 2021-11-05T03:06:57.319155Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.22) starting as process 1
mysql_1  | 2021-11-05T03:06:57.325695Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
mysql_1  | 2021-11-05T03:06:57.505399Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
mysql_1  | 2021-11-05T03:06:57.577101Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
mysql_1  | 2021-11-05T03:06:57.661495Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
mysql_1  | 2021-11-05T03:06:57.661631Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
mysql_1  | 2021-11-05T03:06:57.664038Z 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-11-05T03:06:57.678966Z 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  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | mbind: Operation not permitted
mysql_1  | 2021-11-05T03:20:07.544965Z 0 [System] [MY-013172] [Server] Received SHUTDOWN from user <via user signal>. Shutting down mysqld (Version: 8.0.22).

# The main issue is connecting to xdebug. I have validation. But I cannot connect to the debugging client. See attached screenshots.
![Screenshot 2021-11-04 223034](https://user-images.githubusercontent.com/1735656/140453818-e78f95ad-2c59-48b8-8f18-0f42d1adb318.png)
354cdc312.png)

#Xdebug info
![Screenshot 2021-11-04 222316](https://user-images.githubusercontent.com/1735656/140453187-fc546e45-c8d8-4751-8ba7-692ac6d8a322.png)

#xdebug.ini
![Screenshot 2021-11-04 222609](https://user-images.githubusercontent.com/1735656/140453438-9c87c06a-8bcb-4e83-aa5d-908

#ipconfig for WSL
![Screenshot 2021-11-04 223403](https://user-images.githubusercontent.com/1735656/140454086-c7aa5899-04ea-4266-8545-0466a3eecd07.png)

#Final Notes
I have been all over the web to try to configure this correctly. I think the documentation needs to be updated. What gives?
stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.