mysql5.6的安装步骤

1.下载mysql

下载地址:https://downloads.mysql.com/archives/community/

在这里我们下载zip的包

2.解压mysql包到指定目录

3. 添加my.ini文件

java 复制代码
# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.
 
[mysqld]
 
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
 
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
 
# These are commonly set, remove the # and set as required.
# 设置mysql的安装目录
basedir = D:/my_application/mysql-5.6.51-winx64
# 设置mysql数据库的数据的存放目录
datadir = D:/my_application/mysql-5.6.51-winx64/data
# 设置3306端口
port = 3306
# server_id = .....
 
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 
 
sql_mode = NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 
 
# 允许最大连接数
max_connections = 200
# 允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统
max_connect_errors = 10
# 服务端使用的字符集默认为UTF8
character-set-server = utf8mb4
# 创建新表时将使用的默认存储引擎
default-storage-engine = INNODB
# 默认使用"mysql_native_password"插件认证
default_authentication_plugin = mysql_native_password
[mysql]
# 设置mysql客户端默认字符集
default-character-set = utf8mb4
[client]
# 设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set = utf8mb4

说明:

client\]代表客户端默认设置内容; \[mysql\]代表我们使用mysql命令登录mysql数据库时的默认设置; \[mysqld\]代表数据库自身的默认设置; ### 4. 设置mysql的环境变量 鼠标右键电脑--\>属性--\>高级系统设置--\>环境变量 1.添加mysql环境变量 ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/fdda1da1f4294b23a1c426fe48298d98.png) 2.path里新增mysql环境变量 ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/65e99dc9848d437586b260ce97a4c636.png) ### 5. 初始化数据目录 打开命令提示符(以管理员身份运行),并运行初始化命令: ```java mysqld --initialize-insecure --basedir=D:/my_application/mysql-5.6.51-winx64 --datadir=D:/my_application/mysql-5.6.51-winx64/data ``` 执行成功如下图所示: ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/d34b358e50574330b168896193921043.png) ### 6.安装MySQL服务 ```java mysqld --install MySQL56 --defaults-file=D:/my_application/mysql-5.6.51-winx64/my.ini ``` 说明: MySQL56是服务名称 执行成功如下图所示: ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/90419231119848f19c2dc4a33a9277fd.png) ### 7. 启动MySQL服务 ```java net start MySQL56 ``` 执行成功如下图所示: ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/da39905935ee4a53a2bd8cf07dc9955e.png) ### 8. 连接到MySQL ```java mysql -u root ``` 执行成功如下图所示: ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/f6cc9272df8a41d388767d6abef536b0.png) ### 9. 设置root用户密码并查看 ```java SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456'); SELECT User, Host, Password FROM mysql.user WHERE User = 'root'; ``` 执行成功如下图所示: ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/3f2faa52533b4824a6ab5383a8640bb3.png) ### 10. 用客户端连接mysql ![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/ff9a5ad053604c2288d421dc619660f7.png) ### 11.参考 https://blog.csdn.net/addtyp/article/details/131831782

相关推荐
郭源潮14 小时前
《MySQL:MySQL表结构的基本操作》
数据库·mysql
创码小奇客4 小时前
MongoDB 聚合操作,有手就行?
mysql·mongodb·trae
异常君6 小时前
MySQL 事务实现机制:从原理到实践的深度解析
后端·mysql
玛奇玛丶7 小时前
面试官:MYSQL自增id超过int最大值怎么办?
后端·mysql
rgb0f07 小时前
MySQL视图相关
数据库·mysql·oracle
小吕学编程8 小时前
基于Canal+Spring Boot+Kafka的MySQL数据变更实时监听实战指南
数据库·后端·mysql·spring·kafka
苹果酱05679 小时前
redis系列--1.redis是什么
java·vue.js·spring boot·mysql·课程设计
get lend gua9 小时前
游戏数据分析,力扣(游戏玩法分析 I~V)mysql+pandas
python·mysql·leetcode·游戏·数据分析
Json201131510 小时前
B树、红黑树、B+树和平衡二叉树(如AVL树)的区别
mysql
SimonKing10 小时前
京东外卖,探索「距离最近」排序背后的秘密
redis·后端·mysql