Nginx error log docker

Nginx Docker file is configured to send error.log to /dev/stderr. RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log When we run docker ...

Nginx Docker file is configured to send error.log to /dev/stderr.

RUN ln -sf /dev/stdout /var/log/nginx/access.log 
    && ln -sf /dev/stderr /var/log/nginx/error.log

When we run docker logs --tail=10 -f nginx it show a combination of both error log and access log. Is there a docker command so I can only see the logs of error.log or stderr?

asked May 2, 2020 at 18:01

kumar's user avatar

2

Try this command to get only error.log:

docker logs -f nginx 1>/dev/null

And this one for access.log:

docker logs -f nginx 2>/dev/null

answered May 2, 2020 at 18:25

AttaBoy's user avatar

AttaBoyAttaBoy

2963 silver badges4 bronze badges

From the Dockerfile snippet you added in your question, it looks like you are using the official NGINX image.

The NGINX image is configured to send the main NGINX access and error logs to the Docker log collector by default. This is done by linking them to stdout and stderr, which causes all messages from both logs to be stored in the file/var/lib/docker/containers//-json.log on the Docker Host.

One method is to use the docker API.

You can enable the docker API and query the logs that way, in /etc/default/docker:

DOCKEROPTS='-H tcp://0.0.0.0:4243 -H unix:///var/run/docker.sock'

Then:

http://<docker host>:4243/containers/<container name>/logs?stderr=1

See:

https://www.docker.com/blog/tips-for-deploying-nginx-official-image-with-docker/

answered May 2, 2020 at 18:28

james's user avatar

jamesjames

8196 silver badges21 bronze badges

2

Deploy NGINX and NGINX Plus as the Docker container.

NGINX Plus, the high‑performance application delivery platform, load balancer, and web server, is available as the Docker container.

Prerequisites

  • Docker installation
  • Docker Hub account (NGINX Open Source)
  • nginx-repo.crt and nginx-repo.key files, Dockerfile for Docker image creation (NGINX Plus)

Running NGINX Open Source in a Docker Container

You can create an NGINX instance in a Docker container using the NGINX Open Source image from the Docker Hub.

  1. Launch an instance of NGINX running in a container and using the default NGINX configuration with the following command:

    $ docker run --name mynginx1 -p 80:80 -d nginx
    

    where:

    • mynginx1 is the name of the created container based on the NGINX image

    • the -d option specifies that the container runs in detached mode: the container continues to run until stopped but does not respond to commands run on the command line.

    • the -p option tells Docker to map the ports exposed in the container by the NGINX image (port 80) to the specified port on the Docker host. The first parameter specifies the port in the Docker host, the second parameter is mapped to the port exposed in the container

    The command returns the long form of the container ID: fcd1fb01b14557c7c9d991238f2558ae2704d129cf9fb97bb4fadf673a58580d. This form of ID is used in the name of log files.

  2. Verify that the container was created and is running with the docker ps command:

    $ docker ps
    CONTAINER ID  IMAGE         COMMAND               CREATED         STATUS        ...  
    fcd1fb01b145  nginx:latest  "nginx -g 'daemon of  16 seconds ago  Up 15 seconds ... 
       
        ... PORTS              NAMES
        ... 0.0.0.0:80->80/tcp mynginx1
    

This command also allows viewing the port mappings set in the previous step: the PORTS field in the output reports that port 80 on the Docker host is mapped to port 80 in the container.

Running NGINX Plus in a Docker Container

Docker can also be used with NGINX Plus. The difference between using Docker with NGINX Open Source is that you first need to create an NGINX Plus image, because as a commercial offering NGINX Plus is not available at Docker Hub.

Note: Never upload your NGINX Plus images to a public repository such as Docker Hub. Doing so violates your license agreement.

Creating NGINX Plus Docker Image

To generate an NGINX Plus image:

  1. Create the Docker build context, or a Dockerfile:

  2. As with NGINX Open Source, default NGINX Plus image has the same default settings:

    • access and error logs are linked to the Docker log collector
    • no volumes are specified: a Dockerfile can be used to create base images from which you can create new images with volumes specified, or volumes can be specified manually:
    VOLUME /usr/share/nginx/html
    VOLUME /etc/nginx
    
    • no files are copied from the Docker host as a container is created: you can add COPY definitions to each Dockerfile, or the image you create can be used as the basis for another image
  3. Log in to MyF5 Customer Portal and download your nginx-repo.crt and nginx-repo.key files. For a trial of NGINX Plus, the files are provided with your trial package.

  4. Copy the files to the directory where the Dockerfile is located.

  5. Create a Docker image, for example, nginxplus (note the final period in the command).

    $ docker build  --no-cache --secret id=nginx-key,src=nginx-repo.key --secret id=nginx-crt,src=nginx-repo.crt -t nginxplus .
    

    The --no-cache option tells Docker to build the image from scratch and ensures the installation of the latest version of NGINX Plus. If the Dockerfile was previously used to build an image without the --no-cache option, the new image uses the version of NGINX Plus from the previously built image from the Docker cache.

  6. Verify that the nginxplus image was created successfully with the docker images command:

    $ docker images nginxplus
    REPOSITORY  TAG     IMAGE ID      CREATED        SIZE
    nginxplus   latest  ef2bf65931cf  6 seconds ago  91.2 MB
    
  7. Create a container based on this image, for example, mynginxplus container:

    $ docker run --name mynginxplus -p 80:80 -d nginxplus
    
  8. Verify that the mynginxplus container is up and running with the docker ps command:

    $ docker ps
    CONTAINER ID  IMAGE             COMMAND               CREATED         STATUS        ...  
    eb7be9f439db  nginxplus:latest  "nginx -g 'daemon of  1 minute ago    Up 15 seconds ... 
       
        ... PORTS              NAMES
        ... 0.0.0.0:80->80/tcp mynginxplus
    

