39 lines
965 B
INI
39 lines
965 B
INI
# copy this file to /etc/my.cnf.d/pandora.cnf directory inside the container to set the onfiguration
|
|
|
|
[mysqld]
|
|
datadir=/var/lib/mysql
|
|
user=mysql
|
|
character-set-server=utf8mb4
|
|
skip-character-set-client-handshake
|
|
# Disabling symbolic-links is recommended to prevent assorted security risks
|
|
symbolic-links=0
|
|
# Mysql optimizations for Pandora FMS
|
|
# Please check the documentation in http://pandorafms.com for better results
|
|
|
|
max_allowed_packet = 64M
|
|
innodb_lock_wait_timeout = 90
|
|
innodb_file_per_table
|
|
innodb_flush_log_at_trx_commit = 0
|
|
innodb_flush_method = O_DIRECT
|
|
innodb_log_file_size = 64M
|
|
innodb_log_buffer_size = 16M
|
|
innodb_io_capacity = 300
|
|
thread_cache_size = 8
|
|
thread_stack = 256K
|
|
max_connections = 100
|
|
|
|
key_buffer_size=4M
|
|
read_buffer_size=128K
|
|
read_rnd_buffer_size=128K
|
|
sort_buffer_size=128K
|
|
join_buffer_size=4M
|
|
|
|
# legacy compatibility
|
|
default_authentication_plugin=mysql_native_password
|
|
log_error_suppression_list='MY-013360'
|
|
|
|
skip-log-bin
|
|
|
|
sql_mode=""
|
|
|
|
|