各种笔记
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

519 B

docker 下载mysql

dcoker pull mysql:版本

启动mysql

docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=密码 -d mysql:版本

进入容器

docker exec -it mysql bash

登录mysql

mysql -u root -p
ALTER USER 'root@'localhost' IDENTIFIED BY 'starunion';

添加远程登录用户 直接用root用户登录也行

CREATE USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '密码'; 
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';