mysql的安装及配置
2019-07-31 本文已影响0人
一颗白菜_
1.mysql下载:
https://dev.mysql.com/downloads/windows/installer/8.0.html
官网下载,目前最新版本是8.0
我这里下载的是老的版本5.7。要下载老版本可以点此
image.gif
2.如果之前有安装过,确保把mysql卸载彻底
(1).在服务中将mysql删除:sc delete mysql
(2).打开注册表删除:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL文件夹
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL文件夹 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL的文件夹
3.将压缩包解压到指定目录
image image.gif
4.设置环境变量
新建MYSQL_HOME变量,设置如下:
image image.gif
image image.gif在Path里面设置%MYSQL_HOME%\bin
5.初始化mysql
进入mysql的根目录
image image.gif
image image.gif输入mysqld -install在服务中注册mysql
image image.gif输入mysqld --initialize-insecure --user=mysql
输入net start mysql启动mysql服务
6.登录mysql
image image.gif输入mysql -u root -p登录数据库
密码为空,直接回车键即可
7.修改密码
image image.gif输入use mysql切换到mysql数据库
然后输入update user set authentication_string = password('root') where user = 'root';
注意:password('.....')里面就是要修改的密码