I have LAMP
with CentOS 8
and MariaDB
installed on my server. in PHPMyAdmin I need to increase open files limit
parameter, which is disabled and cannot be edited from there. its current value is set to 16,384. I checked the hard and soft limits of the server:
ulimit -Hn
262144
ulimit -Sn
1024
cat /proc/sys/fs/file-max
199584
moreover I checked /etc/security/limits.conf
and there was no limit mentioned there for open files. now my question is where is this 16,384 limit coming from (where is it set)? and how can I increase it?