返回顶部
首页 > 资讯 > 数据库 >mysql配置文件my-small.cnf解析,汉文翻译,配置
  • 967
分享到

mysql配置文件my-small.cnf解析,汉文翻译,配置

2024-04-02 19:04:59 967人浏览 安东尼
摘要

# Example Mysql config file for small systems.#数据库最小系统配置文件样例# T

# Example Mysql config file for small systems.

#数据库最小系统配置文件样例

# This is for a system with little memory (<= 64M) where mysql is only used
# from time to time and it's important that the mysqld daemon
# doesn't use much resources.

#这个配置时为内存比较小的系统且数据库不连续使用的系统设置的,

#最重要的时它的后台服务几乎不会使用太多资源


# MySQL programs look for option files in a set of
# locations which depend on the deployment platfORM.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# Http://dev.mysql.com/doc/mysql/en/option-files.html

#数据库程序寻找调度平台可以调度的一些位置的选项文件。

#你可以把选项文件复制到这些位置

# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

#在这个文件中,你可以使用程序支持的所有长选项。

#如果你想只知道程序支持哪个选项,运行程序查找帮助


# The following options will be passed to all MySQL clients

#下列选项应用到数据库的客户端

[client]   
#passWord= your_password     #密码
port= 3306                #端口    
Socket= /tmp/mysql.sock   #socket位置
# Here follows entries for some specific programs

#接下来的条目是为一些特别程序准备的 

# The MySQL server   
[mysqld]
port= 3306                #端口
socket= /tmp/mysql.sock   #socket位置
skip-external-locking         #跳过扩展
key_buffer_size = 16K         #键缓存是 16K
max_allowed_packet = 1M       #允许最大信息包 1M
table_open_cache = 4          #打开表缓存 4
sort_buffer_size = 64K        #排序缓存 64K
read_buffer_size = 256K       #读缓存区 256K
read_rnd_buffer_size = 256K   #
net_buffer_length = 2K        #网络缓存长度2K
thread_stack = 128K           #线程堆 128K
# Don't listen on a tcp/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on windows
# (using the "enable-named-pipe" option) will render mysqld useless!
# 
#skip-networking
server-id= 1

#不要一直监听一个tcp/ip端口。如果所有进程需要连接到相同主机数据库后台,那么这个是安全加强项。

#和数据库后台的所有交互必须经过Unix code或命名管道。

#注意如果windows没有激活相应选项(enable-named-pipe),这个选项是无效的。

# Uncomment the following if you want to log updates  #日志更新
#log-bin=mysql-bin
# binary logging format - mixed recommended
#binlog_format=mixed

# 二进制混合格式日志记录

# Causes updates to non-transactional engines using statement format to be
# written directly to binary log. Before using this option make sure that
# there are no dependencies between transactional and non-transactional
# tables such as in the statement INSERT INTO t_myisam SELECT * FROM
# t_innodb; otherwise, slaves may diverge from the master.
#binlog_direct_non_transactional_updates=TRUE

#更新到非事务引擎使用说明格式写到二进制日志中,

#使用这个选项之前确保依赖在事务和非事务表

#例如:插入数据。否则,备机和主机背道而驰。


# Uncomment the following if you are using InnoDB tables  #是否使用Innodb表
#innodb_data_home_dir = /usr/local/mysql/data
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /usr/local/mysql/data
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]                                        #备份
quick
max_allowed_packet = 16M
[mysql]
#no-auto-rehash

#命令不自动补全  http://blog.51yip.com/mysql/1056.html          

auto-rehash


#修改为自动补全  只能提示表名和表里面字段名

# Remove the next comment character if you are not familiar with SQL #安全更新
#safe-updates
[myisamchk]


#获得有关你的数据库表的统计信息或检查、修复、优化他们 http://blog.csdn.net/wyzxg/article/details/7303486

key_buffer_size = 8M

sort_buffer_size = 8M

[mysqlhotcopy]

        

#热备 https://www.Centos.bz/2011/11/backup-mysql-database-with-mysqlhotcopy/

interactive-timeout


您可能感兴趣的文档:

--结束END--

本文标题: mysql配置文件my-small.cnf解析,汉文翻译,配置

