# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html [mysqld] # # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size = 128M # # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M datadir=/opt/tools/mysql/ socket=/opt/tools/mysql//mysql.sock # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 server-id = 1 bind-address = g4t7474.houston.hpecorp.net binlog_format =MIXED log_bin=/opt/tools/mysql/mysql-bin.log flush_time =0 join_buffer_size =256M sort_buffer_size =256m read_rnd_buffer_size =32M max_allowed_packet =32M thread_cache_size =8 query_cache_size =64M max_connect_errors =100 open_files_limit =4110 table_definition_cache =1400 default_storage_engine = InnoDB default_tmp_storage_engine= MYISAM skip-federated skip-blackhole skip-archive innodb = ON innodb_open_files = 1024 innodb_checksum_algorithm = 0 innodb_stats_on_metadata = 1 innodb_lock_wait_timeout = 50 innodb_rollback_on_timeout= ON innodb_buffer_pool_size = 4098M innodb_log_file_size = 512M innodb_flush_method = O_DIRECT innodb_file_per_table = 1 innodb_sort_buffer_size = 32M innodb_flush_log_at_trx_commit=1 innodb_log_buffer_size = 256M innodb_thread_concurrency = 8 # Recommended in standard MySQL setup sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES [mysqld_safe] log-error=/var/log/mysqld.log pid-file=/var/run/mysqld/mysqld.pid [client] port=3306 socket=/opt/tools/mysql/mysql.sock