MySQL

  • 546 字
  • null 次阅读
  • null 条评论

MySQL

初始化数据库

1
D:/soft/MySQL/bin/mysqld --defaults-file=D:/soft/MySQL/my.ini --initialize-insecure --user=mysql

启动数据库

1
D:/soft/MySQL/bin/mysqld --console

免密码登录

1
D:/soft/MySQL/bin/mysql -u root --skip-password

重置root密码

1
ALTER USER'root'@'localhost' IDENTIFIED BY 'root';

将MySQL安装成服务

1
D:/soft/MySQL/bin/mysqld --install MySQL --defaults-file=D:/soft/MySQL/my.ini

my.ini 配置文件内容

1
2
3
4
5
[mysqld]
# setbasedir to your installation path
basedir=D:/soft/MySQL
# setdatadir to the location of your data directory
datadir=D:/soft/MySQL/data
大冰块
非常感谢您的喜欢!
大冰块