mysql免安装版命令语句_Mysql免安装版配置教程和常用命令图

Mysql免安装版配置教程

图文版

配置环境变量

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

新建一个my.ini文件,添加下面内容

[mysqld]

basedir=C:\\software\Mysql\mysql-5.7.14-winx64

datadir=C:\\software\Mysql\mysql-5.7.14-winx64\data

port=3306

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

以管理员身份运行cmd,切换到bin目录下

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

执行下面语句,初始化

mysqld --initialize --user=mysql --console

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

安装mysql服务,执行下面的语句

mysqld --install MySQL

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

启动服务

net start mysql

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

如果你已经有mysql服务了,但是用不了,执行下面的语句--删除服务,再重新从第五步开始

mysqld --remove

登陆数据库

mysql -u root -p

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

在my.ini文件中在[mysqld]后一行加入skip-grant-tables

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

关闭mysql服务,再重新启动,也就是net stop mysql 和net start mysql

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

重新登陆:mysql -u root -p 不需输入密码,直接enter。

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

使用mysql数据库,use mysql

查询mysql数据库的user表,select * from user ;

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

对表user执行update操作:

update user set authentication_string = password("root") where user="root";

退出mysql,把my.ini文件中的skip-grant-tables去掉,重新启动mysql服务

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

这里写图片描述

进到到mysql数据库,在使用sql指令的时候,如果出现以下的错误:

mysql> show databases;

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

这里写图片描述

增加三句指令:

step 1: SET PASSWORD = PASSWORD('your new password');

step 2: ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;

step 3:flush privileges;

在step1 时,your new password是随便你自己写的!

文字版

这是文字版:

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

这里写图片描述

下面是成功的图!

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

Mysql常用命令图

d54a8b0e6b7d?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image

如果文章有错的地方欢迎指正,大家互相交流。习惯在微信看技术文章,想要获取更多的Java资源的同学,可以关注微信公众号:Java3y

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值