MySQL的安装
Posted 江西昊仔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL的安装相关的知识,希望对你有一定的参考价值。
建议使用压缩版安装,安装快、而且方便、简单。
步骤
- 下载压缩包
- 解压压缩包,放到自己环境包下
- 添加环境变量,即添加bin目录
- 在目录下,创建一个ini问建,配置属性
[mysqld]
basedir=D:\\你的目录\\mysql-5.7
datadir=D:\\你的目录\\mysql-5.7\\data
port=3306
skip-grant-tables- 启动管理员模式下的CMD,并将路径切换至mysql下的bin目录,然后输入mysqld --install (安装
mysql),显示Service successfully installed.- 再输入 mysqld --initialize-insecure --user=mysql 初始化数据文件
- 然后再次启动mysql 【net start mysql】,
- 然后用命令 mysql –u root –p ,没有密码,继续按回车,进入mysql管理界面
- 修改密码,【alter user user() identified by “123456”;】
没明白【update mysql.user set authentication_string=password(‘123456’) where user=‘root’ and Host = ‘localhost’;】- 刷新权限,【flush privileges;】
- 修改 my.ini文件,删除最后一句skip-grant-tabl
- 重启mysql即可正常使用
【net stop mysql】
【net start mysql】
以上是关于MySQL的安装的主要内容,如果未能解决你的问题,请参考以下文章