Home Database Mysql Tutorial mysql配置文件例子_MySQL

mysql配置文件例子_MySQL

Jun 01, 2016 pm 01:29 PM
mysql Configuration file

bitsCN.com

mysql配置文件例子

 

[mysqld] 

port        = 3306

socket        = /tmp/mysql.sock

# 设置mysql的安装目录 

basedir=D://mysql-5.6.14-win32

# 设置mysql数据库的数据的存放目录,必须是data

datadir=D://mysql-5.6.14-win32//data

#innodb_log_arch_dir 默认datadir

#innodb_log_group_home_dir  默认datadir

# 设置mysql服务器的字符集,默认编码

default-character-set=utf8

 

#连接数的操作系统监听队列数量,如果经常出现“拒绝连接”错误可适当增加此值

back_log = 50

#不使用接听TCP / IP端口方法,mysqld通过命名管道连接

#skip-networking

# 最大连接数量

max_connections = 100

#打开表的线程数量限定,最大4096,除非用mysqld_safe打开限制

table_open_cache = 2048

#MySql 服务接收针对每个进程最大查询包大小

max_allowed_packet = 16M

#作用于SQL查询单笔处理使用的内存缓存,如果一笔操作的二进制数据超过了限定大小,将会在磁盘上开辟空间处理,一般设为 1-2M即可,默认1M

binlog_cache_size = 2M

#单个内存表的最大值限定

max_heap_table_size = 64M

#为每个线程分配的排序缓冲大小

sort_buffer_size = 8M

#join 连表操作的缓冲大小,根据实际业务来设置,默认8M

join_buffer_size = 32M

#操作多少个离开连接的线程的缓存

thread_cache_size = 8

#并发线程数量,默认为8,可适当增加到2倍以内。如果有多个CPU可以乘 上CPU的数量。双核CPU可以乘 上当前最核数再乘 上70%-85%

thread_concurrency = 16

#专用于具体SQL的缓存,如果提交的查询与几次中的某查询相同,并且在query缓存中存在,则直接返回缓存中的结果。

query_cache_size = 64M

#对应上一条设置,当查询的结果超过下面设置的大小时,将不会趣入到上面设置的缓存区中,避免了一个大的结果占据大量缓存。

query_cache_limit = 2M

#设置加全文检索中的最小单词长度。

#ft_min_word_len = 4

#CREATE TABLE 语句的默认表类型,如果不自己指定类型,则使用下行的类型

default-storage-engine = InnoDB

#线程堆栈大小,mysql说它自己用的堆栈大小不超过64K。这个值可适当设高一点(在我的项目中都是共用同一个数据库连接的),默认192K

thread_stack = 800K

#设置事务处理的级别,默认 REPEATABLE-READ,一般用它就即可,以下二行按顺序对应,

#可读写未提交的数据,创建未提交的数据副本读写,未提交之前可读不可写,只允许串行序列招行事务。

# READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ, SERIALIZABLE

transaction_isolation = REPEATABLE-READ

#单一内存临时表在内存中的大小,超过此值自动转换到磁盘操作

tmp_table_size = 64M

#启动二进制日志功能,可通过它实现时间点恢复最新的备份

#log-bin=mysql-bin

#二进制日志格式,对就上一条,-建议混合格式

#binlog_format=mixed

#转换查询为缓慢查询

slow_query_log

#对应上一条,如果一个查询超过了下条设定的时间则执行上一条。

long_query_time = 2

#自定义主机ID识别符,用于主从或多服务器之间识别,为 一个 int 类型

server-id = 1

#一般用来缓存MyISAM表的主键,也用于临时的磁盘表缓存主键,上面多次出现临时磁盘表,所以就算不用MyISAM也最好为其设置一个不小的值,默认32M

key_buffer_size = 64M

#全表扫描MyISAM表时的缓存,每个线程拥有下行的大小。

read_buffer_size = 2M

#排序操作时与磁盘之间的缓存,分到每个线程,默认16M

read_rnd_buffer_size = 24M

#MyISAM使用特殊树形进行批量插入时的缓存,如insert ... values(..)(..)(..)

bulk_insert_buffer_size = 64M

#MyISAM索引文件的最大限定,

myisam_max_sort_file_size = 10G

#如果一个myisam表有一个以上的索引, MyISAM可以使用一个以上线程来排序并行它们。较耗硬件资源,如果你的环境不错,可以增加此值。

myisam_repair_threads = 2

#自动检查和修复无法正确关闭MyISAM表。

myisam_recover

# *** INNODB Specific options ***

