From f236a1333b6cd40586a5ca03059e260e9ca0c664 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 30 Apr 2024 01:27:39 +0800 Subject: [PATCH] Added configs/sqldb/wordpress.cnf file --- configs/sqldb/wordpress.cnf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 configs/sqldb/wordpress.cnf diff --git a/configs/sqldb/wordpress.cnf b/configs/sqldb/wordpress.cnf new file mode 100644 index 0000000..0f60bda --- /dev/null +++ b/configs/sqldb/wordpress.cnf @@ -0,0 +1,18 @@ +[mysqld] + +# Duplicate entry '_transient_doing_cron' for key 'option_name', Error_code: 1062; +slave-skip-errors = 1062 + +max_connections=500 +join_buffer_size = 3M +tmp_table_size = 128M +max_heap_table_size = 128M +thread_cache_size = 16K +table_definition_cache = 4K +open_files_limit = 524290 +local-infile=0 +sync_binlog = 0 +query_cache_size = 0 +innodb_log_file_size = 128M +wsrep_slave_threads = 16 +innodb_flush_log_at_trx_commit = 2 \ No newline at end of file