NGINX Plus containers are controlled and managed in the same way as NGINX Open Source containers.

Managing Content and Configuration Files

Content served by NGINX and NGINX configuration files can be managed in several ways:

  • files are maintained on the Docker host
  • files are copied from the Docker host to a container
  • files are maintained in the container

Maintaining Content and Configuration Files on the Docker Host

When the container is created, you can mount a local directory on the Docker host to a directory in the container. The NGINX image uses the default NGINX configuration, which uses /usr/share/nginx/html as the container’s root directory and puts configuration files in /etc/nginx. For a Docker host with content in the local directory /var/www and configuration files in /var/nginx/conf, run the command:

$ docker run --name mynginx2 --mount type=bind,source=/var/www,target=/usr/share/nginx/html,readonly --mount source=/var/nginx/conf,target=/etc/nginx/conf,readonly -p 80:80 -d nginx

Any change made to the files in the local directories /var/www and /var/nginx/conf on the Docker host are reflected in the directories /usr/share/nginx/html and /etc/nginx in the container. The readonly option means these directories can be changed only on the Docker host, not from within the container.

Copying Content and Configuration Files from the Docker Host

Docker can copy the content and configuration files from a local directory on the Docker host during container creation. Once a container is created, the files are maintained by creating a new container when files change or by modifying the files in the container.

A simple way to copy the files is to create a Dockerfile with commands that are run during generation of a new Docker image based on the NGINX image. For the file‑copy (COPY) commands in the Dockerfile, the local directory path is relative to the build context where the Dockerfile is located.

Let’s assume that the content directory is content and the directory for configuration files is conf, both subdirectories of the directory where the Dockerfile is located. The NGINX image has the default NGINX configuration files, including default.conf, in the /etc/nginx/conf.d directory. To use the configuration files from the Docker host only, delete the default files with the RUN command:

FROM nginx
RUN rm /etc/nginx/conf.d/default.conf
COPY content /usr/share/nginx/html
COPY conf /etc/nginx

Create NGINX image by running the command from the directory where the Dockerfile is located. The period (“.”) at the end of the command defines the current directory as the build context, which contains the Dockerfile and the directories to be copied:

$ docker build -t mynginx_image1 .

Create a container mynginx3 based on the mynginx_image1 image:

$ docker run --name mynginx3 -p 80:80 -d mynginx_image1

To make changes to the files in the container, use a helper container as described in the next section.

Maintaining Content and Configuration Files in the Container

As SSH cannot be used to access the NGINX container, to edit the content or configuration files directly you need to create a helper container that has shell access. For the helper container to have access to the files, create a new image that has the proper Docker data volumes defined for the image:

  1. Copy nginx content and configuration files and define the volume for the image with the Dockerfile:

    FROM nginx
    COPY content /usr/share/nginx/html
    COPY conf /etc/nginx
    VOLUME /usr/share/nginx/html
    VOLUME /etc/nginx
    
  2. Create the new NGINX image by running the following command:

    $ docker build -t mynginx_image2 .
    
  3. Create an NGINX container mynginx4 based on the mynginx_image2 image:

    $ docker run --name mynginx4 -p 80:80 -d mynginx_image2
    
  4. Start a helper container mynginx4_files that has a shell, providing access the content and configuration directories of the mynginx4 container we just created:

    $ docker run -i -t --volumes-from mynginx4 --name mynginx4_files debian /bin/bash
    root@b1cbbad63dd1:/#
    

    where:

    • the new mynginx4_files helper container runs in the foreground with a persistent standard input (the -i option) and a tty (the -t option). All volumes defined in mynginx4 are mounted as local directories in the helper container.
    • the debian argument means that the helper container uses the Debian image from Docker Hub. Because the NGINX image also uses Debian, it is most efficient to use Debian for the helper container, rather than having Docker load another operating system
    • the /bin/bash argument means that the bash shell runs in the helper container, presenting a shell prompt that you can use to modify files as needed

To start and stop the container, run the commands:

$ docker start mynginx4_files
$ docker stop mynginx4_files

To exit the shell but leave the container running, press Ctrl+p followed by Ctrl+q. To regain shell access to a running container, run this command:

$ docker attach mynginx4_files

To exit the shell and terminate the container, run the exit command.

Managing Logging

You can use default logging or customize logging.

Using Default Logging

By default, the NGINX image is configured to send NGINX access log and error log to the Docker log collector. This is done by linking them to stdout and stderr: all messages from both logs are then written to the file /var/lib/docker/containers/container-ID/container-ID-json.log on the Docker host. The container‑ID is the long‑form ID returned when you create a container. To display the long form ID, run the command:

$ docker inspect --format '{{ .Id }}' container-name

You can use both the Docker command line and the Docker Engine API to extract the log messages.

To extract log messages from the command line, run the command:

$ docker logs container-name

To extract log messages using the Docker Remote API, send a GET request using the Docker Unix sock:

$ curl --unix-sock /var/run/docker-sock http://localhost/containers/container-name/logs?stdout=1&stderr=1

To include only access log messages in the output, include only stdout=1. To limit the output to error log messages, include only stderr=1. For other available options, see Get container logs section of the Docker Engine API documentation.

