Windows Home Docker Toolbox 404 Page not found

Codebase
Built-in vanilla Drupal

Describe your issue
I installed Docker Toolbox on my Windows 10 Home and after I fired up my Docker Quickstart Terminal and running docker-compose up I just can’t seem to access my Drupal Project.
http://192.168.99.100 returns ‘404 Page not found’ and my PROJECT_BASE_URL just can’t reach the site.
Also: I don’t know if this is related to my issue in any way but I also have installed Apache with PHP 7.1

Output of docker info

Containers: 7
 Running: 0
 Paused: 0
 Stopped: 7
Images: 7
Server Version: 18.06.1-ce
Storage Driver: aufs
 Root Dir: /mnt/sda1/var/lib/docker/aufs
 Backing Filesystem: extfs
 Dirs: 71
 Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
 Volume: local
 Network: bridge host macvlan null overlay
 Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
 seccomp
  Profile: default
Kernel Version: 4.9.93-boot2docker
Operating System: Boot2Docker 18.06.1-ce (TCL 8.2.1); HEAD : c7e5c3e - Wed Aug 22 16:27:42 UTC 2018
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 995.6MiB
Name: default
ID: YOO7:NXS7:LXUH:TW7X:WMXK:YQUF:5APQ:MK7U:GFZD:S2AK:MGBH:DQS2
Docker Root Dir: /mnt/sda1/var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
 provider=virtualbox
Experimental: false
Insecure Registries:
 127.0.0.0/8
Live Restore Enabled: false

Contents of your docker-compose.yml

version: "2"

services:
  mariadb:
    image: wodby/mariadb:$MARIADB_TAG
    container_name: "${PROJECT_NAME}_mariadb"
    stop_grace_period: 30s
    environment:
      MYSQL_ROOT_PASSWORD: $DB_ROOT_PASSWORD
      MYSQL_DATABASE: $DB_NAME
      MYSQL_USER: $DB_USER
      MYSQL_PASSWORD: $DB_PASSWORD

  php:
    image: wodby/drupal-php:$PHP_TAG
    container_name: "${PROJECT_NAME}_php"
    environment:
      PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
      DB_HOST: $DB_HOST
      DB_USER: $DB_USER
      DB_PASSWORD: $DB_PASSWORD
      DB_NAME: $DB_NAME
      DB_DRIVER: $DB_DRIVER
    volumes:
      - ./:/var/www/html

  nginx:
    image: wodby/nginx:$NGINX_TAG
    container_name: "${PROJECT_NAME}_nginx"
    depends_on:
      - php
    environment:
      NGINX_STATIC_OPEN_FILE_CACHE: "off"
      NGINX_ERROR_LOG_LEVEL: debug
      NGINX_BACKEND_HOST: php
      NGINX_SERVER_ROOT: /var/www/html/web
      NGINX_VHOST_PRESET: $NGINX_VHOST_PRESET
    volumes:
      - ./:/var/www/html
    labels:
      - 'traefik.backend=nginx'
      - 'traefik.port=80'
      - 'traefik.frontend.rule=Host:${PROJECT_BASE_URL}'

  mailhog:
    image: mailhog/mailhog
    container_name: "${PROJECT_NAME}_mailhog"
    labels:
      - 'traefik.backend=mailhog'
      - 'traefik.port=8025'
      - 'traefik.frontend.rule=Host:mailhog.${PROJECT_BASE_URL}'

  pma:
    image: phpmyadmin/phpmyadmin
    container_name: "${PROJECT_NAME}_pma"
    environment:
      PMA_HOST: $DB_HOST
      PMA_USER: $DB_USER
      PMA_PASSWORD: $DB_PASSWORD
      PHP_UPLOAD_MAX_FILESIZE: 1G
      PHP_MAX_INPUT_VARS: 1G
    labels:
      - 'traefik.backend=pma'
      - 'traefik.port=80'
      - 'traefik.frontend.rule=Host:pma.${PROJECT_BASE_URL}'

  portainer:
    image: portainer/portainer
    container_name: "${PROJECT_NAME}_portainer"
    command: --no-auth -H unix:///var/run/docker.sock
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    labels:
      - 'traefik.backend=portainer'
      - 'traefik.port=9000'
      - 'traefik.frontend.rule=Host:portainer.${PROJECT_BASE_URL}'

  traefik:
    image: traefik
    container_name: "${PROJECT_NAME}_traefik"
    command: -c /dev/null --web --docker --logLevel=INFO
    ports:
      - '8000:80'
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

Contents of your .env

### PROJECT SETTINGS

PROJECT_NAME=drupal
PROJECT_BASE_URL=drupal.docker.localhost

