26 lines
607 B
Plaintext
26 lines
607 B
Plaintext
# 配置Docker
|
||
|
||
# 下载脚本
|
||
wget https://doris.apache.org/files/start-doris.sh
|
||
|
||
# 运行以下命令,给其赋有相应的执行权限。
|
||
chmod 755 start-doris.sh
|
||
|
||
# 运行脚本,启动集群,默认使用2.1.9版本
|
||
bash start-doris.sh
|
||
|
||
# connect a alive FE node
|
||
mysql -uroot -P9030 -h127.0.0.1
|
||
|
||
# register BE node
|
||
ALTER SYSTEM ADD BACKEND "10.10.14.204:9050";
|
||
|
||
# 查看状态
|
||
show backends;
|
||
|
||
-- modify the password for current user
|
||
SET PASSWORD = PASSWORD('DsideaL147258369');
|
||
|
||
create database yltcharge;
|
||
|
||
https://doris.apache.org/zh-CN/docs/dev/gettingStarted/quick-start |