Using Customized Logging

If you want to configure logging differently for certain configuration blocks (such as server {} and location {}), define a Docker volume for the directory in which to store the log files in the container, create a helper container to access the log files, and use any logging tools. To implement this, create a new image that contains the volume or volumes for the logging files.

For example, to configure NGINX to store log files in /var/log/nginx/log, add a VOLUME definition for this directory to the Dockerfile (provided that content and configuration Files are managed in the container):

FROM nginx
COPY content /usr/share/nginx/html
COPY conf /etc/nginx
VOLUME /var/log/nginx/log

Then you can create an image and use it to create an NGINX container and a helper container that have access to the logging directory. The helper container can have any desired logging tools installed.

Controlling NGINX

Since there is no direct access to the command line of the NGINX container, NGINX commands cannot be sent to a container directly. Instead, signals can be sent to a container via Docker kill command.

To reload the NGINX configuration, send the HUP signal to Docker:

$ docker kill -s HUP container-name

To restart NGINX, run this command to restart the container:

$ docker restart container-name

Nginx Docker file is configured to send error.log to /dev/stderr.

RUN ln -sf /dev/stdout /var/log/nginx/access.log 
    && ln -sf /dev/stderr /var/log/nginx/error.log

When we run docker logs --tail=10 -f nginx it show a combination of both error log and access log. Is there a docker command so I can only see the logs of error.log or stderr?

asked May 2, 2020 at 18:01

kumar's user avatar

2

Try this command to get only error.log:

docker logs -f nginx 1>/dev/null

And this one for access.log:

docker logs -f nginx 2>/dev/null

answered May 2, 2020 at 18:25

AttaBoy's user avatar

AttaBoyAttaBoy

2963 silver badges4 bronze badges

From the Dockerfile snippet you added in your question, it looks like you are using the official NGINX image.

The NGINX image is configured to send the main NGINX access and error logs to the Docker log collector by default. This is done by linking them to stdout and stderr, which causes all messages from both logs to be stored in the file/var/lib/docker/containers//-json.log on the Docker Host.

One method is to use the docker API.

You can enable the docker API and query the logs that way, in /etc/default/docker:

DOCKEROPTS='-H tcp://0.0.0.0:4243 -H unix:///var/run/docker.sock'

Then:

http://<docker host>:4243/containers/<container name>/logs?stderr=1

See:

https://www.docker.com/blog/tips-for-deploying-nginx-official-image-with-docker/

answered May 2, 2020 at 18:28

james's user avatar

jamesjames

8196 silver badges21 bronze badges

2

Thanks, below are the extra details. I think it is because ownership is not correct in the php container…

1.

$ docker exec -it dockermagento2_fpm_1 /bin/bash
root@f9a48232fbd7:/var/www/html# ps aux
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  20064  2868 ?        Ss   15:07   0:00 /bin/bash /usr/local/bin/docker-environment php-fpm -F
root        15  5.6  0.0  33660  2848 ?        R    15:07   0:01 usermod -u 9933 www-data
root        26  0.2  0.0  20232  3016 ?        Ss   15:07   0:00 /bin/bash
root        32  0.0  0.0  17500  2016 ?        R+   15:07   0:00 ps aux

2. This is my docker-compose.yml

version: "2"
services:
  web:
    image: meanbee/magento2-nginx:1.9
    ports:
      - "80:80"
    links:
      - fpm
      - db
    volumes_from:
      - appdata
    env_file:
      - ./global.env
    environment:
      - VIRTUAL_HOST=magento2.docker

  fpm:
    image: meanbee/magento2-php:7.0-fpm
    ports:
      - 9000
    links:
      - db
    volumes_from:
      - appdata
    env_file:
      - ./global.env

  db:
    image: mariadb:10
    ports:
      - 3306
    volumes_from:
      - dbdata
    environment:
      - MYSQL_ROOT_PASSWORD=magento2
      - MYSQL_DATABASE=magento2
      - MYSQL_USER=magento2
      - MYSQL_PASSWORD=magento2
      - TERM=meh

  cli:
    image: meanbee/magento2-php:7.0-cli
    links:
      - db
    volumes:
      - ~/.composer/cache:/root/.composer/cache
    volumes_from:
      - appdata
    env_file:
      - ./global.env
      - ./composer.env
    environment:
      - M2SETUP_INSTALL_DB=true
      - M2SETUP_DB_HOST=db
      - M2SETUP_DB_NAME=magento2
      - M2SETUP_DB_USER=magento2
      - M2SETUP_DB_PASSWORD=magento2
      - M2SETUP_BASE_URL=http://magento2.docker/
      - M2SETUP_BACKEND_FRONTNAME=admin
      - M2SETUP_ADMIN_FIRSTNAME=Admin
      - M2SETUP_ADMIN_LASTNAME=User
      - M2SETUP_ADMIN_EMAIL=dummy@gmail.com
      - M2SETUP_ADMIN_USER=admin
      - M2SETUP_ADMIN_PASSWORD=password1
      - M2SETUP_VERSION=2.0.2
      # - M2SETUP_USE_SAMPLE_DATA=true

  appdata:
    image: tianon/true
    volumes:
      - ./magento:/var/www/magento

  dbdata:
    image: tianon/true
    volumes:
      - /var/lib/mysql

3. I’m using Docker for Mac.