#开启下条将会禁用 INNODB

#skip-innodb

#一般不用设置或者说设了也没多大用,InnoDB会自己与操作系统交互管理其附加内存池所使用InnoDB的存储数据的大小

innodb_additional_mem_pool_size = 16M

#innodb整体缓冲池大小,不宜过大,设为本地内存的 50%-75% 比较合适,在本机开发过程中可以设得较小一点如 200M

innodb_buffer_pool_size = 200M

#InnoDB的数据存储在一个或多个数据文件组成的表空间

innodb_data_file_path = ibdata1:10M:autoextend

#用于异步IO操作的线程数量,默认为 4 ,可适当提高

innodb_file_io_threads = 8

#线程数内允许的InnoDB内核,不宜太高

innodb_thread_concurrency = 16

#InnoDB的事务日志快存行为,默认为 1,为0可减轻磁盘I/0操作,还有以为2

innodb_flush_log_at_trx_commit = 1

#InnoDB的用于的缓冲日志数据的大小

innodb_log_buffer_size = 8M

#日志文件,可设置为25%-90%的总体缓存大小,默认 256M. 修改此项要先删除datadir/ib_logfileXXX 

innodb_log_file_size = 256M

#日志组数量,默认为3

innodb_log_files_in_group = 3

#InnoDB的日志文件位置。默认是MySQL的datadir

#innodb_log_group_home_dir

#InnoDB最大允许的脏页缓冲池的百分比,默认90

innodb_max_dirty_pages_pct = 80

#事务死锁超时设定

innodb_lock_wait_timeout = 120

 

[client]

port        = 3306

socket        = /tmp/mysql.sock

# 设置mysql客户端的字符集

default-character-set=utf8

 

[mysqldump]

quick

max_allowed_packet = 16M

 

[mysql]

no-auto-rehash

 

# Only allow UPDATEs and DELETEs that use keys.

#safe-updates

 

[WinMySQLAdmin] 

# 指定mysql服务启动启动的文件

Server=D://mysql-5.6.14-win32//bin//mysqld.exe 

bitsCN.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MySQL: An Introduction to the World's Most Popular Database MySQL: An Introduction to the World's Most Popular Database Apr 12, 2025 am 12:18 AM

MySQL is an open source relational database management system, mainly used to store and retrieve data quickly and reliably. Its working principle includes client requests, query resolution, execution of queries and return results. Examples of usage include creating tables, inserting and querying data, and advanced features such as JOIN operations. Common errors involve SQL syntax, data types, and permissions, and optimization suggestions include the use of indexes, optimized queries, and partitioning of tables.

How to connect to the database of apache How to connect to the database of apache Apr 13, 2025 pm 01:03 PM

Apache connects to a database requires the following steps: Install the database driver. Configure the web.xml file to create a connection pool. Create a JDBC data source and specify the connection settings. Use the JDBC API to access the database from Java code, including getting connections, creating statements, binding parameters, executing queries or updates, and processing results.

MySQL's Place: Databases and Programming MySQL's Place: Databases and Programming Apr 13, 2025 am 12:18 AM

MySQL's position in databases and programming is very important. It is an open source relational database management system that is widely used in various application scenarios. 1) MySQL provides efficient data storage, organization and retrieval functions, supporting Web, mobile and enterprise-level systems. 2) It uses a client-server architecture, supports multiple storage engines and index optimization. 3) Basic usages include creating tables and inserting data, and advanced usages involve multi-table JOINs and complex queries. 4) Frequently asked questions such as SQL syntax errors and performance issues can be debugged through the EXPLAIN command and slow query log. 5) Performance optimization methods include rational use of indexes, optimized query and use of caches. Best practices include using transactions and PreparedStatemen

Why Use MySQL? Benefits and Advantages Why Use MySQL? Benefits and Advantages Apr 12, 2025 am 12:17 AM

MySQL is chosen for its performance, reliability, ease of use, and community support. 1.MySQL provides efficient data storage and retrieval functions, supporting multiple data types and advanced query operations. 2. Adopt client-server architecture and multiple storage engines to support transaction and query optimization. 3. Easy to use, supports a variety of operating systems and programming languages. 4. Have strong community support and provide rich resources and solutions.

MySQL's Role: Databases in Web Applications MySQL's Role: Databases in Web Applications Apr 17, 2025 am 12:23 AM

The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

How to start mysql by docker How to start mysql by docker Apr 15, 2025 pm 12:09 PM

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

How to install mysql in centos7 How to install mysql in centos7 Apr 14, 2025 pm 08:30 PM

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

See all articles