我的编程空间,编程开发者的网络收藏夹
学习永远不晚

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

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

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

# 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


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

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

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

redis2.8配置文件中文翻译版

# Redis 配置案例 #关于单位,当你需要指定内存的大小时,可以使用如下的单位来指定 #(译者注,为什么会存在1000为单位,我认为是考虑到硬盘的容量单位是以1000来进行计算而非程序中的1024) #(因此 使用 1000为单位可以进
2022-06-04

MySQL 配置文件 my.cnf / my.ini 区别解析

充分理解 mysql 配置文件中各个变量的意义对我们有针对性的优化 MySQL 数据库性能有非常大的意义。我们需要根据不同的数据量级,不同的生产环境情况对 MySQL 配置文件进行优化。一python、配置文件my.ini或my.cnf的
2022-11-25

Linux MySQL配置文件详解

MySQL是一个流行的开源关系型数据库管理系统,在Linux系统中,MySQL的配置文件通常位于/etc/mysql/my.cnf或/etc/my.cnf中。在配置文件中可以设置MySQL的各种参数,包括数据库路径、端口、缓冲区大小、日志文
Linux MySQL配置文件详解
2024-08-16

vscode怎么配置文件解析

在VSCode中配置文件解析可以通过以下步骤实现:打开VSCode并打开您的项目文件夹。在左侧的侧边栏中找到并点击“设置”图标(通常是一个齿轮形状)。在搜索框中输入“settings.json”并点击打开“settings.json”文
vscode怎么配置文件解析
2024-04-09

解析Pytest3种配置文件方式

本文介绍了解析Pytest配置文件的3种方式:命令行参数:方便快捷,但配置选项有限。.ini文件:提供更广泛的配置选项,可重用和共享。Python模块:完全可定制,可实现复杂的配置需求。选择合适的方式取决于测试项目的需求和复杂性:简单项目:命令行参数需要高级配置:.ini文件或Python模块高度可定制和可重用:Python模块
解析Pytest3种配置文件方式
2024-04-02

如何解析PHP及配置文件

这篇文章将为大家详细讲解有关如何解析PHP及配置文件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。PHP是什么PHP是HypertextPreprocessor超文本预处理器的缩写,是一种广
2023-06-04

Python中怎么解析配置文件

这篇文章将为大家详细讲解有关Python中怎么解析配置文件,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在
2023-06-17

MySQL配置文件my.cnf优化详解

MySQL 5.5.13 参数说明: [client] character-set-server = utf8 port = 3306 socket = /data/mysql/3306/mysql.sock [mysqld] ch
2022-05-21

编程热搜

目录