欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

windows下mysql数据库免安装版教程

程序员文章站 2022-03-31 10:26:31
windows下mysql数据库免安装版教程 备注 下载MySQL 正文 新建my.ini文件 [client] port=3306 default-charac...

windows下mysql数据库免安装版教程

备注

下载MySQL

正文

新建my.ini文件

[client]
port=3306
default-character-set=utf8 
[mysqld] 
basedir=你的mysql文件路径
datadir=你的mysql文件路径\data
port=3306
character-set-server=utf8
character-set-filesystem = utf8
sql_mode=NO_ENGINE_SUBSTITUTION,NO_AUTO_CREATE_USER
explicit_defaults_for_timestamp=true
skip-grant-tables

dos命令进入mysql下的bin目录执行以下命令,该方法mysql初始密码为空

mysqld --initialize-insecure
mysqld install

添加环境变量,将bin目录复制进path

最后就是重置数据库密码

mysql -uroot -p
set password=password('新密码');
grant all privileges on *.* to root@'%'identified by '远程登录密码';
flush privileges;

?

结束