From 6efe2979c66aa631762df83d3132b8ad3ca7d773 Mon Sep 17 00:00:00 2001 From: Nacho Rivera <59198746+n4ch04@users.noreply.github.com> Date: Wed, 11 Jan 2023 11:18:37 +0100 Subject: [PATCH] fix(): Edit troubleshooting page (#1685) --- docs/troubleshooting.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 14d383c9..7dfca440 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -1,8 +1,14 @@ # Troubleshooting -- Running `prowler` I get `[File: utils.py:15] [Module: utils] CRITICAL: path/redacted: OSError[13]`: +- Running `prowler` I get `[File: utils.py:15] [Module: utils] CRITICAL: path/redacted: OSError[13]`: - That is an error related to file descriptors or opened files allowed by your operating system, with `ulimit -n 1000` you solve the issue. We have seen this issue in some macOS Ventura. + That is an error related to file descriptors or opened files allowed by your operating system. + + In macOS Ventura the default value for the `file descriptors` is `256`. With the following command `ulimit -n 1000` you'll increase that value and solve the issue. + + If you have a different OS and you are experiencing the same, please increase the value of your `file descriptors`. You can check it running `ulimit -a | grep "file descriptors"`. + + This error is also related with a lack of system requirements. To improve performance Prowler stores information in memory so it may need to be run in a system with more than 1GB of memory. -See section [Logging](/tutorials/logging/) for further information or [conctact us](/contact/). \ No newline at end of file +See section [Logging](/tutorials/logging/) for further information or [conctact us](/contact/).