Richard G
Verified User
I'm on a new Centos 7 server which now has MariaDB 10.0.35.
Previous on our Centos 6 server I used this in my.cnf:
Some of these I'm now using under /etc/my.cnf.d/server.cnf but I did not enter the ones below yet.
But I would like to use if it's a good idea to also use these in a MariaDB database (which I used with msyql in cento 6):
or if it's better not to use these or some of them with MariaDB?
Previous on our Centos 6 server I used this in my.cnf:
Code:
[mysqld]
local-infile=0
bind-address = 127.0.0.1
max_connections = 150
default-storage-engine=MyISAM
innodb_file_format=Barracuda
innodb_file_per_table=1
open_files_limit = 2048
innodb_max_dirty_pages_pct = 0
performance_schema=off
slow_query_log = 1
slow_query_log_file=/var/log/mysql/slow-queries.log
long_query_time = 3
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
Some of these I'm now using under /etc/my.cnf.d/server.cnf but I did not enter the ones below yet.
But I would like to use if it's a good idea to also use these in a MariaDB database (which I used with msyql in cento 6):
Code:
max_connections = 150
default-storage-engine=MyISAM
innodb_file_format=Barracuda
innodb_file_per_table=1
open_files_limit = 2048
innodb_max_dirty_pages_pct = 0
performance_schema=off