解压mysql,在%mysql_home%下新建my.ini,编辑如下内容:
# MySQL Server Instance Configuration File
# ----------------------------------------------------------------------
# Generated by the MySQL Server Instance Configuration Wizard
#
#
# Installation Instructions
# ----------------------------------------------------------------------
#
# On Linux you can copy this file to /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options
# (@localstatedir@ for this installation) or to
# ~/.my.cnf to set user-specific options.
#
# On Windows you should keep this file in the installation directory
# of your server (e.g. C:\Program Files\MySQL\MySQL Server 4.1). To
# make sure the server reads the config file use the startup option
# "--defaults-file".
#
# To run run the server from the command line, execute this in a
# command line shell, e.g.
# mysqld --defaults-file="C:\Program Files\MySQL\MySQL Server 4.1\my.ini"
#
# To install the server as a Windows service manually, execute this in a
# command line shell, e.g.
# mysqld --install MySQL41 --defaults-file="C:\Program Files\MySQL\MySQL Server 4.1\my.ini"
#
# And then execute this in a command line shell to start the server, e.g.
# net start MySQL41
#
#
# Guildlines for editing this file
# ----------------------------------------------------------------------
#
# In this file, you can use all long options that the program supports.
# If you want to know the options a program supports, start the program
# with the "--help" option.
#
# More detailed information about the individual options can also be
# found in the manual.
#
#
# CLIENT SECTION
# ----------------------------------------------------------------------
#
# The following options will be read by MySQL client applications.
# Note that only client applications shipped by MySQL are guaranteed
# to read this section. If you want your own MySQL client program to
# honor these values, you need to specify it as an option during the
# MySQL client library initialization.
#
[client]
port=3306
[mysql]
default-character-set=utf8
# SERVER SECTION
# ----------------------------------------------------------------------
#
# 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="D:/ezframework3.2/mysql5/"
basedir="./"
#Path to the database root
#datadir="D:/ezframework3.2/mysql5/Data/"
datadir="./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=utf8
# 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=1024
# 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=64m
# 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=5M
# 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_max_extra_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=8M
# 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=8M
# 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=212K
#*** INNODB Specific options ***
# Use this option if you have a MySQL server with InnoDB support enabled
# but you do not plan to use it. This will save memory and disk space
# and speed up some things.
#skip-innodb
# Additional memory pool that is used by InnoDB to store metadata
# information. If InnoDB requires more memory for this purpose it will
# start to allocate it from the OS. As this is fast enough on most
# recent operating systems, you normally do not need to change this
# value. SHOW INNODB STATUS will display the current amount used.
innodb_additional_mem_pool_size=2M
# If set to 1, InnoDB will flush (fsync) the transaction logs to the
# disk at each commit, which offers full ACID behavior. If you are
# willing to compromise this safety, and you are running small
# transactions, you may set this to 0 or 2 to reduce disk I/O to the
# logs. Value 0 means that the log is only written to the log file and
# the log file flushed to disk approximately once per second. Value 2
# means the log is written to the log file at each commit, but the log
# file is only flushed to disk approximately once per second.
innodb_flush_log_at_trx_commit=1
# The size of the buffer InnoDB uses for buffering log data. As soon as
# it is full, InnoDB will have to flush it to disk. As it is flushed
# once per second anyway, it does not make sense to have it very large
# (even with long transactions).
innodb_log_buffer_size=1M
# InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
# row data. The bigger you set this the less disk I/O is needed to
# access data in tables. On a dedicated database server you may set this
# parameter up to 80% of the machine physical memory size. Do not set it
# too large, though, because competition of the physical memory may
# cause paging in the operating system. Note that on 32bit systems you
# might be limited to 2-3.5G of user level memory per process, so do not
# set it too high.
innodb_buffer_pool_size=8M
# Size of each log file in a log group. You should set the combined size
# of log files to about 25%-100% of your buffer pool size to avoid
# unneeded buffer pool flush activity on log file overwrite. However,
# note that a larger logfile size will increase the time needed for the
# recovery process.
innodb_log_file_size=10M
# Number of threads allowed inside the InnoDB kernel. The optimal value
# depends highly on the application, hardware as well as the OS
# scheduler properties. A too high value may lead to thread thrashing.
innodb_thread_concurrency=8
wait_timeout=300
interactive_timeout=300
编辑完成后保存。
在%mysql_home%下新建mysql.bat,编辑如下内容:
.\bin\mysqld --defaults-file=".\my.ini" --console
保存,双击mysql.bat启动mysql,搞定。
分享到:
相关推荐
以下是一个详细的步骤指南,解释如何在Windows上安装和配置MySQL解压版。 首先,你需要从MySQL官网下载MySQL的压缩包。例如,可以下载5.7.20版本。同时,由于该版本可能依赖于Visual C++ Redistributable Packages ...
1. **安装与配置**:MySQL的精简版通常不需要正式的安装过程,只需要解压缩到一个目录,然后通过批处理文件启动服务。配置文件my.ini(或my.cnf)可能被简化,但仍然可以调整参数以适应不同的性能需求,如内存使用、...
本文将详细介绍如何在Windows系统上安装并配置MySQL解压版,包括下载、安装、配置文件编辑、服务初始化与启动等步骤,并提供了一些基本的数据库操作示例以及安全性方面的注意事项。 #### 二、安装与配置步骤 #####...
以上就是Windows环境下配置MySQL 5.7解压版的详细步骤。通过这种方式,你可以快速搭建一个本地MySQL服务器,而无需完整安装过程。确保在操作过程中遵循最佳实践,如定期备份数据,以及为用户提供适当的权限,以保障...
通过上述步骤,您可以完成MySQL解压版的安装和基本配置。这种方式适用于快速搭建开发环境或测试环境。需要注意的是,在生产环境中使用时,建议采用更为安全的安装方式,并对权限和配置进行细致调整以增强系统的安全...
### Windows下MySQL安装和配置详解 #### 一、MySQL简介 MySQL是一款广泛使用的开源关系型数据库管理系统(RDBMS),最初由瑞典MySQL AB公司开发,现隶属于Oracle公司。它以其高性能、稳定性和安全性著称,被众多企业...
MySQL解压版教程 在许多情况下,初学者或者开发者可能因为各种原因无法顺利安装标准的MySQL服务,例如系统权限问题、依赖冲突等。在这种情况下,MySQL的解压版提供了一个简单快捷的解决方案。本教程将详细讲解如何...
以下是关于Windows下配置和使用MySQL免安装版的详细步骤及相关的知识点: 1. **下载与解压**:首先,你需要从官方网站或者其他可信来源下载MySQL的免安装版本,例如`mysql-noinstall-5.1.6-alpha-win32.zip`。下载...
### MySQL在Windows下的解压安装及.ini配置文件更改详解 #### 一、概述 本文将详细介绍如何在Windows环境下通过解压的方式安装MySQL 5.0,并对安装过程中的关键步骤——`.ini`配置文件的修改进行深入讲解。通过...
MySQL是一种广泛使用的开源...通过以上步骤,你已经成功安装并配置了MySQL解压版,现在可以开始使用MySQL进行数据管理了。记得定期备份数据库,以防止数据丢失,并保持MySQL的更新,以获取最新的安全修复和功能改进。
本文档旨在提供MySQL解压版在Windows系统下的配置指南,帮助用户快速搭建MySQL环境,并解决常见配置问题。 #### 二、安装与配置 ##### 2.1 安装前准备 - **确认系统环境**:确保您的Windows系统版本与MySQL版本...
Windows 10系统MySQL解压版本64位安装配置,尺寸Win10x64,MySQL
2. **快速启动**:无需等待安装过程,用户只需解压文件,找到bin目录下的mysqld.exe(对于Windows系统)或其他启动脚本,就可以启动MySQL服务器。这对于开发环境的快速搭建尤其有用。 3. **默认配置**:MySQL绿色版...
本文将深入解析如何配置MySQL免安装版,包括下载与解压、环境变量设置、服务安装、以及中文字符集的配置。 ### 1. 下载MySQL免安装版 首先,需访问MySQL官方网站或其他可信赖的资源平台,下载适合当前操作系统的...
MySQL5.7 免安装版配置是指在 Windows 平台下,使用免安装的方式来配置 MySQL5.7 数据库管理系统。下面是 MySQL5.7 免安装版配置的详细步骤和相关知识点。 一、文件配置 在配置 MySQL5.7 之前,需要先解压缩 MySQL...
1. **创建配置文件**: 在Windows系统目录下(通常为`C:\WINDOWS\`)创建一个新的文本文件,并将其命名为`mysql.ini`。 2. **编辑配置文件**: - 设置安装目录(`basedir`):此参数用于指定MySQL的安装路径,例如:`...
Windows 下 MySQL 5.6 的安装 在这篇文章中,我们将详细介绍如何在 Windows 下安装 MySQL 5.6。从下载到安装和配置,我们将一步步指导你完成整个安装过程。 下载MySQL 首先,我们需要下载 MySQL 的安装包。在 ...