-
Notifications
You must be signed in to change notification settings - Fork 171
Minimal BaikalDB Cluster
Tao Liu edited this page Nov 28, 2020
·
9 revisions
git clone ...
cd insider-preview
OS=ubuntu-18.04 docker-compose up
#通过OS变量指定系统版本,可选的发行版有 ubuntu-16.04 ubuntu-18.04 ubuntu-20.04 centos-7 centos-8
#安装 mysql 客户端,要求5.6版本
brew install [email protected] // Mac
#登录使用
mysql -h127.0.0.1 -P28282 -uroot -proot
>use TestDB;
>create/select/insert ..