DB_NAME=drupal
DB_USER=drupal
DB_PASSWORD=drupal
DB_ROOT_PASSWORD=password
DB_HOST=mariadb
DB_DRIVER=mysql

### --- MARIADB ----

MARIADB_TAG=10.1-3.3.5
#MARIADB_TAG=10.3-3.3.5
#MARIADB_TAG=10.2-3.3.5

### --- VANILLA DRUPAL ----
### [DRUPAL_VERSION]-[PHP_VERSION]-[STABILITY_TAG]

# Drupal 8

DRUPAL_TAG=8-7.2-4.7.5
#DRUPAL_TAG=8-7.1-4.7.5
#DRUPAL_TAG=8-7.0-4.7.5

### --- PHP ----

# Linux (uid 1000 gid 1000)

PHP_TAG=7.1-dev-4.7.5
#PHP_TAG=7.2-dev-4.7.5
#PHP_TAG=7.0-dev-4.7.5
#PHP_TAG=5.6-dev-4.7.5
#PHP_TAG=5.3-dev-4.7.5

### --- NGINX ----

NGINX_TAG=1.15-5.0.8
#NGINX_TAG=1.14-5.0.8

NGINX_VHOST_PRESET=drupal8
#NGINX_VHOST_PRESET=drupal7
#NGINX_VHOST_PRESET=drupal6

### OTHERS

ADMINER_TAG=4.6-2.2.2
APACHE_TAG=2.4-4.0.0
ATHENAPDF_TAG=2.10.0
DRUPAL_NODE_TAG=1.0-2.0.0
MEMCACHED_TAG=1.5-2.1.1
OPENSMTPD_TAG=6.0-1.4.0
RSYSLOG_TAG=latest
VARNISH_TAG=4.1-3.0.5
WEBGRIND_TAG=1.5-1.4.6

Logs output docker-compose logs

Attaching to drupal_nginx, drupal_portainer, drupal_pma, drupal_mailhog, drupal_traefik, drupal_php, drupal_mariadb
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: using the "epoll" event method
drupal_nginx | 2018/10/09 15:38:11 [info] 1#1: [ngx_pagespeed 1.13.35.2-0] SharedMemCache: pagespeed_default_shm/metadata_cache, sectors = 128, entries/sector = 2226,  64-byte blocks/sector = 4452, total footprint: 52445184
drupal_nginx | 2018/10/09 15:38:11 [info] 1#1: [ngx_pagespeed 1.13.35.2-0] Initializing shared memory for path: /var/cache/ngx_pagespeed/ flush .
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: nginx/1.15.3
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: built by gcc 6.4.0 (Alpine 6.4.0)
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: OS: Linux 4.9.93-boot2docker
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: getrlimit(RLIMIT_NOFILE): 1048576:1048576
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: start worker processes
drupal_nginx | 2018/10/09 15:38:11 [notice] 1#1: start worker process 30
drupal_nginx | 2018/10/09 15:38:11 [info] 30#30: [ngx_pagespeed 1.13.35.2-0] Reusing shared memory for path: /var/cache/ngx_pagespeed/ flush .
drupal_nginx | 2018/10/09 15:39:29 [notice] 1#1: signal 15 (SIGTERM) received, exiting
drupal_nginx | 2018/10/09 15:39:29 [notice] 30#30: exiting
drupal_nginx | 2018/10/09 15:39:29 [info] 30#30: [ngx_pagespeed 1.13.35.2-0] [1009/153929:INFO:google_message_handler.cc(53)] NgxBaseFetch::Terminate rounding up 0 active base fetches.
drupal_nginx | 2018/10/09 15:39:29 [info] 30#30: [ngx_pagespeed 1.13.35.2-0] Shutting down PageSpeed child
drupal_nginx | 2018/10/09 15:39:29 [info] 30#30: [ngx_pagespeed 1.13.35.2-0] [1009/153929:INFO:serf_url_async_fetcher.cc(781)] Serf threaded not actually started, quick shutdown.
drupal_nginx | 2018/10/09 15:39:29 [info] 30#30: [ngx_pagespeed 1.13.35.2-0] [1009/153929:INFO:proxy_fetch.cc(88)] ProxyFetchFactory exiting with 0 outstanding requests.
drupal_nginx | 2018/10/09 15:39:29 [notice] 30#30: exit
drupal_nginx | 2018/10/09 15:39:29 [notice] 1#1: signal 17 (SIGCHLD) received from 30
drupal_nginx | 2018/10/09 15:39:29 [notice] 1#1: worker process 30 exited with code 0
drupal_nginx | 2018/10/09 15:39:29 [notice] 1#1: exit
drupal_pma   | /usr/lib/python2.7/site-packages/supervisor/options.py:298: UserWarning: Supervisord is running as root and it is searching for its configuration file in default locations (including its current working directory); you probably want to specify a "-c" argument specifying an absolute path to a configuration file for improved security.
drupal_pma   |   'Supervisord is running as root and it is searching '
drupal_pma   | 2018-10-09 15:38:12,273 CRIT Supervisor running as root (no user in config file)
drupal_pma   | 2018-10-09 15:38:12,277 INFO Included extra file "/etc/supervisor.d/nginx.ini" during parsing
drupal_pma   | 2018-10-09 15:38:12,278 INFO Included extra file "/etc/supervisor.d/php.ini" during parsing
drupal_pma   | 2018-10-09 15:38:12,301 INFO RPC interface 'supervisor' initialized
drupal_pma   | 2018-10-09 15:38:12,302 CRIT Server 'unix_http_server' running without any HTTP authentication checking
drupal_pma   | 2018-10-09 15:38:12,302 INFO supervisord started with pid 1
drupal_pma   | 2018-10-09 15:38:13,306 INFO spawned: 'php-fpm' with pid 21
drupal_pma   | 2018-10-09 15:38:13,309 INFO spawned: 'nginx' with pid 22
drupal_pma   | 2018-10-09 15:38:14,354 INFO success: php-fpm entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
drupal_pma   | 2018-10-09 15:38:14,355 INFO success: nginx entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
drupal_pma   | 2018-10-09 15:39:29,296 WARN received SIGTERM indicating exit request
drupal_pma   | 2018-10-09 15:39:29,297 INFO waiting for nginx, php-fpm to die
drupal_pma   | 2018-10-09 15:39:29,319 INFO stopped: nginx (exit status 0)
drupal_pma   | 2018-10-09 15:39:29,326 INFO stopped: php-fpm (exit status 0)
drupal_portainer | 2018/10/09 15:38:11 Starting Portainer 1.19.2 on :9000
drupal_traefik |WARNING time="2018-10-09T15:38:11Z" level=info msg="Using TOML configuration file /dev/null"
: Connection pool is full, discarding connection: 192.168.99.100drupal_traefik |
 time="2018-10-09T15:38:11Z" level=warning msg="web provider configuration is deprecated, you should use these options : api, rest provider, ping and metrics"