本文链接: https://lsjlt.com/news/44655.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • mysql配置文件my-small.cnf解析,汉文翻译,配置
    # Example MySQL config file for small systems.#数据库最小系统配置文件样例# T...
    99+
    2024-04-02
  • redis2.8配置文件中文翻译版
    # Redis 配置案例 #关于单位,当你需要指定内存的大小时,可以使用如下的单位来指定 #(译者注,为什么会存在1000为单位,我认为是考虑到硬盘的容量单位是以1000来进行计算而非程序中的1024) ...
    99+
    2022-06-04
    配置文件 中文翻译
  • MySQL配置文件my.cnf例子最详细翻译
    MySQL配置文件my.cnf 例子最详细翻译: #BEGIN CONFIG INFO #DESCR: 4GB RAM, 只使用InnoDB, ACID, 少量的连接, 队列负载大 #TYPE: SYST...
    99+
    2024-04-02
  • Mysql 文件配置解析
    目录client 端配置mysqld 端配置其他设置sql_mode总结前言: mysql数据库在日常工作开发中经常用到的存储设备, 之前已经分享了面试过程中经常被问到的mysql优...
    99+
    2024-04-02
  • Redis配置文件解析
    Redis概述:    是一个基于Key-Value的持久化数据库存储,支持丰富的数据类型,用C语言编写,可基于内存又可持久化的日志型、Key-Value数据库,并提...
    99+
    2024-04-02
  • MySQL 配置文件 my.cnf / my.ini 区别解析
    充分理解 mysql 配置文件中各个变量的意义对我们有针对性的优化 MySQL 数据库性能有非常大的意义。我们需要根据不同的数据量级,不同的生产环境情况对 MySQL 配置文件进行优化。 一、配置文件my.ini或my....
    99+
    2022-11-25
    mysqlmy.cnfmy.ini区别 mysql配置文件my.cnf mysql配置文件my.ini
  • 【八】MySQL-配置文件详解
    # 客户端设置,即客户端默认的连接参数 [client]   # 默认连接端口 port = 3306   # 用于本地连接的socket套接字 socket = /usr/local/mysql/data/mysql.sock   # 字...
    99+
    2023-10-26
    mysql 数据库 服务器
  • MySQL Cluster 配置文件
    MySQL Cluster 配置文件[@more@]1、管理节点config.ini[tcp default]SendBufferMemory=2MReceiveBufferMemory=2M[ndb_mg...
    99+
    2024-04-02
  • MySql的配置文件
    文章目录 配置文件windowsLinux 主要文件介绍bindocsDataMyISAMInnoDB includelibshare 专栏目录请点击 配置文件 win...
    99+
    2023-08-31
    mysql 数据库 php
  • 全面解析SpringBoot配置文件
    目录1.文件类型1.1properties1.2yaml简介基本语法数据类型举例2.配置提示1.文件类型 1.1properties 同以前的properties用法。 1.2yam...
    99+
    2024-04-02
  • PHP解析一个配置文件
    这篇文章将为大家详细讲解有关PHP解析一个配置文件,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。解析 PHP 配置文件 简介 PHP 配置文件 (php.ini) 保存着影响 PHP 脚本执行的设置。解析...
    99+
    2024-04-02
  • vscode怎么配置文件解析
    在VSCode中配置文件解析可以通过以下步骤实现: 打开VSCode并打开您的项目文件夹。 在左侧的侧边栏中找到并点击“设置”图标...
    99+
    2024-04-09
    vscode
  • Mysql配置文件的示例分析
    这篇文章给大家分享的是有关Mysql配置文件的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。[mysqld]port = 3306serverid = 1socket =...
    99+
    2024-04-02
  • MySQL之my.cnf配置文件图文详解
    目录引言问题1.mysql.server,mysqld,mysqld_safe的区别mysql.servermysql_safe问题2.mysql的三种启动方式:问题3.socket...
    99+
    2024-04-02
  • Mysql默认配置文件
    Mysql默认配置文件 [client] port = 3306 socket = /tmp/mysql.sock [mysql] prompt="MySQL [d]> " no-auto-rehash [mysqld] port = ...
    99+
    2017-07-13
    Mysql默认配置文件
  • mysql 配置文件样例
    [client]port=3306socket=/data/mysqldata/mysql.sock[mysql]socket=/data/mysqldata/mysql.sockport=3306no-a...
    99+
    2024-04-02
  • mysql配置文件调优
    mysql配置文件/etc/my.cnf核心文件是mysqld这部分:mysql调优:mysql调优可以从几个方面来做:1.架构层:    做从库,实现读写分离2.系...
    99+
    2024-04-02
  • mysql的配置文件my.cnf
    [client]port=3306socket=/u01/svr/run/mysql.sock[mysql]#pid_file=/u01/svr/run/mysqld.pid[mysqld]autocommit=1general_log=o...
    99+
    2023-06-03
  • MySQL之my.cnf配置文件
    之前没有仔细研究过my.cnf文件,今天有时间研究了一下my.cnf中的一些概念,这里简单整理如下,如果有什么问题,还请大家指出。 按照教程安装好MySQL之后,打开etc目录下的my.cnf文件,大概可看到下面这样的参数列表,可能不同版...
    99+
    2023-08-16
    mysql 数据库 服务器
  • mysql配置文件在哪
    mysql 配置文件通常称为 my.cnf。其位置因操作系统而异:linux/unix/macos:/etc/mysql/my.cnf、/etc/my.cnf 或 ~/.my.cnfwi...
    99+
    2024-08-06
    mysql linux macos
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作