该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

#

# The following options will be read by the MySQL Server. Make sure that

# you have installed the server correctly (see above) so it reads this

# file.

#

[mysqld]

# The TCP/IP Port the MySQL Server will listen on

port=3306

#Path to installation directory. All paths are usually resolved relative to this.

basedir="C:/Program Files/MySQL/MySQL Server 5.1/"

#Path to the database root

datadir="C:/ProgramData/MySQL/MySQL Server 5.1/Data/"

# The default character set that will be used when a new schema or table is

# created and no character set is defined

default-character-set=latin1

# The default storage engine that will be used when create new tables when

default-storage-engine=INNODB

# Set the SQL mode to strict

sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

# The maximum amount of concurrent sessions the MySQL server will

# allow. One of these connections will be reserved for a user with

# SUPER privileges to allow the administrator to login even if the

# connection limit has been reached.

max_connections=100

# Query cache is used to cache SELECT results and later return them

# without actual executing the same query once again. Having the query

# cache enabled may result in significant speed improvements, if your

# have a lot of identical queries and rarely changing tables. See the

# "Qcache_lowmem_prunes" status variable to check if the current value

# is high enough for your load.

# Note: In case your tables change very often or if your queries are

# textually different every time, the query cache may result in a

# slowdown instead of a performance improvement.

query_cache_size=0

# The number of open tables for all threads. Increasing this value

# increases the number of file descriptors that mysqld requires.

# Therefore you have to make sure to set the amount of open files

# allowed to at least 4096 in the variable "open-files-limit" in

# section [mysqld_safe]

table_cache=256

# Maximum size for internal (in-memory) temporary tables. If a table

# grows larger than this value, it is automatically converted to disk

# based table This limitation is for a single table. There can be many

# of them.

tmp_table_size=18M

# How many threads we should keep in a cache for reuse. When a client

# disconnects, the client's threads are put in the cache if there aren't

# more than thread_cache_size threads from before.   This greatly reduces

# the amount of thread creations needed if you have a lot of new

# connections. (Normally this doesn't give a notable performance

# improvement if you have a good thread implementation.)

thread_cache_size=8

#*** MyISAM Specific options

# The maximum size of the temporary file MySQL is allowed to use while

# recreating the index (during REPAIR, ALTER TABLE or LOAD DATA INFILE.

# If the file-size would be bigger than this, the index will be created

# through the key cache (which is slower).

myisam_max_sort_file_size=100G

# If the temporary file used for fast index creation would be bigger

# than using the key cache by the amount specified here, then prefer the

# key cache method.   This is mainly used to force long character keys in

# large tables to use the slower key cache method to create the index.

myisam_sort_buffer_size=35M

# Size of the Key Buffer, used to cache index blocks for MyISAM tables.

# Do not set it larger than 30% of your available memory, as some memory

# is also required by the OS to cache rows. Even if you're not using

# MyISAM tables, you should still set it to 8-64M as it will also be

# used for internal temporary disk tables.

key_buffer_size=25M

# Size of the buffer used for doing full table scans of MyISAM tables.

# Allocated per thread, if a full scan is needed.

read_buffer_size=64K

read_rnd_buffer_size=256K

# This buffer is allocated when MySQL needs to rebuild the index in

# REPAIR, OPTIMZE, ALTER table statements as well as in LOAD DATA INFILE

# into an empty table. It is allocated per thread so be careful with

# large settings.

sort_buffer_size=256K

