mysql绿色版安装
文章目录
下载mysql
https://www.mysql.com/,
版本:5.7.32
安装服务
1
mysqld --install mysql(服务名称)
删除服务
1
mysqld --remove mysql(服务名称)
初始化mysql:
1
mysqld --initialize --console
会打印root 密码
启动服务
登录mysql,使用登录密码为上面初始化mysql是自动生成的初始密码
1
mysql -uroot -p
修改密码:
1
alter user 'root'@'localhost' identified by 'root';
退出服务,重新用新密码登录
本文标题:mysql绿色版安装
文章作者:peter.tan
发布时间:2022-08-16
最后更新:2022-08-16
原始链接:https://petertanblog.github.io/2022/08/16/mysql%E7%BB%BF%E8%89%B2%E7%89%88%E5%AE%89%E8%A3%85/
版权声明:Copyright © 2022 Peter.tan
分享
