查询镜像:
docker search oceanbase
导入镜像:
docker pull oceanbase/oceanbase-xe
查看镜像:
docker images
启动镜像:
docker run -d -it --memory 8g -p 2881:2881 --name oceanbase2.2 oceanbase/oceanbase-xe:latest
进入镜像:
docker exec -it oceanbase2.2 /bin/bash
初始化 OceanBase 实例:
./hap.py ob1.reboot
部署后验证
./hap.py ob1.obmysql
用户创建:
create user zcbus IDENTIFIED BY 'zcbus';
用户赋权:
GRANT ALL PRIVILEGES ON *.* TO zcbus with grant option;
MySQL 客户端连接:
./mysql -h127.0.0.1 -uzcbus -P2881 -pzcbus
文档更新时间: 2021-04-16 03:55 作者:周风磊