以mysql-noinstall-5.0.22为例
1、下载mysql-noinstall-5.0.22.zip
2、解压mysql-noinstall-5.0.22.zip到D盘根目录下D:\mysql-5.0.22\
3、D:\mysql-5.0.22\目录下新建一个my.ini,拷贝my-small.ini代码至my.ini。添加部分代码
# 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.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /usr/local/var) or
# ~/.my.cnf to set user-specific options.
#
# 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]
#设置mysql客户端的字符集
default-character-set=gbk
password = 123456
port = 3306
socket = /tmp/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
#设置mysql服务器的字符集,默认编码
default-character-set=gbk
#设置mysql的安装目录
basedir=D:/mysql-5.0.22
#设置mysql数据库的数据的存放目录,必须是data
datadir=D:/mysql-5.0.22/data
port = 3306
socket = /tmp/mysql.sock
skip-locking
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 64K
# 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
# Uncomment the following if you want to log updates
#log-bin=mysql-bin
# Uncomment the following if you are NOT using BDB tables
#skip-bdb
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/var/
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /usr/local/var/
#innodb_log_arch_dir = /usr/local/var/
# 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
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 8M
sort_buffer_size = 8M
[myisamchk]
key_buffer = 8M
sort_buffer_size = 8M
[mysqlhotcopy]
interactive-timeout
4、编写启动脚本startup.bat,放在D:\mysql-5.0.22\bin路径下
@echo off
echo start mysql5 on localhost
mysqld --install mysql5 --defaults-file=D:\mysql-5.0.22\my.ini
net start mysql5
pause
5、编写停止脚本stop.bat放在D:\mysql-5.0.22\bin路径下
@echo off
echo stop mysql5
net stop mysql5
mysqld --remove mysql5
pause
6、配置完毕后,双击D:\mysql-5.0.22\bin路径下的startup.bat批处理文件,既可以将mysql5注册到系统服务中,并且已经启动。
注意:如果是win7操作系统,不能直接运行,由于win7对权限更加严格,会出现
start mysql5 on localhost
Install/Remove of the Service Denied!
发生系统错误 5。
需要点击右键“以管理员身份运行”
7、查看数据库情况,如
D:\mysql-5.0.22\bin>mysqlshow -u root mysql //查看mysql database
+---------------------------+
| Tables |
+---------------------------+
| columns_priv |
| db |
| func |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| host |
| proc |
| procs_priv |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
8、修改root密码为123456,密码默认为空
mysql存储用户和密码放置于mysql数据库的use表里,你可以通过下面命令直接修改其密码
$ mysql -u root -p #--登录mysql 服务器
mysql> use mysql; #使用mysql数据库
mysql> update user set password=PASSWORD("123456") where User='root'; #--更新用户密码
mysql>flush privileges; #--重新刷新权限
mysql> quit #--退出mysql服务器
9、over
分享到:
相关推荐
### MySQL免安装版配置步骤详解 #### 一、引言 在快速开发环境中,免安装版MySQL因其便捷性而受到广泛欢迎。对于那些频繁更换操作系统或需要快速搭建开发环境的人来说,这种无需安装即可使用的MySQL版本提供了极大...
**知识点详解:MySQL免安装版配置** MySQL作为全球最广泛使用的开源关系型数据库管理系统之一,其免安装版因其便捷性和灵活性而备受用户喜爱。本文将深入解析如何配置MySQL免安装版,包括下载与解压、环境变量设置...
1. **下载MySQL免安装压缩包**:首先,你需要从MySQL官方网站下载适用于你操作系统的免安装版本,例如`mysql-8.0.29-winx64`,这包含了运行MySQL所需的所有文件。 2. **解压并定位**:将下载的压缩包解压到你希望...
### MySQL免安装版配置知识点详解 #### 一、MySQL免安装版概述 MySQL免安装版是一种无需进行传统安装过程即可使用的版本,适用于那些希望快速部署MySQL数据库环境的用户。相较于传统的安装程序,免安装版提供了...
这个“mysql免安装自动配置启动文件”旨在简化MySQL的启动和关闭过程,无需经历传统的安装步骤,极大地提高了工作效率。 首先,让我们了解一下这个自动配置启动文件的工作原理。它通常包含了一系列的批处理脚本或...
MySQL免安装版配置详解 MySQL免安装版是一个方便快捷的方式来部署和使用MySQL数据库,无需进行繁琐的安装过程。本文将详细介绍如何配置MySQL免安装版,包括准备工作、配置、安装服务、启动与关闭、精简目录、初始化...
免安装版 mysql 免安装版本配置方法 详细步骤一步一步完成mysql的安装和使用 [mysql] #设置mysql客户端默认字符集 default-character-set=utf8 [mysqld] #设置3306端口 port = 3306 #设置mysql的安装目录 basedir=D:...
免安装版的mysql配置文档,本人已经用过了,多种方法没问题。
MySQL5.7 免安装版配置 MySQL5.7 免安装版配置是指在 Windows 平台下,使用免安装的方式来配置 MySQL5.7 数据库管理系统。下面是 MySQL5.7 免安装版配置的详细步骤和相关知识点。 一、文件配置 在配置 MySQL5.7 ...
在本教程中,我们将深入探讨如何下载、配置和使用MySQL免安装版,特别是针对MySQL 5.7版本。 首先,你需要从官方网站或其他可信源下载MySQL 5.7的免安装版。这个版本通常包含所有必要的文件,包括服务器组件和...
1. **获取MySQL免安装版**:MySQL的免安装版本通常以zip格式提供,下载后进行解压缩。 2. **解压缩与放置**:将下载的zip文件解压缩,建议将其解压到一个不含中文字符的磁盘根目录,例如`C:\MySQL`,这有助于避免因...
### MySQL5.7免安装版配置详解 #### 一、前言 MySQL 是一款非常流行的开源关系型数据库管理系统,广泛应用于各类网站与应用系统的后台数据管理。本文将详细介绍如何配置 MySQL5.7 的免安装版,并针对配置过程中的...
以下是关于Windows下配置和使用MySQL免安装版的详细步骤及相关的知识点: 1. **下载与解压**:首先,你需要从官方网站或者其他可信来源下载MySQL的免安装版本,例如`mysql-noinstall-5.1.6-alpha-win32.zip`。下载...
资源名称:Linux MySQL免安装及配置资源截图: 资源太大,传百度网盘了,链接在附件中,有需要的同学自取。
MySQL免安装版配置是针对MySQL数据库服务器的一种安装方式,它不需要经历复杂的安装过程,只需要解压下载的压缩包,进行一些配置文件的修改和环境变量的设置,就可以完成数据库的部署。这为快速搭建MySQL环境提供了...
在使用MySQL免安装版时,用户需要配置MySQL的配置文件(my.ini或my.cnf),设置如端口、数据目录、用户名和密码等参数。启动MySQL服务后,可以使用Navicat连接到本地或远程的MySQL服务器,进行数据库管理和开发工作...
my-default.ini相关,mysql免安装版本的配置相关,更多相关配置可以参考个人博客