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

相关推荐
冒泡的肥皂2 小时前
MVCC初学demo(一
数据库·后端·mysql
Bruce_Liuxiaowei5 小时前
MySQL完整重置密码流程(针对 macOS)
mysql
麦麦大数据5 小时前
F003疫情传染病数据可视化vue+flask+mysql
mysql·flask·vue·大屏·传染病
星空下的曙光6 小时前
mysql 命令语法操作篇 数据库约束有哪些 怎么使用
数据库·mysql
小楓12016 小时前
MySQL數據庫開發教學(一) 基本架構
数据库·后端·mysql
之诺7 小时前
MySQL通信过程字符集转换
后端·mysql
沙振宇7 小时前
【数据库】通过‌phpMyAdmin‌管理Mysql数据
数据库·mysql
JSON_L8 小时前
MySQL 加锁与解锁函数
数据库·mysql
MonKingWD9 小时前
MySQL事务篇-事务概念、并发事务问题、隔离级别
数据库·后端·mysql
似水流年流不尽思念13 小时前
MySQL 的 MVCC 到底解决了幻读问题没有?请举例说明。
mysql·面试