Blogger Information
Blog 14
fans 0
comment 0
visits 17702
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
mysql版本手动升级
echo_下宇的博客
Original
1276 people have browsed it

从官网上下载高版本的 MySQL :https://dev.mysql.com/downloads/file/?id=467269,选的版本是 5.7.17(后面才发现 5.7 版本的安装、系统表字段等又和之前的版本有所不同)。

 

 步骤:

0x00

备份原来 phpStudy 中 MySQL 安装目录

 

0x01

把下载的 MySQL 压缩文件解压至 phpStudy 下的 MySQL目录,复制 my-default.ini ,重命名为 my.ini。

打开 my.ini,找到 #basedir 处编辑:

basedir=D:/phpStudy/MySQL
datadir=D:/phpStudy/MySQL/data

 

0x02

把 MySQL 安装路径添加至系统环境变量

 

过程:计算机—>系统属性—>高级系统配置—>环境变量

选择PATH,在其后面添加: 你的mysql bin文件夹的路径 (如:我的是:D:\Program Files\MySQL\MySQL Server 5.6\bin ) 修改后的PATH为:

PATH=…….;D:\Program Files\MySQL\MySQL Server 5.6\bin (需注意:1.必须在原有PATH后加英文输入下的分号;2.是追加,不是覆盖。)

0x03

在 cmd 下进入 MySQL 的 bin 目录(我的是 D:/phpStudy/MySQL/bin),执行:

mysqld --initialize

初始化数据库

 

0x04

安装服务:

mysqld -install

启动服务:

net start MySQL

 

0x05

此时登入 MySQL 报错:

C:\Users\dell>mysql -uroot -p
Enter password: ****
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

尝试修改 root 用户密码:

打开 my.ini,找到 [mysqld],在下面添加:

skip-grant-tables

此时使用 root 账号,密码处按回车即可登录。

 

修改密码:

mysql>update mysql.user set authentication_string=password('new_password') where user='root' and Host ='localhost'
mysql> ALTER USER USER() IDENTIFIED BY 'news_password';

 

刷新权限:

FLUSH PRIVILEGES;

 

注释掉 my.ini 中刚才添加的

skip-grant-tables

 

重新登录。

 

此时查看 mySQL 版本:

mysql> select version();
+-----------+
| version() |
+-----------+
| 5.7.17    |
+-----------+


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post