win7 mysql 未响应_求助啊 WIN7下安装mysql出问题 老是说未响应~!!相关推荐

  1. debian nvidia 安装_求助在debian下安装nvidia显卡驱动教程

    你的位置: 问答吧 -> Debian -> 问题详情 求助在debian下安装nvidia显卡驱动教程 谁写个阿!让我们这些新手解决哈阿!我用的是kde3.4!显卡是gf4mx440!s ...

  2. 安装mysql 图_如何在Windows下安装MYSQL,并截图说明

    说明 : window 下安装 mysql 虽然简单,但是细节不注意就会安装失败,特别是配置服务器时,Current Root Password:为空:如果输入密码了在后面安装会报错.(不知道设置这个 ...

  3. 在linux下怎么安装mysql,手把手教你在Linux系统下安装MySQL

    在CentOS中默认安装有MariaDB,这个是MySQL的分支,但为了需要,还是要在系统中安装MySQL,而且安装完成之后可以直接覆盖掉MariaDB. 1. 下载并安装MySQL官方的 Yum R ...

  4. linux下mysql 有双机_在Linux环境下配置mysql cluster双机集群

    一.介绍 如何安装配置基于2台服务器的MySQL集群.并且实现任意一台服务器出现问题或宕机时MySql集群依然能够继续运行.加下后续的(keepalived+lvs+mysql cluster文档), ...

  5. mysql深度解析_百万级数据下的mysql深度解析

    mysql 作为一款非常优秀的免费数据库被广泛的使用,平时我们开发的项目数据过百万的时候不多.最近花了大量的时间来深入的研究mysql百万级数据情况下的优化. 遇到了很多问题并解决了他们,特此分享给大 ...

  6. mysql 5.6.34 二进制下载_linux下安装mysql二进制版本(5.6.34)

    我这里下载的是mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz 1.创建mysql用户和用户组 #groupadd mysql #useradd -g mysql m ...

  7. ubuntu中mysql怎么退出命令_ubuntu的Linux下安装MySQL

    如果在 centOS下面可以使用yum指令安装,这里采用的是ubuntu操作系统,安装方法和yum类似,操作如下: 1.安装MySQL的服务端 安装mysql服务端的命令: apt-get insta ...

  8. win7装mysql一直未响应_求助啊 WIN7下安装mysql出问题 老是说未响应~!!

    该楼层疑似违规已被系统折叠 隐藏此楼查看此楼 # # The following options will be read by the MySQL Server. Make sure that # ...

  9. mysql双击同步_求助,WINDOWS下MYSQL双机同步的问题

    展开全部 1.1 环境搭建 准备两台Windows NT 主机,分别安装好iKEY Server windows 版本,确定版本无误,确保e5a48de588b662616964757a6869646 ...

  10. mysql bundle 安装_阿里云服务器下安装MySQL (Bundle压缩包 安装)

    一  下载Bundle文件 我阿里云版本是centos 7.3 ,下载的是如下版本 二 卸载对应的依赖 主要是如下两个依赖: rpm -qa | grep  postfix rpm -qa | gre ...

最新文章

  1. OpenResty学习中的几个小例子汇总
  2. div模拟textarea文本域轻松实现高度自适应——张鑫旭
  3. 中国移动手机网络私有网络连接问题解决办法
  4. 原生js删除html,原生js操作dom添加删除替换class
  5. mysql 核心目录
  6. 哈佛大学计算机科学专,哈佛大学计算机科学专业
  7. 安装composer以及laravel框架
  8. java中的无效的列类型_java.sql.SQLException: 无效的列类型: 1111
  9. ps cs6导出html,渲染视频使用不了是怎么回事?pscs6ex – 手机爱问
  10. python系统路径_python中os模块简单了解(系统命令和路径的获取)
  11. 通俗易懂讲解 CAP理论
  12. [Fourier]傅里叶级数中虚数部分j去了哪里
  13. 算法中的数学基础知识
  14. 字节跳动启动大规模校招
  15. c++求矩阵的秩_高等代数|第八章 矩阵 最小多项式与若尔当标准形
  16. NAT444技术简介
  17. Flume 常见配置zo
  18. JS——正则表达式(超详细)
  19. css 长度单位的理解
  20. Elasticsearch笔记(三)基础知识

热门文章

  1. 怎么在Linux中telnet服务器,Linux系统下Telnet服务器配置
  2. mysql linq 事务_一步一步学Linq to sql(七):并发与事务
  3. catv系统主要有哪三部分组成_光纤通信系统的组成与特点
  4. PAT之图:遍历、最短路径dijkstra
  5. 【cf:1100F】 Ivan and Burgers(多次区间最大异或值查询----线性基+离线+思维)
  6. 邮箱显示exchange账号服务器错误,删除监视邮箱Exchange服务器不正常状态
  7. 解析极限编程--Kent Beck, Cynthia Andres读后感
  8. 极客大学产品经理训练营 产品经理新人如何落地 第0课总结
  9. java 表单字段扩展_如何从Chrome扩展程序填写网页表单中的文本字段?
  10. GBDT与LR融合现状