Doris install - 1.2.2:修订间差异
跳到导航
跳到搜索
无编辑摘要 |
|||
第1行: | 第1行: | ||
=== | ===环境需求=== | ||
*在要安装 FE,Broker 的节点上提前安装 JDK 1.8 及以上环境,BE 节点不需要 | |||
*关闭交换分区 | |||
*关闭防火墙 | |||
*操作系统的文件系统 ext4 | |||
*禁用 SELinux | |||
====文件句柄数==== | ====文件句柄数==== | ||
第20行: | 第17行: | ||
*Doris 的元数据要求时间精度要小于 5000 ms | *Doris 的元数据要求时间精度要小于 5000 ms | ||
===安装=== | ===安装=== | ||
第56行: | 第50行: | ||
|192.168.0.24 | |192.168.0.24 | ||
| | | | ||
|1 | | 1 | ||
| | | | ||
| | | | ||
第62行: | 第56行: | ||
|} | |} | ||
==== Java 1.8 ==== | ====Java 1.8==== | ||
FE、Broker 节点 | FE、Broker 节点 | ||
==== Doris 1.2.2 ==== | ====Doris 1.2.2 ==== | ||
xz -dk apache-doris-fe-1.2.2-bin-x86_64.tar.xz | xz -dk apache-doris-fe-1.2.2-bin-x86_64.tar.xz | ||
xz -dk apache-doris-be-1.2.2-bin-x86_64.tar.xz | xz -dk apache-doris-be-1.2.2-bin-x86_64.tar.xz | ||
第78行: | 第72行: | ||
ln -s /opt/apache-doris-be-1.2.2-bin-x86_64 /opt/doris_be | ln -s /opt/apache-doris-be-1.2.2-bin-x86_64 /opt/doris_be | ||
==== Configure ==== | ====Configure==== | ||
profile | |||
=====profile===== | |||
JAVA_HOME=/opt/java | JAVA_HOME=/opt/java | ||
DORIS_HOME=/opt/ | DORIS_HOME=/opt/doris_fe | ||
conf/fe.conf | =====conf/fe.conf===== | ||
JAVA_OPTS="-Xmx8192m,需要调整 | |||
meta_dir=元数据存放位置。默认在 fe/doris-meta/ 下,改变目录需手动创建 | |||
priority_networks=192.168.0.0/24 | priority_networks=192.168.0.0/24 | ||
===Start=== | |||
${DORIS_HOME}/bin/start_fe.sh --daemon | |||
${DORIS_HOME}/bin/stop_fe.sh | |||
State | |||
*cur <nowiki>http://127.0.0.1:8030/api/bootstrap</nowiki> | |||
"msg":"success" | |||
*mysql> show frontends\G; | |||
Role: FOLLOWER | |||
IsMaster: true | |||
Join: true | |||
Alive: true | |||
===INIT=== | |||
http_port = 8030 | |||
query_port = 9030 | |||
以上配置对应下面服务: | |||
http://192.168.0.21:8030 | |||
mysql -uroot -P9030 -h127.0.0.1 | |||
doris 内置默认超级管理员用户: root/NULL | |||
[[分类:Develop]] | [[分类:Develop]] | ||
[[分类:DB]] | [[分类:DB]] | ||
[[分类:Doris]] |
2023年3月7日 (二) 19:53的版本
环境需求
- 在要安装 FE,Broker 的节点上提前安装 JDK 1.8 及以上环境,BE 节点不需要
- 关闭交换分区
- 关闭防火墙
- 操作系统的文件系统 ext4
- 禁用 SELinux
文件句柄数
# /etc/security/limits.conf
* soft nofile 65536 * hard nofile 65536
其它
- Doris 的元数据要求时间精度要小于 5000 ms
安装
IP | FE | BE | OB | Broker | Memo |
---|---|---|---|---|---|
192.168.0.21 | 1 | 1 | |||
192.168.0.22 | 1 | 1 | 1 | ||
192.168.0.23 | 1 | ||||
192.168.0.24 | 1 |
Java 1.8
FE、Broker 节点
Doris 1.2.2
xz -dk apache-doris-fe-1.2.2-bin-x86_64.tar.xz xz -dk apache-doris-be-1.2.2-bin-x86_64.tar.xz tar -xvf apache-doris-fe-1.2.2-bin-x86_64.tar tar -xvf apache-doris-be-1.2.2-bin-x86_64.tar mv apache-doris-fe-1.2.2-bin-x86_64 /opt/ ln -s /opt/apache-doris-fe-1.2.2-bin-x86_64 /opt/doris_fe mv apache-doris-be-1.2.2-bin-x86_64 /opt/ ln -s /opt/apache-doris-be-1.2.2-bin-x86_64 /opt/doris_be
Configure
profile
JAVA_HOME=/opt/java DORIS_HOME=/opt/doris_fe
conf/fe.conf
JAVA_OPTS="-Xmx8192m,需要调整 meta_dir=元数据存放位置。默认在 fe/doris-meta/ 下,改变目录需手动创建 priority_networks=192.168.0.0/24
Start
${DORIS_HOME}/bin/start_fe.sh --daemon ${DORIS_HOME}/bin/stop_fe.sh
State
- cur http://127.0.0.1:8030/api/bootstrap
"msg":"success"
- mysql> show frontends\G;
Role: FOLLOWER IsMaster: true Join: true Alive: true
INIT
http_port = 8030 query_port = 9030
以上配置对应下面服务:
http://192.168.0.21:8030 mysql -uroot -P9030 -h127.0.0.1
doris 内置默认超级管理员用户: root/NULL