WARNINGdrupal_traefik |: Connection pool is full, discarding connection: 192.168.99.100
 time="2018-10-09T15:38:11Z" level=info msg="Traefik version v1.6.6 built on 2018-08-20_01:10:06PM"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="\nStats collection is disabled.\nHelp us improve Traefik by turning this feature on :)\nMore details on: https://docs.traefik.io/basics/#collected-data\n"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Preparing server http &{Address::80 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc420519720} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Preparing server traefik &{Address::8080 TLS:<nil> Redirect:<nil> Auth:<nil> WhitelistSourceRange:[] WhiteList:<nil> Compress:false ProxyProtocol:<nil> ForwardedHeaders:0xc420519760} with readTimeout=0s writeTimeout=0s idleTimeout=3m0s"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Starting provider *docker.Provider {\"Watch\":true,\"Filename\":\"\",\"Constraints\":null,\"Trace\":false,\"TemplateVersion\":2,\"DebugLogGeneratedTemplate\":false,\"Endpoint\":\"unix:///var/run/docker.sock\",\"Domain\":\"\",\"TLS\":null,\"ExposedByDefault\":true,\"UseBindPortIP\":false,\"SwarmMode\":false}"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Starting server on :80"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Starting server on :8080"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Server configuration reloaded on :80"
