Mac下mysql添加my.cnf文件

# For advice on how to change settings please see

# https://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html

# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the

# *** default location during install, and will be replaced if you

# *** upgrade to a newer version of MySQL.

[mysqld]

#innodb

# 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 = 4000M

innodb_additional_mem_pool_size=60M

innodb_data_home_dir=

innodb_date_file_path=ibdata1:20M:autoextend

innodb_log_group_home_dir=/var/log/innodb_log

innodb_log_files_in_group=2

innodb_log_file_size=30M

innodb_log_buffer_size=3M

innodb_doublewrite=ON

innodb_open_file=2000

innodb_file_per_table=ON

innodb_max_dirty_page_pct=50

back_log=80

interactive_timeout=3600

key_buffer_size=10M

max_allow_packet=40440

max_connections=1000

max_tmp_tables=60

query_cache_size=10M

sor_buffer_size=10M

table_open_cache=2000

# Remove leading

# to turn on a very important data integrity option: logging

# changes to the binary log between backups.

#lob_bin

log_bin=ON

log_bin_basename=/var/lib/mysql/mysqld-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=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

character_set_server=utf8

#init_connect='SET NAMES utf8'

# Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

# Recommended in standard MySQL setup

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

#general_log

general_log=ON

general_log_file=/var/lib/mysql/localhost.log

#slow_query_log

slow_query_log=ON

slow_query_log_file=/var/lib/mysql/localhost-slow.log

slow_launch_time=2

[mysqld_safe]

log-error=/var/log/mysqld.log

pid-file=/var/run/mysqld/mysqld.pid

猜你喜欢

转载自blog.csdn.net/qq_40693416/article/details/81067791