diff -Nur --no-dereference smeserver-mysql-2.7.0.old/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit smeserver-mysql-2.7.0/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit --- smeserver-mysql-2.7.0.old/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit 2022-03-11 10:32:13.000000000 -0500 +++ smeserver-mysql-2.7.0/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit 2023-11-23 23:03:57.319000000 -0500 @@ -1,7 +1,7 @@ { $OUT = ''; - - my $limit = ${'mariadb'}{OpenFilesLimit} || 0; + # changed 0 to 32186 for mariadb 5.5 see BZ 12417 + my $limit = ${'mariadb'}{OpenFilesLimit} || 32186; return if $limit eq 0; $OUT .= "open_files_limit=$limit\n";