﻿---
title: Install and configure the Elastic Logging Plugin
description: Make sure your system meets the following prerequisites: Docker: Engine API 1.25 or later, Elastic Stack: Version 7.6.0 or later. Install the plugin...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/beats/loggingplugin/log-driver-installation
products:
  - Beats
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Install and configure the Elastic Logging Plugin
## Before you begin

Make sure your system meets the following prerequisites:
- Docker: Engine API 1.25 or later
- Elastic Stack: Version 7.6.0 or later


## Step 1: Install the Elastic Logging Plugin plugin

1. Install the plugin. You can install it from the Docker store (recommended), or build and install the plugin from source in the [beats](https://github.com/elastic/beats) GitHub repo.
   **To install from the Docker store:**
   ```sh
   docker plugin install elastic/elastic-logging-plugin:9.3.2
   ```
   **To build and install from source:**
   [Set up your development environment](/elastic/docs-builder/docs/3028/extend/beats#setting-up-dev-environment) and then run:
   ```shell
   cd x-pack/dockerlogbeat
   mage BuildAndInstall
   ```
2. If necessary, enable the plugin:
   ```sh
   docker plugin enable elastic/elastic-logging-plugin:9.3.2
   ```
3. Verify that the plugin is installed and enabled:
   ```shell
   docker plugin ls
   ```
   The output should say something like:
   ```sh
   ID                  NAME                                   DESCRIPTION              ENABLED
   c2ff9d2cf090        elastic/elastic-logging-plugin:9.3.2   A beat for docker logs   true
   ```


## Step 2: Configure the Elastic Logging Plugin

You can set configuration options for a single container, or for all containers running on the host. See [Configuration options](https://www.elastic.co/elastic/docs-builder/docs/3028/reference/beats/loggingplugin/log-driver-configuration) for a list of supported configuration options.
**To configure a single container:**
Pass configuration options at run time when you start the container. For example:
```sh
docker run --log-driver=elastic/elastic-logging-plugin:9.3.2 \
           --log-opt hosts="https://myhost:9200" \
           --log-opt user="myusername" \
           --log-opt password="mypassword" \
           -it debian:jessie /bin/bash
```

**To configure all containers running on the host:**
Set configuration options in the Docker `daemon.json` configuration file. For example:
```json
{
  "log-driver" : "elastic/elastic-logging-plugin:9.3.2",
  "log-opts" : {
    "hosts" : "https://myhost:9200",
    "user" : "myusername",
    "password" : "mypassword"
  }
}
```

<note>
  The default location of the `daemon.json` file varies by platform. On Linux, the default location is `/etc/docker/daemon.json`. For more information, see the [Docker docs](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file).
</note>