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

#

# 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. 安装mysql后环境变量_环境变量配置2 安装mysql

    安装个低版本的5.5 net start mysql  启动 安装好直接执行mysql 然后执行mysql -uroot -proot 注意不要被误导:这里的mysql -uroot -p后的root ...

  4. centos 6.5 安装 lamp 后mysql不能启动_Lamp的搭建--centos6.5下安装mysql

    1:到mysql官网下载linux版本的mysql数据库,在选择栏里没有适合centos只有Redhat,Debian等.我们就下载redhat系列的,笔者选择了6版本的. 2:安装MySQL主要有两 ...

  5. mysql 5.6 缓存_为什么默认情况下从MySQL 5.6开始禁用query_cache_type?

    您需要InnoDB的历史才能理解原因.它来了: 战争故事 InnoDB和查询缓存处于不断的战争状态.在检查InnoDB缓冲池中的更改然后交叉检查查询缓存以进行相同更改时,InnoDB往往非常苛刻. 和 ...

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

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

  7. mysql 是否支持Unix系统_在UNIX系统下安装MySQL

    在Soundbreak我们每天24小时不间断地播放实况音频和视频,所以对于MySQL的新增的复制特性,我们不能做出很令人信服的测试.通过测试我们发现,可以使用这个特性来与备份数据库服务器保持数据同步, ...

  8. mac笔记本安装mysql_mac下安装MySQL完整步骤(图文详情)

    原文摘自:http://www.jb51.net/article/103841.htm 最近使用Mac系统,准备搭建一套本地web服务器环境.因为Mac系统自带PHP和apach,但是没有自带mysq ...

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

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

最新文章

  1. IPv6 — 移动性支持
  2. 忘掉什么鬼并发,先听完这个故事!
  3. purge table table_name的一点测试!
  4. OData Console in C4C and Gateway Client in CRM Fiori
  5. 笨人可以学计算机吗,为什么有的笨人一旦开窍,其人生就像开了挂似的呢?
  6. 三公里社区争夺战—2021年社区团购研究报告
  7. 一套通用的后台管理系统Base Admin 前端:layui 后端:java
  8. ACM Fellow发文抨击【同行评审】作弊轻松中顶会
  9. linux安装qq_一分钟,轻松上手 Linux 安装QQ,让你简单开启聊天办公新环境
  10. SCSS和Sass有什么区别?
  11. 2.看板方法---什么是看板方法
  12. java xml字符串转换成对象_将XML字符串转换为对象
  13. 绝不要用的 Linux 命令 !
  14. brat安装使用指南
  15. PS_BaseUse_红眼擦拭
  16. Fedora 使用 yaourt
  17. Delphi7企业原版_史上最经典的delphi 版本
  18. mac迅雷精简教程,get一下吧!
  19. 关于TextView的maxLines和ellipsize属性显示不正确情况之一的解决
  20. 超简单利用java实现小游戏剪刀石头布

热门文章

  1. CentOS6.4系统启动失败故障排查
  2. Service Broker实现发布-订阅(Publish-Subscribe)框架
  3. 9.关于Unicode字符集
  4. Spring IOC容器-注解的方式
  5. 用java编写日历添加窗口一角_Java 实训4 编写一个窗体程序显示日历
  6. mysql sleep详解_MySQL中sleep函数的特殊现象示例详解
  7. oracle实验数据库和表,1oracle创建数据库和表.doc
  8. 微擎pc 导入前缀_段覆盖前缀| 8086微处理器
  9. 日期setMinutes()方法以及JavaScript中的示例
  10. mysql语句数据库_数据库的Mysql语句