1 |
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 |
2 |
--- 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 |
3 |
+++ smeserver-mysql-2.7.0/root/etc/e-smith/templates/etc/my.cnf/012open_files_limit 2023-11-23 23:03:57.319000000 -0500 |
4 |
@@ -1,7 +1,7 @@ |
5 |
{ |
6 |
$OUT = ''; |
7 |
- |
8 |
- my $limit = ${'mariadb'}{OpenFilesLimit} || 0; |
9 |
+ # changed 0 to 32186 for mariadb 5.5 see BZ 12417 |
10 |
+ my $limit = ${'mariadb'}{OpenFilesLimit} || 32186; |
11 |
return if $limit eq 0; |
12 |
|
13 |
$OUT .= "open_files_limit=$limit\n"; |