用mysql压缩包在windows上安装的步骤,以及过程中遇到的一些小问题


mysql官网网址 www.mysql.com

1,下载mysql 5.7 压缩包

2,解压到自己想要安装的目录

3,编辑环境变量 我的电脑,属性,高级设置,环境

4,主目录创建my.ini 配置文件
写入
[mysqld]
basedir= D:/StudyEnv/mysql-5.7/ #基础目录
datadir= D:/StudyEnv/mysql-5.7/data #数据存放目录
port=3306 #端口
skip-grant-tables #跳过权限表,

5,cmd以管理员方式运行 切换到压缩包目录 D:/StudyEnv/mysql-5.7/bin

执行以下命令
6,mysqld -install 安装msyql服务

可能会报错,提示缺少文件,去https://cn.dll-files.com/下载对应的文件放在对应的文件位置,重新执行该条命令即可

64位系统的dll文件一般放在c盘windows/system32 32位系统一般放在 c盘windows/sysWow64

7,mysqld –initialize-insecure –user=mysql 初始化数据文件

会在前面my.ini指定的data文件夹里面生成初始化文件,如果因为各种原因要再次执行这条命令,记得执行前删除此文件夹里面的内容

 

自己第一次操作的时候可能前面的操作顺序有问题,所以在执行完上面两条命令之后,
net start mysql 时报错,提示无法访问,没有找到对应文件,然后发现服务里面对应的可执行文件位置不是之前指定的位置,自己觉得报错可能跟这个路径不一致有关系,尝试解决过程如下
1,修改注册表里面的服务对应的可执行文件路径
win+r 运行regedit注册表,修改/HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Mysql/ImagePath的可执行文件路径为D:/StudyEnv/mysql-5.7/bin/mysqld MySQL
修改完成之后再次执行net start msyql 还是启动不了,没办法,删除服务,删除data文件里面的初始化文件重新安装
删除服务的操作为,cmd以管理员方式运行,sc delete Mysql

D:/StudyEnv/mysql-5.7/bin>sc delete MySQL
[SC] DeleteService 成功

D:/StudyEnv/mysql-5.7/bin>mysqld -install
Service successfully installed.

D:/StudyEnv/mysql-5.7/bin>mysqld –initialize-insecure –user=mysql

D:/StudyEnv/mysql-5.7/bin>net start mysql #启动数据库
MySQL 服务正在启动 .
MySQL 服务已经启动成功。

成功启动
接下来修改密码
mysql -u root -p p后面不要接空格,空格也算一个字符

update mysql.user set authentication_string=password(‘123456′) where user=’root’ and Host = ‘localhost’;
flush privileges;

注释掉或者删除my.ini文件里
skip-grant-tables

重启数据库
net stop mysql
net start mysql

连接测试

D:/StudyEnv/mysql-5.7/bin>mysql -uroot -p123456
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or /g.
Your MySQL connection id is 2
Server version: 5.7.39 MySQL Community Server (GPL)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;’ or ‘/h’ for help. Type ‘/c’ to clear the current input statement.

mysql>

ok,mysql 安装完成

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/database/278994.html

(0)
上一篇 2022年8月5日 05:57
下一篇 2022年8月5日 05:57

相关推荐

发表回复

登录后才能评论