daprd
```
### I'm getting 404 Not Found responses when calling Dapr
This means you're trying to call an Dapr API endpoint that either doesn't exist or the URL is malformed.
Look at the Dapr API reference [here](../../reference/api/README.md) and make sure you're calling the right endpoint.
### I don't see any incoming events or calls from other services
Have you specified the port your app is listening on?
In Kubernetes, make sure the `dapr.io/port` annotation is specified:
annotations:
dapr.io/enabled: "true"
dapr.io/id: "nodeapp"
dapr.io/port: "3000"
If using Dapr Standalone and the Dapr CLI, make sure you pass the `--app-port` flag to the `dapr run` command.
### My Dapr-enabled app isn't behaving correctly
The first thing to do is inspect the HTTP error code returned from the Dapr API, if any.
If you still can't find the issue, try enabling `debug` log levels for the Dapr runtime. See [here](logs.md) how to do so.
You might also want to look at error logs from your own process. If running on Kubernetes, find the pod containing your app, and execute the following:
```bash
kubectl logs
```
If running in Standalone mode, you should see the stderr and stdout outputs from your app displayed in the main console session.
### I'm getting timeout/connection errors when running Actors locally
Each Dapr instance reports it's host address to the placement service. The placement service then distributes a table of nodes and their addresses to all Dapr instances. If that host address is unreachable, you are likely to encounter socket timeout errors or other variants of failing request errors.
Unless the host name has been specified by setting an environment variable named `DAPR_HOST_IP` to a reachable, pingable address, Dapr will loop over the network interfaces and select the first non-loopback address it finds.
As described above, in order to tell Dapr what the host name should be used, simply set an environment variable with the name of `DAPR_HOST_IP`.
The following example shows how to set the Host IP env var to `127.0.0.1`:
**Note: for versions <= 0.4.0 use `HOST_IP`**
```bash
export DAPR_HOST_IP=127.0.0.1
```