/ Docker MySQL / 30浏览

Docker 部署 MySQL 服务

# docker 中下载 mysql
docker pull mysql
 
#启动
docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql
 
#进入容器
docker exec -it mysql bash
 
#登录mysql
mysql -u root -p
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456 ';
 
#添加远程登录用户
CREATE USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
Docker Compose 常用命令
Docker Compose 常用命令
使用腾讯云内网镜像源给 docker 加速
使用腾讯云内网镜像源给 docker 加速
Docker 部署 Bitwarden 服务
Docker 部署 Bitwarden 服务