--- type: docs title: "Dapr sidecar (daprd) overview" linkTitle: "Sidecar" weight: 100 description: "Overview of the Dapr sidecar process" --- Dapr uses a [sidecar pattern]({{< ref "concepts/overview.md#sidecar-architecture" >}}), meaning the Dapr APIs are run and exposed on a separate process, the Dapr sidecar, running alongside your application. The Dapr sidecar process is named `daprd` and is launched in different ways depending on the hosting environment. The Dapr sidecar exposes: - [Building block APIs]({{}}) used by your application business logic - A [metadata API]({{}}) for discoverability of capabilities and to set attributes - A [health API]({{}}) to determine health status and sidecar readiness and liveness The Dapr sidecar will reach readiness state once the application is accessible on its configured port. The application cannot access the Dapr components during application start up/initialization. The sidecar APIs are called from your application over local http or gRPC endpoints. ## Self-hosted with `dapr run` When Dapr is installed in [self-hosted mode]({{}}), the `daprd` binary is downloaded and placed under the user home directory (`$HOME/.dapr/bin` for Linux/macOS or `%USERPROFILE%\.dapr\bin\` for Windows). In self-hosted mode, running the Dapr CLI [`run` command]({{< ref dapr-run.md >}}) launches the `daprd` executable with the provided application executable. This is the recommended way of running the Dapr sidecar when working locally in scenarios such as development and testing. You can find the various arguments that the CLI exposes to configure the sidecar in the [Dapr run command reference]({{}}). ## Kubernetes with `dapr-sidecar-injector` On [Kubernetes]({{< ref kubernetes.md >}}), the Dapr control plane includes the [dapr-sidecar-injector service]({{< ref kubernetes-overview.md >}}), which watches for new pods with the `dapr.io/enabled` annotation and injects a container with the `daprd` process within the pod. In this case, sidecar arguments can be passed through annotations as outlined in the **Kubernetes annotations** column in [this table]({{}}). ## Running the sidecar directly In most cases you do not need to run `daprd` explicitly, as the sidecar is either launched by the [CLI]({{}}) (self-hosted mode) or by the dapr-sidecar-injector service (Kubernetes). For advanced use cases (debugging, scripted deployments, etc.) the `daprd` process can be launched directly. For a detailed list of all available arguments run `daprd --help` or see this [table]({{< ref arguments-annotations-overview.md >}}) which outlines how the `daprd` arguments relate to the CLI arguments and Kubernetes annotations. ### Examples 1. Start a sidecar alongside an application by specifying its unique ID. **Note:** `--app-id` is a required field, and cannot contain dots. ```bash daprd --app-id myapp ``` 1. Specify the port your application is listening to ```bash daprd --app-id --app-port 5000 ``` 1. If you are using several custom resources and want to specify the location of the resource definition files, use the `--resources-path` argument: ```bash daprd --app-id myapp --resources-path ``` 1. If you've organized your components and other resources (for example, resiliency policies, subscriptions, or configuration) into separate folders or a shared folder, you can specify multiple resource paths: ```bash daprd --app-id myapp --resources-path --resources-path ``` 1. Enable collection of Prometheus metrics while running your app ```bash daprd --app-id myapp --enable-metrics ``` 1. Listen to IPv4 and IPv6 loopback only ```bash daprd --app-id myapp --dapr-listen-addresses '127.0.0.1,[::1]' ```