4.
docker logs —details dockermagento2_web_1

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
 nginx: configuration file /etc/nginx/nginx.conf test is successful
 nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
 nginx: configuration file /etc/nginx/nginx.conf test is successful
 2016/10/04 14:56:24 [error] 12#12: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:14:56:24 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 2016/10/04 14:56:25 [error] 12#12: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:14:56:25 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 172.20.0.1 - - [04/Oct/2016:15:01:51 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 2016/10/04 15:01:51 [error] 12#12: *4 connect() failed (113: No route to host) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
 2016/10/04 15:04:32 [error] 12#12: *6 connect() failed (113: No route to host) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:15:04:32 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
 nginx: configuration file /etc/nginx/nginx.conf test is successful
 2016/10/04 15:07:09 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:15:07:09 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 2016/10/04 15:07:10 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:15:07:10 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
 2016/10/04 15:09:01 [error] 13#13: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
 172.20.0.1 - - [04/Oct/2016:15:09:01 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"

docker logs —details dockermagento2_fpm_1

 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = www-data, group = root
 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = , group = root
 [04-Oct-2016 14:58:05] ERROR: [pool www] please specify user and group other than root
 [04-Oct-2016 14:58:05] ERROR: [pool www] please specify user and group other than root
 [04-Oct-2016 14:58:05] ERROR: FPM initialization failed
 [04-Oct-2016 14:58:05] ERROR: FPM initialization failed
 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = www-data, group = www-data
 groupmod: GID '990' already exists
 [04-Oct-2016 15:12:31] ERROR: [pool www] please specify user and group other than root
 [04-Oct-2016 15:12:31] ERROR: [pool www] please specify user and group other than root
 [04-Oct-2016 15:12:31] ERROR: FPM initialization failed
 [04-Oct-2016 15:12:31] ERROR: FPM initialization failed    

**docker logs --details dockermagento2_cli_1**

 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = www-data, group = root
 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = , group = root
 Do not run Composer as root/super user! See https://getcomposer.org/root for details
 Do not run Composer as root/super user! See https://getcomposer.org/root for details
 Updating www-data uid and gid
 Docker: uid = 33, gid = 0
 Incumbent: user = www-data, group = www-data
 groupmod: GID '990' already exists
 Do not run Composer as root/super user! See https://getcomposer.org/root for details
 Do not run Composer as root/super user! See https://getcomposer.org/root for details

**docker logs --details dockermagento2_db_1**

 Initializing database

 PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
 To do so, start the server, then issue the following commands:

 '/usr/bin/mysqladmin' -u root password 'new-password'
 '/usr/bin/mysqladmin' -u root -h  password 'new-password'

 Alternatively you can run:
 '/usr/bin/mysql_secure_installation'

 which will also give you the option of removing the test
 databases and anonymous user created by default.  This is
 strongly recommended for production servers.

 See the MariaDB Knowledgebase at http://mariadb.com/kb or the
 MySQL manual for more instructions.

 Please report any problems at http://mariadb.org/jira

 The latest information about MariaDB is available at http://mariadb.org/.
 You can find additional information about the MySQL part at:
 http://dev.mysql.com
 Support MariaDB development by buying support/new features from MariaDB
 Corporation Ab. You can contact us about this at sales@mariadb.com.
 Alternatively consider joining our community based development effort:
 http://mariadb.com/kb/en/contributing-to-the-mariadb-project/

 Database initialized
 MySQL init process in progress...

 /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*


 MySQL init process done. Ready for start up.

docker-compose-logs

Attaching to dockermagento2_web_1, dockermagento2_fpm_1, dockermagento2_cli_1, dockermagento2_db_1, dockermagento2_dbdata_1, dockermagento2_appdata_1
�[33mfpm_1      |�[0m Updating www-data uid and gid
�[33mfpm_1      |�[0m Docker: uid = 33, gid = 0
�[33mfpm_1      |�[0m Incumbent: user = www-data, group = root
�[33mfpm_1      |�[0m Updating www-data uid and gid
�[33mfpm_1      |�[0m Docker: uid = 33, gid = 0
�[33mfpm_1      |�[0m Incumbent: user = , group = root
�[33mfpm_1      |�[0m [04-Oct-2016 14:58:05] ERROR: [pool www] please specify user and group other than root
�[33mfpm_1      |�[0m [04-Oct-2016 14:58:05] ERROR: [pool www] please specify user and group other than root
�[33mfpm_1      |�[0m [04-Oct-2016 14:58:05] ERROR: FPM initialization failed
�[33mfpm_1      |�[0m [04-Oct-2016 14:58:05] ERROR: FPM initialization failed
�[33mfpm_1      |�[0m Updating www-data uid and gid
�[33mfpm_1      |�[0m Docker: uid = 33, gid = 0
�[33mfpm_1      |�[0m Incumbent: user = www-data, group = www-data
�[36mweb_1      |�[0m nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
�[32mcli_1      |�[0m Updating www-data uid and gid
�[36mweb_1      |�[0m nginx: configuration file /etc/nginx/nginx.conf test is successful
�[32mcli_1      |�[0m Docker: uid = 33, gid = 0
�[32mcli_1      |�[0m Incumbent: user = www-data, group = root
�[36mweb_1      |�[0m nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
�[32mcli_1      |�[0m Updating www-data uid and gid
�[36mweb_1      |�[0m nginx: configuration file /etc/nginx/nginx.conf test is successful
�[32mcli_1      |�[0m Docker: uid = 33, gid = 0
�[36mweb_1      |�[0m 2016/10/04 14:56:24 [error] 12#12: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
�[35mdb_1       |�[0m Initializing database
�[32mcli_1      |�[0m Incumbent: user = , group = root
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:14:56:24 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] /usr/sbin/mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 55 ...
�[32mcli_1      |�[0m Do not run Composer as root/super user! See https://getcomposer.org/root for details
�[36mweb_1      |�[0m 2016/10/04 14:56:25 [error] 12#12: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[32mcli_1      |�[0m Do not run Composer as root/super user! See https://getcomposer.org/root for details
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: The InnoDB memory heap is disabled
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:14:56:25 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:15:01:51 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[36mweb_1      |�[0m 2016/10/04 15:01:51 [error] 12#12: *4 connect() failed (113: No route to host) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
�[32mcli_1      |�[0m Updating www-data uid and gid
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[36mweb_1      |�[0m 2016/10/04 15:04:32 [error] 12#12: *6 connect() failed (113: No route to host) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.4:9000", host: "magento2.docker"
�[32mcli_1      |�[0m Docker: uid = 33, gid = 0
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Using Linux native AIO
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:15:04:32 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[32mcli_1      |�[0m Incumbent: user = www-data, group = www-data
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Using SSE crc32 instructions
�[36mweb_1      |�[0m nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[36mweb_1      |�[0m nginx: configuration file /etc/nginx/nginx.conf test is successful
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Completed initialization of buffer pool
�[36mweb_1      |�[0m 2016/10/04 15:07:09 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:15:07:09 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
�[36mweb_1      |�[0m 2016/10/04 15:07:10 [error] 13#13: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
�[35mdb_1       |�[0m 2016-10-04 14:27:15 139828173326272 [Note] InnoDB: Database physically writes the file full: wait...
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:15:07:10 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Warning] InnoDB: New log files created, LSN=45883
�[36mweb_1      |�[0m 2016/10/04 15:09:01 [error] 13#13: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 172.20.0.1, server: magento2.docker, request: "GET / HTTP/1.1", upstream: "fastcgi://172.20.0.3:9000", host: "magento2.docker"
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Doublewrite buffer not found: creating new
�[36mweb_1      |�[0m 172.20.0.1 - - [04/Oct/2016:15:09:01 +0000] "GET / HTTP/1.1" 502 575 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" "-"
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Doublewrite buffer created
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Warning] InnoDB: Creating foreign key constraint system tables.
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Foreign key constraint system tables created
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Creating tablespace and datafile system tables.
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Tablespace and datafile system tables created.
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139828173326272 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 0
�[35mdb_1       |�[0m 2016-10-04 14:27:16 139827387299584 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] /usr/sbin/mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 83 ...
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: The InnoDB memory heap is disabled
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Using Linux native AIO
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Using SSE crc32 instructions
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Completed initialization of buffer pool
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139704120633280 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 1616799
�[35mdb_1       |�[0m 2016-10-04 14:27:20 139703340730112 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] /usr/sbin/mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 112 ...
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: The InnoDB memory heap is disabled
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Using Linux native AIO
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Using SSE crc32 instructions
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Completed initialization of buffer pool
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:27:22 140038858356672 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 1616809
�[35mdb_1       |�[0m 2016-10-04 14:27:23 140038079743744 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
�[35mdb_1       |�[0m To do so, start the server, then issue the following commands:
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m '/usr/bin/mysqladmin' -u root password 'new-password'
�[35mdb_1       |�[0m '/usr/bin/mysqladmin' -u root -h  password 'new-password'
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m Alternatively you can run:
�[35mdb_1       |�[0m '/usr/bin/mysql_secure_installation'
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m which will also give you the option of removing the test
�[35mdb_1       |�[0m databases and anonymous user created by default.  This is
�[35mdb_1       |�[0m strongly recommended for production servers.
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m See the MariaDB Knowledgebase at http://mariadb.com/kb or the
�[35mdb_1       |�[0m MySQL manual for more instructions.
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m Please report any problems at http://mariadb.org/jira
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m The latest information about MariaDB is available at http://mariadb.org/.
�[35mdb_1       |�[0m You can find additional information about the MySQL part at:
�[35mdb_1       |�[0m http://dev.mysql.com
�[35mdb_1       |�[0m Support MariaDB development by buying support/new features from MariaDB
�[35mdb_1       |�[0m Corporation Ab. You can contact us about this at sales@mariadb.com.
�[35mdb_1       |�[0m Alternatively consider joining our community based development effort:
�[35mdb_1       |�[0m http://mariadb.com/kb/en/contributing-to-the-mariadb-project/
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m Database initialized
�[35mdb_1       |�[0m MySQL init process in progress...
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 139 ...
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: The InnoDB memory heap is disabled
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Using Linux native AIO
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Using SSE crc32 instructions
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Completed initialization of buffer pool
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 1616819
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807166531328 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] Plugin 'FEEDBACK' is disabled.
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Warning] 'user' entry 'root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Warning] 'proxies_priv' entry '@% root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 2016-10-04 14:27:25 139807943874496 [Note] mysqld: ready for connections.
�[35mdb_1       |�[0m Version: '10.1.18-MariaDB-1~jessie'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  mariadb.org binary distribution
�[35mdb_1       |�[0m Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807943006976 [Warning] 'proxies_priv' entry '@% root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807943006976 [Warning] 'proxies_priv' entry '@% root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807942703872 [Note] mysqld: Normal shutdown
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807942703872 [Note] Event Scheduler: Purging the queue. 0 events
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807149745920 [Note] InnoDB: FTS optimize thread exiting.
�[35mdb_1       |�[0m 2016-10-04 14:27:27 139807942703872 [Note] InnoDB: Starting shutdown...
�[35mdb_1       |�[0m 2016-10-04 14:27:29 139807942703872 [Note] InnoDB: Shutdown completed; log sequence number 1616829
�[35mdb_1       |�[0m 2016-10-04 14:27:29 139807942703872 [Note] mysqld: Shutdown complete
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m MySQL init process done. Ready for start up.
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 2016-10-04 14:27:29 140496356784064 [Note] mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 1 ...
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: The InnoDB memory heap is disabled
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Using Linux native AIO
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Using SSE crc32 instructions
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Completed initialization of buffer pool
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 1616829
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140495577646848 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] Plugin 'FEEDBACK' is disabled.
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] Server socket created on IP: '::'.
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Warning] 'proxies_priv' entry '@% root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 2016-10-04 14:27:30 140496356784064 [Note] mysqld: ready for connections.
�[35mdb_1       |�[0m Version: '10.1.18-MariaDB-1~jessie'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : Start applying row log
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : End of applying row log
�[35mdb_1       |�[0m 2016-10-04 14:33:56 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:33:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:11 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:12 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : End of applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Start applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : End of applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:13 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : Start applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : End of applying row log
�[35mdb_1       |�[0m 2016-10-04 14:34:16 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:17 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:17 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:17 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:17 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:23 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:23 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:23 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:23 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:24 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:48 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:54 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:55 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:56 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:34:57 140496355916544 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:57 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:35:57 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:57 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:57 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:57 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:58 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:59 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:35:59 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:59 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:35:59 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:35:59 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:04 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:05 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:08 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:08 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:08 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:08 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:08 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:09 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:10 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:14 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:15 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:16 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:18 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:19 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:20 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:21 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:22 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:23 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:24 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:25 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:26 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:27 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Start reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : End of reading clustered index of the table and create temporary files
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:28 140496355613440 [Note] InnoDB: Online DDL : Completed
�[35mdb_1       |�[0m 2016-10-04 14:36:50 7fc7abff6700 InnoDB: FTS Optimize Removing table magento2/customer_grid_flat
�[35mdb_1       |�[0m 2016-10-04 14:36:54 7fc7abff6700 InnoDB: FTS Optimize Removing table magento2/catalogsearch_fulltext_scope1
�[35mdb_1       |�[0m 2016-10-04 14:55:59 140496305728256 [Note] mysqld: Normal shutdown
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 2016-10-04 14:55:59 140496305728256 [Note] Event Scheduler: Purging the queue. 0 events
�[35mdb_1       |�[0m 2016-10-04 14:55:59 140495560861440 [Note] InnoDB: FTS optimize thread exiting.
�[35mdb_1       |�[0m 2016-10-04 14:55:59 140496305728256 [Note] InnoDB: Starting shutdown...
�[35mdb_1       |�[0m 2016-10-04 14:56:01 140496305728256 [Note] InnoDB: Shutdown completed; log sequence number 9368090
�[35mdb_1       |�[0m 2016-10-04 14:56:01 140496305728256 [Note] mysqld: Shutdown complete
�[35mdb_1       |�[0m 
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] mysqld (mysqld 10.1.18-MariaDB-1~jessie) starting as process 1 ...
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Using mutexes to ref count buffer pool pages
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: The InnoDB memory heap is disabled
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Compressed tables use zlib 1.2.8
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Using Linux native AIO
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Using SSE crc32 instructions
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Initializing buffer pool, size = 256.0M
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Completed initialization of buffer pool
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Highest supported file format is Barracuda.
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: 128 rollback segment(s) are active.
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB: Waiting for purge to start
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] InnoDB:  Percona XtraDB (http://www.percona.com) 5.6.32-78.1 started; log sequence number 9368090
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] Plugin 'FEEDBACK' is disabled.
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140696459642624 [Note] InnoDB: Dumping buffer pool(s) not yet started
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] Server socket created on IP: '::'.
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Warning] 'proxies_priv' entry '@% root@dc89f4c039eb' ignored in --skip-name-resolve mode.
�[35mdb_1       |�[0m 2016-10-04 14:56:03 140697237399488 [Note] mysqld: ready for connections.
�[35mdb_1       |�[0m Version: '10.1.18-MariaDB-1~jessie'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution

Логи в докере нужны в первую очередь для траблшутинга тех или иных проблем которые возникают у вас в ходе работы с контейнером.

Надеюсь что у вас уже имеется докер на хостевой машине, если нет, вот полезные статьи:

Установка Docker на Debian/Ubuntu

Установка Docker на CentOS/RedHat/Fedora

Установка docker-compose в Unix/Linux

Запуск docker контейнеров в Unix/Linux

Установка docker machine в Unix/Linux

Настройка docker swarm кластера в Unix/Linux

Запуск GUI-приложения в Docker

Запустить bash/SSH в контейнере с Docker

Создание base image для docker в Unix/Linux

Создание docker контейнера в Unix/Linux

Остановить/Удалить все Docker контейнеры/images

Работа с сетью (Networking) в Docker

Работа с томами (Volumes) в Docker

И так, приступим.

Работа с логами (Logs) в Docker

-=== СПОСОБ 1 ===-

Стандартное использование будет следующим:

$ docker logs $(docker ps -aql)

Version:    v0.4.9
Git commit: c4de4ad0
OS/Arch:    linux/amd64
Built:      Wed Aug 29 12:32:14 2018
time="2018-10-31T10:58:45Z" level=info msg="Controller ready"

Или если задали контейнер_нейм:

$ docker logs vault

-=== СПОСОБ 2 ===-

Логи монтируются на хостевую машину, по этому гегко понять где лежат логи:

$ docker inspect vault | grep -E "LogPath"
        "LogPath": "/var/lib/docker/containers/4e65e9b0f1412af155e30d0c50c52933d989c08346d9405e75c5945b53182b3b/4e65e9b0f1412af155e30d0c50c52933d989c08346d9405e75c5945b53182b3b-json.log",

И после чего, выполняем:

$ cat /var/lib/docker/containers/4e65e9b0f1412af155e30d0c50c52933d989c08346d9405e75c5945b53182b3b/4e65e9b0f1412af155e30d0c50c52933d989c08346d9405e75c5945b53182b3b-json.log

-=== СПОСОБ 3 ===-

Иногда бывает так, что приложенько не умеет выводить логи. Рассмотрим наглядный пример. Запустим контейнер:#

$ docker run -d -P myhttpd:latest
791c65b5aed05a11a40a953779675b5b94d090e691730c5c0bceaa33143fcbc4

Пробуем поулчить логи:

$ docker logs $(docker ps -lq)
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.17. Set the 'ServerName' directive globally to suppress this message

Как видно с вывода, докер не может считать логи с контейнера. Первое что приходит в голову, — это не рабочий контейнер, да? Но пробуем получить данные:

$ curl localhost:$(docker port $(docker ps -lq) | cut -d: -f2)
my httpd container

Этим самым, видно что контейнер работает, но все еще не может отдавать логи.

Делов в том, что логи для Nginx лежат:

$ docker run nginx ls -l /var/log/nginx
total 0
lrwxrwxrwx 1 root root 11 Oct 2 19:20   access.log  -> /dev/stdout     
lrwxrwxrwx 1 root root 11 Oct 2 19:20   error.log -> /dev/stderr

Для Apache лежат вот тут:

# docker run httpd cat conf/httpd.conf | egrep '^ *(Error|Custom)Log'
ErrorLog /proc/self/fd/2
   CustomLog /proc/self/fd/1 common

Пофиксим это дело следующим образом, в докерфайл (нужно дописатьпереопределить вывод):

FROM centos
LABEL maintainer="Vitaliy Natarov"
RUN yum install -y httpd web-assets-httpd && yum clean all
RUN echo "logs are sending to stdout" > /var/www/html/index.html

RUN ln -s /dev/stdout /var/log/httpd/access_log &&  
    ln -s /dev/stderr /var/log/httpd/error_log

EXPOSE 80 
CMD httpd -DFOREGROUND

Билдаем образ:

$ docker build -t myhttpd:2.0 .

Запускаем контейнер:

$ docker run -d -P myhttpd:2.0
1b0c3a82d0687519ffcd2ee06d345a4d3ad8d475dc0d7710fb279bdd836e5e88

Проверим:

$ docker logs $(docker ps -lq)

AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.17. Set the 'ServerName' directive globally to suppress this message

Дернем курл:

$ curl localhost:$(docker port $(docker ps -lq) | cut -d: -f2)
logs are sending to stdout

И прверим что пишется в лог:

$ docker logs $(docker ps -lq)
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using
172.17.0.18. Set the 'ServerName' directive globally to suppress this message
172.17.0.1 - - [29/Jul/2018:22:07:24 +0000] "GET / HTTP/1.1" 200 19 "-" "curl/7.29.0"

Ага! То что нужно было! Вот такой вот юзкейс.

Настройка  Log Driver

Запустим контейнер с заданным именем и лог-драйвером, например:

$ docker run -d -P --name=myhttpd --log-driver=journald myhttpd:2.0 
5748f3078b647c43a335bdc1f8bc7c8d9db31a491e635effd58b31b1429c8ee7

Проверим что вышло:

$ curl localhost:$(docker port $(docker ps -lq) | cut -d: -f2)
logs are sending to stdout

Получите log-и контейнера через journald ( с указанием CONTAINER_NAME), например:

# journalctl -b CONTAINER_NAME=myhttpd
-- Logs begin at Sat 2018-07-28 19:14:07 BST, end at Sun 2018-07-29 23:19:52 BST. --
Jul 29 23:19:29 localhost.localdomain 5748f3078b64[2806]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.
Jul 29 23:19:50 localhost.localdomain 5748f3078b64[2806]: 172.17.0.1 - - [29/Jul/2018:22:19:50 +0000] "GET / HTTP/1.1" 200 19 "-" "curl/7.29.0"

Запускаем кнтейнер с log-driver-ом и log-tag-ом:

$ docker run -d -P --log-driver=journald 
--log-opt tag=myhttpd 
myhttpd:latest
0555d7a41ab6af098dfea296e2fa7b4f1c6b73424e2156c387930b13bfcefb24

Чекаем:

$ curl localhost:$(docker port $(docker ps -lq) | cut -d: -f2)
   logs are sending to stdout

С такой командой, теперь можно получить логи через указанный тег:

$ journalctl -b CONTAINER_TAG=myhttpd

Поддерживаемые Log Driver-ы:

  • none — Логи не доступны для контейнера, и логи самого докера не возвращают никакого вывода.
  • json-file- Log-и отформатированы как JSON. Данный драйвер используется по умолчанию в Docker.
  • syslog — Записывает логи в syslog. Демон syslog должен быть запущен на самом хосте.
  • journald — Записывает логи в journald. Демон journald должен быть запущен на самом хосте.
  • gelf — Записывает сообщения в Graylog (GELF) или Logstash.
  • fluentd — Записывает сообщения на fluentd (forward input). Демон fluentd должен быть запущен на самом хосте.
  • awslogs- Записывает сообщения в Amazon CloudWatch.
  • splunk — Записывает сообщения в splunk с помощью сборщика HTTP событий (HTTP Event Collector).
  • gcplogs — Записывает сообщения в Google Cloud Platform (GCP).
  • logentries — Записывает сообщения в Rapid7 Logentries.

Проверим что используется поумолчанию:

$ docker info --format '{{.LoggingDriver}}'
json-file

Меняем на нужный:

# cat << EOF > /etc/docker/daemon.json {
"log-driver": "journald" }
EOF

Перезапустим сервисы:

# systemctl daemon-reload && systemctl restart docker.service

Проверяем, изменилось ли у нас что-то:

$ docker info --format '{{.LoggingDriver}}'
journald

Можно запустить контейнер:

$ docker run -d -P --name=myweb --log-opt tag=myweb_tag myhttpd:2.0

Проверим логи одним из способов:

$ journalctl -b CONTAINER_NAME=myweb
$ journalctl -b CONTAINER_TAG=myweb_tag

Вот и все, статья «Работа с логами (Logs) в Docker» завершена.

Работа с логами (Logs) в Docker

СПОСОБ 1

Стан­дарт­ное исполь­зо­ва­ние будет следующим:

СПОСОБ 2 

Логи мон­ти­ру­ют­ся на хосте­вую маши­ну, по это­му лег­ко понять где лежат логи:

СПОСОБ 3

Ино­гда быва­ет так, что при­ло­же­ние не уме­ет выво­дить логи. Рас­смот­рим нагляд­ный при­мер. Запу­стим контейнер:

Как вид­но с выво­да, докер не может счи­тать логи с кон­тей­не­ра. Пер­вое что при­хо­дит в голо­ву, — это не рабо­чий кон­тей­нер, да? Но про­бу­ем полу­чить данные:

Дело в в том, что логи для Nginx лежат:

Пофик­сим это дело сле­ду­ю­щим обра­зом, в докер­файл (нуж­но дописатьпереопределить вывод):

vim Dockerfile

[codesyntax lang=»php» blockstate=»collapsed»]

FROM centos

LABEL maintainer=«sidmid.ru»

RUN yum install -y httpd web-assets-httpd &amp;&amp; yum clean all

RUN echo «logs are sending to stdout» &gt; /var/www/html/index.html

RUN ln -s /dev/stdout /var/log/httpd/access_log &amp;&amp;

ln -s /dev/stderr /var/log/httpd/error_log

EXPOSE 80

CMD httpd -DFOREGROUND

[/codesyntax]

Бил­дим образ:

$ docker build t myhttpd:2.0 .

$ docker logs $(docker ps lq)

Дер­нем курлом:
$ curl localhost:$(docker port $(docker ps lq) | cut d: f2)
logs are sending to stdout

$ docker logs $(docker ps lq)

Запу­стим кон­тей­нер с задан­ным име­нем и лог-драй­ве­ром, например:

$ docker run d P name=myhttpd logdriver=journald myhttpd:2.0

$ curl localhost:$(docker port $(docker ps lq) | cut d: f2)

$ docker run d P logdriver=journald

Чека­ем:
$ curl localhost:$(docker port $(docker ps lq) | cut d: f2)
logs are sending to stdout

С такой коман­дой, теперь мож­но полу­чить логи через ука­зан­ный тег:

  • none — Логи не доступ­ны для кон­тей­не­ра, и логи само­го доке­ра не воз­вра­ща­ют ника­ко­го вывода.
  • json-file- Log-и отфор­ма­ти­ро­ва­ны как JSON. Дан­ный драй­вер исполь­зу­ет­ся по умол­ча­нию в Docker.
  • syslog — Запи­сы­ва­ет логи в syslog. Демон syslog дол­жен быть запу­щен на самом хосте.
  • journald — Запи­сы­ва­ет логи в journald. Демон journald дол­жен быть запу­щен на самом хосте.
  • gelf — Запи­сы­ва­ет сооб­ще­ния в Graylog (GELF) или Logstash.
  • fluentd — Запи­сы­ва­ет сооб­ще­ния на fluentd (forward input). Демон fluentd дол­жен быть запу­щен на самом хосте.
  • awslogs- Запи­сы­ва­ет сооб­ще­ния в Amazon CloudWatch.
  • splunk — Запи­сы­ва­ет сооб­ще­ния в splunk с помо­щью сбор­щи­ка HTTP собы­тий (HTTP Event Collector).
  • gcplogs — Запи­сы­ва­ет сооб­ще­ния в Google Cloud Platform (GCP).
  • logentries — Запи­сы­ва­ет сооб­ще­ния в Rapid7 Logentries.

Про­ве­рим что исполь­зу­ет­ся по умолчанию:

Меня­ем на нужный:

# cat << EOF > /etc/docker/daemon.json {

# systemctl daemon-reload && systemctl restart docker.service

$ docker info format {{.LoggingDriver}}

Мож­но запу­стить контейнер:
$ docker run d P name=myweb logopt tag=myweb_tag myhttpd:2.0

$ journalctl b CONTAINER_NAME=myweb

https://github.com/midnight47/

Понравилась статья? Поделить с друзьями:
  • Nginx error log centos
  • Nginx error log all
  • Nginx error log access log
  • Nginx error favicon ico
  • Nginx error code 502