mysql winodws install

1.Download 

2. Install

3. Login and modify password

4. Configuration

5. Refer

①安装服务:mysqld --install

初始化: mysqld --initialize --console

③开启服务:net start mysql

④关闭服务:net stop mysql

⑤登录mysql:mysql -u root -p

⑥修改密码:alter user 'root'@'localhost' identified by 'root';(by 接着的是密码)

⑦标记删除mysql服务:sc delete mysql

猜你喜欢

转载自blog.csdn.net/qq_29086793/article/details/106591532