question

Upvotes
Accepted
3 0 1 1

When entering the Filter Rules dashboard there is some idling (“Loading”) going on until I get a timeout.

velocity-analytics
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @peter.dengler,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

1 Answer

· Write an Answer
Upvotes
Accepted
61 1 0 2

The below system configuration changes, to increase the system resources such as file descriptors, have been seen to resolve this issue.


In /etc/security/limits.conf, add the below:


* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535


In /etc/sysctl.conf, add the below:

# Custom Config
net.ipv4.ip_local_port_range = 32800 61000
net.core.wmem_max = 8388608
net.core.wmem_default = 8388608
net.core.rmem_max = 8388608
net.core.rmem_default = 8388608
net.ipv4.tcp_rmem = 4096 8388608 16777216
net.ipv4.tcp_wmem = 4096 8388608 16777216
net.ipv4.tcp_mem = 4096 8388608 16777216
fs.file-max = 65535
# Custom Config End

These changes will require a reboot of the machine to take effect.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.