drupal_traefik | time="2018-10-09T15:38:11Z" level=info msg="Server configuration reloaded on :8080"
drupal_traefik | time="2018-10-09T15:39:29Z" level=info msg="I have to go..."
drupal_mailhog | 2018/10/09 15:38:11 Using in-memory storage
drupal_mailhog | 2018/10/09 15:38:11 [SMTP] Binding to address: 0.0.0.0:1025
drupal_traefik | time="2018-10-09T15:39:29Z" level=info msg="Stopping server gracefully"
drupal_traefik | time="2018-10-09T15:39:29Z" level=info msg="Server stopped"
drupal_traefik | time="2018-10-09T15:39:29Z" level=info msg="Shutting down"
drupal_mailhog | 2018/10/09 15:38:11 Serving under http://0.0.0.0:8025/
drupal_mailhog | [HTTP] Binding to address: 0.0.0.0:8025
drupal_mailhog | Creating API v1 with WebPath:
drupal_php   |WARNING [09-Oct-2018 15:38:10] NOTICE: fpm is running, pid 1
: Connection pool is full, discarding connection: 192.168.99.100
drupal_php   | [09-Oct-2018 15:38:10] NOTICE: ready to handle connections
drupal_php   | [09-Oct-2018 15:39:29] NOTICE: Terminating ...
drupal_mailhog | Creating API v2 with WebPath:
drupal_php   | [09-Oct-2018 15:39:29] NOTICE: exiting, bye-bye!
drupal_mailhog | [APIv1] KEEPALIVE /api/v1/events
drupal_mariadb | Initializing database
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] /usr/bin/mysqld (mysqld 10.1.36-MariaDB) starting as process 61 ...
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Using mutexes to ref count buffer pool pages
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: The InnoDB memory heap is disabled
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Compressed tables use zlib 1.2.11
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Using Linux native AIO
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Using SSE crc32 instructions
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Initializing buffer pool, size = 128.0M
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Completed initialization of buffer pool
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Setting file ./ibdata1 size to 10 MB
drupal_mariadb | 2018-10-09 15:38:11 140309998377864 [Note] InnoDB: Setting log file ./ib_logfile101 size to 128 MB
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Setting log file ./ib_logfile1 size to 128 MB
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Warning] InnoDB: New log files created, LSN=45781
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Doublewrite buffer not found: creating new
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Doublewrite buffer created
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: 128 rollback segment(s) are active.
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Warning] InnoDB: Creating foreign key constraint system tables.
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Foreign key constraint system tables created
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Creating tablespace and datafile system tables.
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Tablespace and datafile system tables created.
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB: Waiting for purge to start
drupal_mariadb | 2018-10-09 15:38:12 140309998377864 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 0
drupal_mariadb | 2018-10-09 15:38:12 140309394963176 [Note] InnoDB: Dumping buffer pool(s) not yet started
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] /usr/bin/mysqld (mysqld 10.1.36-MariaDB) starting as process 90 ...
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Using mutexes to ref count buffer pool pages
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: The InnoDB memory heap is disabled
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Compressed tables use zlib 1.2.11
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Using Linux native AIO
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Using SSE crc32 instructions
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Initializing buffer pool, size = 128.0M
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Completed initialization of buffer pool
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Highest supported file format is Barracuda.
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: 128 rollback segment(s) are active.
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB: Waiting for purge to start
drupal_mariadb | 2018-10-09 15:38:15 140026894314376 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 1616704
drupal_mariadb | 2018-10-09 15:38:15 140026297985768 [Note] InnoDB: Dumping buffer pool(s) not yet started
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] /usr/bin/mysqld (mysqld 10.1.36-MariaDB) starting as process 119 ...
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Using mutexes to ref count buffer pool pages
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: The InnoDB memory heap is disabled
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Compressed tables use zlib 1.2.11
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Using Linux native AIO
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Using SSE crc32 instructions
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Initializing buffer pool, size = 128.0M
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Completed initialization of buffer pool
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Highest supported file format is Barracuda.
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: 128 rollback segment(s) are active.
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB: Waiting for purge to start
drupal_mariadb | 2018-10-09 15:38:18 140337773247368 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 1616714
drupal_mariadb | 2018-10-09 15:38:18 140337176918760 [Note] InnoDB: Dumping buffer pool(s) not yet started
drupal_mariadb |
drupal_mariadb | PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
drupal_mariadb | To do so, start the server, then issue the following commands:
drupal_mariadb |
drupal_mariadb | '/usr/bin/mysqladmin' -u root password 'new-password'
drupal_mariadb | '/usr/bin/mysqladmin' -u root -h  password 'new-password'
drupal_mariadb |
drupal_mariadb | Alternatively you can run:
drupal_mariadb | '/usr/bin/mysql_secure_installation'
drupal_mariadb |
drupal_mariadb | which will also give you the option of removing the test
drupal_mariadb | databases and anonymous user created by default.  This is
drupal_mariadb | strongly recommended for production servers.
drupal_mariadb |
drupal_mariadb | See the MariaDB Knowledgebase at http://mariadb.com/kb or the
drupal_mariadb | MySQL manual for more instructions.
drupal_mariadb |
drupal_mariadb | Please report any problems at http://mariadb.org/jira
drupal_mariadb |
drupal_mariadb | The latest information about MariaDB is available at http://mariadb.org/.
drupal_mariadb | You can find additional information about the MySQL part at:
drupal_mariadb | http://dev.mysql.com
drupal_mariadb | Consider joining MariaDB's strong and vibrant community:
drupal_mariadb | https://mariadb.org/get-involved/
drupal_mariadb |
drupal_mariadb | Database initialized
drupal_mariadb | MySQL init process in progress...
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] mysqld (mysqld 10.1.36-MariaDB) starting as process 152 ...
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Using mutexes to ref count buffer pool pages
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: The InnoDB memory heap is disabled
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Compressed tables use zlib 1.2.11
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Using Linux native AIO
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Using SSE crc32 instructions
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Initializing buffer pool, size = 128.0M
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Completed initialization of buffer pool
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Highest supported file format is Barracuda.
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: 128 rollback segment(s) are active.
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB: Waiting for purge to start
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 1616724
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] Plugin 'FEEDBACK' is disabled.
drupal_mariadb | 2018-10-09 15:38:21 139949480880872 [Note] InnoDB: Dumping buffer pool(s) not yet started
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Warning] 'user' entry 'root@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Warning] 'user' entry '@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Warning] 'proxies_priv' entry '@% root@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] Reading of all Master_info entries succeded
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] Added new Master_info '' to hash table
drupal_mariadb | 2018-10-09 15:38:21 139950077209480 [Note] mysqld: ready for connections.
drupal_mariadb | Version: '10.1.36-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MariaDB Server
drupal_mariadb | 2018-10-09 15:38:23 139949480061672 [Warning] 'proxies_priv' entry '@% root@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb | 2018-10-09 15:38:23 139949480061672 [Warning] 'proxies_priv' entry '@% root@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb |
drupal_mariadb | 2018-10-09 15:38:23 139949479746280 [Note] mysqld: Normal shutdown
drupal_mariadb | 2018-10-09 15:38:23 139949479746280 [Note] Event Scheduler: Purging the queue. 0 events
drupal_mariadb | 2018-10-09 15:38:23 139949481163496 [Note] InnoDB: FTS optimize thread exiting.
drupal_mariadb | 2018-10-09 15:38:23 139949479746280 [Note] InnoDB: Starting shutdown...
drupal_mariadb | 2018-10-09 15:38:25 139949479746280 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
drupal_mariadb | 2018-10-09 15:38:26 139949479746280 [Note] InnoDB: Shutdown completed; log sequence number 1616734
drupal_mariadb | 2018-10-09 15:38:26 139949479746280 [Note] mysqld: Shutdown complete
drupal_mariadb |
drupal_mariadb |
drupal_mariadb | MySQL init process done. Ready for start up.
drupal_mariadb |
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] mysqld (mysqld 10.1.36-MariaDB) starting as process 1 ...
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Using mutexes to ref count buffer pool pages
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: The InnoDB memory heap is disabled
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Compressed tables use zlib 1.2.11
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Using Linux native AIO
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Using SSE crc32 instructions
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Initializing buffer pool, size = 128.0M
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Completed initialization of buffer pool
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Highest supported file format is Barracuda.
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: 128 rollback segment(s) are active.
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB: Waiting for purge to start
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.39-83.1 started; log sequence number 1616734
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] Plugin 'FEEDBACK' is disabled.
drupal_mariadb | 2018-10-09 15:38:26 140489160895208 [Note] InnoDB: Dumping buffer pool(s) not yet started
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] Server socket created on IP: '0.0.0.0'.
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Warning] 'proxies_priv' entry '@% root@97e84338ece4' ignored in --skip-name-resolve mode.
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] Reading of all Master_info entries succeded
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] Added new Master_info '' to hash table
drupal_mariadb | 2018-10-09 15:38:26 140489757223816 [Note] mysqld: ready for connections.
drupal_mariadb | Version: '10.1.36-MariaDB'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MariaDB Server
drupal_mariadb | 2018-10-09 15:39:29 140489160076008 [Note] mysqld: Normal shutdown
drupal_mariadb | 2018-10-09 15:39:29 140489160076008 [Note] Event Scheduler: Purging the queue. 0 events
drupal_mariadb | 2018-10-09 15:39:29 140489161177832 [Note] InnoDB: FTS optimize thread exiting.
drupal_mariadb | 2018-10-09 15:39:29 140489160076008 [Note] InnoDB: Starting shutdown...
drupal_mariadb | 2018-10-09 15:39:30 140489160076008 [Note] InnoDB: Waiting for page_cleaner to finish flushing of buffer pool
drupal_mariadb | 2018-10-09 15:39:31 140489160076008 [Note] InnoDB: Shutdown completed; log sequence number 1616744
drupal_mariadb | 2018-10-09 15:39:31 140489160076008 [Note] mysqld: Shutdown complete
drupal_mariadb |