﻿---
title: Auditbeat fails to watch folders because too many files are open
description: Because of the way file monitoring is implemented on macOS, you may see a warning similar to the following: To resolve this issue, run Auditbeat with...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/reference/beats/auditbeat/ulimit
products:
  - Auditbeat
  - Beats
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Auditbeat fails to watch folders because too many files are open
Because of the way file monitoring is implemented on macOS, you may see a warning similar to the following:
```shell
eventreader_fsnotify.go:42: WARN [audit.file] Failed to watch /usr/bin: too many
open files (check the max number of open files allowed with 'ulimit -a')
```

To resolve this issue, run Auditbeat with the `ulimit` set to a larger value, for example:
```sh
sudo sh -c 'ulimit -n 8192 && ./Auditbeat -e
```

Or:
```sh
sudo su
ulimit -n 8192
./auditbeat -e
```