zoukankan      html  css  js  c++  java
  • my.cnf配置文件

    [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=/mysql_data
    socket=/var/lib/mysql/mysql.sock
    character-set-server = utf8

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

    log-error=/var/log/mysql/mysqld.log
    pid-file=/var/run/mysql/mysqld.pid

    innodb_buffer_pool_size = 16G
    innodb_buffer_pool_instances = 16
    max_allowed_packet = 64M
    max_heap_table_size = 256M
    read_rnd_buffer_size = 2M
    sort_buffer_size = 2M
    join_buffer_size= 128M
    #query_cache_size =
    innodb_file_per_table = 1
    lower_case_table_names = 1
    log_bin_trust_function_creators=1

    [mysqld]
    server-id=1
    log-bin=mysql-bin
    log-slave-updates
    binlog-ignore-db = mysql
    binlog-ignore-db = information_schema
    binlog-ignore-db = performance_schema
    replicate-wild-ignore-table = mysql.%
    replicate-wild-ignore-table = information_schema.%
    replicate-wild-ignore-table = performance_schema.%
    expire_logs_days=5
    default-character-set = utf8

  • 相关阅读:
    Mysql权限控制
    Linux查看端口
    linus 下redis守护进程启动
    pymongo创建索引
    mongo批量操作存在更新否则插入
    梯度下降推导过程资料整理
    [转]mitmproxy套件使用攻略及定制化开发
    终极利器!利用appium和mitmproxy登录获取cookies
    how-to-pass-a-class-variable-to-a-decorator-inside-class-definition
    python进阶之魔法函数
  • 原文地址:https://www.cnblogs.com/A121/p/11056767.html
Copyright © 2011-2022 走看看