标签:ora generated cal temp 默认 mys server mysql安装 下载
下载解压安装包
1、初始化数据库,在MySQL安装目录的 bin 目录下执行命令:执行命令mysqld --initialize --console
生成了临时密码:9o8;1#0#IkeK
2018-06-08T02:48:43.804512Z 0 [System] [MY-013169] [Server] D:\Software\mysql\bi
n\mysqld.exe (mysqld 8.0.11) initializing of server in progress as process 25324
2018-06-08T02:49:00.346512Z 5 [Note] [MY-010454] [Server] A temporary password i
s generated for root@localhost: 9o8;1#0#IkeK
2018-06-08T02:49:09.428512Z 0 [System] [MY-013170] [Server] D:\Software\mysql\bi
n\mysqld.exe (mysqld 8.0.11) initializing of server has completed
2、在MySQL安装目录的 bin 目录下执行命令,以管理员方式运行cmd,mysqld --install [服务名]
Service successfully installed.
后面的服务名可以不写,默认的名字为 mysql。当然,如果你的电脑上需要安装多个MySQL服务,就可以用不同的名字区分了,比如 mysqlxxx和 mysqlyyy。
3、启动停止mysql服务
net start mysql
net stop mysql
4、登录
mysql -u root -p
5,修改密码
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘root‘;
6、常用命令
标签:ora generated cal temp 默认 mys server mysql安装 下载
原文地址:https://www.cnblogs.com/timlong/p/9154748.html