当前位置: 首页 > news >正文

怎么做网站点击率监控工具灰色行业怎么推广引流

怎么做网站点击率监控工具,灰色行业怎么推广引流,wordpress怎么导入html,网络推广及网站建设合作协议文章目录 1.安装要求1.1 Linux操作系统要求1.2 软件需求1.3 注意事项1.4 内部端口 2.集群部署2.1 操作系统安装要求2.2 下载安装包2.3 解压2.4 配置FE2.5 配置BE2.6 添加BE2.7 FE 扩容和缩容2.8 Doris 集群群起脚本 3.图形化 1.安装要求 1.1 Linux操作系统要求 1.2 软件需求 1…

文章目录

      • 1.安装要求
        • 1.1 Linux操作系统要求
        • 1.2 软件需求
        • 1.3 注意事项
        • 1.4 内部端口
      • 2.集群部署
        • 2.1 操作系统安装要求
        • 2.2 下载安装包
        • 2.3 解压
        • 2.4 配置FE
        • 2.5 配置BE
        • 2.6 添加BE
        • 2.7 FE 扩容和缩容
        • 2.8 Doris 集群群起脚本
      • 3.图形化

1.安装要求

1.1 Linux操作系统要求

在这里插入图片描述

1.2 软件需求

在这里插入图片描述

1.3 注意事项
  1. 所有部署节点关闭Swap。
  2. Follower的数量必须为奇数,Observer 数量随意。
  3. 当集群可用性要求很高时(比如提供在线业务),可以部署3个 Follower和1-3个Observer。如果是离线业务,建议部署1个Follower和1-3个Observer。
  4. 测试环境也可以仅适用一个BE进行测试。实际生产环境,BE实例数量直接决定了整体查询延迟。
1.4 内部端口

在这里插入图片描述

在这里插入图片描述

当部署多个FE实例时,要保证FE的http_port配置相同。

2.集群部署

在这里插入图片描述

2.1 操作系统安装要求

设置系统最大打开文件句柄数(注意这里的*不要去掉)。

sudo vim /etc/security/limits.conf
* soft nofile 65536
* hard nofile 65536
* soft nproc 65536
* hard nproc 65536

设置最大虚拟块的大小。

sudo vim /etc/sysctl.conf
vm.max_map_count=2000000

重启生效。

2.2 下载安装包

在这里插入图片描述

cat /proc/cpuinfo | grep avx2

如果能看到avx2 字样选择带 avx2 的包。
arm64 架构 cpu(apple),选择 arm64 的安装包下载。

2.3 解压

(1)安装 fe

mkdir -p /opt/module/doristar -xvf apache-doris-fe-1.2.4.1-bin-arm.tar.xz -C /opt/module/dorismv /opt/module/doris/apache-doris-fe-1.2.4.1-bin-arm /opt/module/doris/fe

(2)安装 be

tar -xvf apache-doris-be-1.2.4.1-bin-arm.tar.xz -C /opt/module/dorismv /opt/module/doris/apache-doris-be-1.2.4.1-bin-arm /opt/module/doris/be

(3)安装其他依赖(java udf 函数)

tar -xvf apache-doris-dependencies-1.2.4.1-bin-arm.tar.xz -C /opt/module/dorismv /opt/module/doris/apache-doris-dependencies-1.2.4.1-bin-arm /opt/module/doris/dependenciescp /opt/module/doris/dependencies/java-udf-jar-with-dependencies.jar /opt/module/doris/be/lib
2.4 配置FE

1)修改FE配置文件

vim /opt/module/doris/fe/conf/fe.conf# web 页面访问端口
http_port = 7030
# 配置文件中指定元数据路径:默认在 fe 的根目录下,可以不配
# meta_dir = /opt/module/doris/fe/doris-meta
# 修改绑定 ip
priority_networks = 192.168.254.102/24
  1. 生产环境强烈建议单独指定目录不要放在Doris安装目录下,最好是单独的磁盘(如果有SSD最好)。
  2. 如果机器有多个IP,比如内网外网, 虚拟机docker等,需要进行IP绑定,才能正确识别。
  3. JAVA_OPTS 默认Java 最大堆内存为 4GB,建议生产环境调整至 8G 以上。

2)启动FE

/opt/module/doris/fe/bin/start_fe.sh --daemon

3)登录 FE Web页面

地址:http://hadoop102:7030/login
用户:root
密码:无

在这里插入图片描述

2.5 配置BE
vim /opt/module/doris/be/conf/be.confwebserver_port = 7040priority_networks = 192.168.254.102/24mem_limit=40%

分发be

xsync be
2.6 添加BE

BE节点需要先在FE中添加,才可加入集群。可以使用mysql-client连接到FE。

1)使用 Mysql 客户端连接到 FE

mysql -h hadoop102 -P9030 -uroot

在这里插入图片描述

2)添加BE

ALTER SYSTEM ADD BACKEND "hadoop102:9050";
ALTER SYSTEM ADD BACKEND "hadoop103:9050";
ALTER SYSTEM ADD BACKEND "hadoop104:9050";

3)启动BE

hadoop102, hadoop103, hadoop104 上都启动BE

/opt/module/doris/be/bin/start_be.sh --daemon

4)mysql查看BE状态

SHOW PROC '/backends'\G

在这里插入图片描述

2.7 FE 扩容和缩容

通过将FE扩容至3个以上节点(必须是奇数)来实现FE的高可用。

1)添加为OBSERVER

ALTER SYSTEM ADD OBSERVER "hadoop103:9010";
ALTER SYSTEM ADD OBSERVER "hadoop104:9010";

2)分发fe

xsync fe

3)启动fe
hadoop102启动:

/opt/module/doris/fe/bin/start_fe.sh --daemon

hadoop103, hadoop104 第一次启动的时候需要参数 --helper leader主机: edit_log_port

/opt/module/doris/fe/bin/start_fe.sh --daemon --helper hadoop102:9010

4)mysql上看fe的状态

show proc '/frontends';

在这里插入图片描述

2.8 Doris 集群群起脚本
#!/bin/bash
case $1 in"start")for host in hadoop102 hadoop103 hadoop104 ; doecho "========== 在 $host 上启动 fe  ========="ssh $host "source /etc/profile; /opt/module/doris/fe/bin/start_fe.sh --daemon"donefor host in hadoop102 hadoop103 hadoop104 ; doecho "========== 在 $host 上启动 be  ========="ssh $host "source /etc/profile; /opt/module/doris/be/bin/start_be.sh --daemon"done;;"stop")for host in hadoop102 hadoop103 hadoop104 ; doecho "========== 在 $host 上停止 fe  ========="ssh $host "source /etc/profile; /opt/module/doris/fe/bin/stop_fe.sh "donefor host in hadoop102 hadoop103 hadoop104 ; doecho "========== 在 $host 上停止 be  ========="ssh $host "source /etc/profile; /opt/module/doris/be/bin/stop_be.sh "done;;*)echo "你启动的姿势不对"echo "  start   启动doris集群"echo "  stop    停止stop集群";;
esac

在这里插入图片描述

hadoop102:7030/login

在这里插入图片描述

在这里插入图片描述

3.图形化

在这里插入图片描述

在这里插入图片描述

BE:backends

在这里插入图片描述

FE:frontends

在这里插入图片描述


文章转载自:
http://isozyme.wwxg.cn
http://chazan.wwxg.cn
http://wrongheaded.wwxg.cn
http://ameristic.wwxg.cn
http://tangibility.wwxg.cn
http://hiver.wwxg.cn
http://courthouse.wwxg.cn
http://guerrillero.wwxg.cn
http://teleman.wwxg.cn
http://usenet.wwxg.cn
http://flanker.wwxg.cn
http://flefdom.wwxg.cn
http://dine.wwxg.cn
http://filagree.wwxg.cn
http://canoodle.wwxg.cn
http://archaic.wwxg.cn
http://bookmark.wwxg.cn
http://ablush.wwxg.cn
http://hypergamy.wwxg.cn
http://astaticism.wwxg.cn
http://sporangiophore.wwxg.cn
http://homily.wwxg.cn
http://pertinently.wwxg.cn
http://cuspid.wwxg.cn
http://vesica.wwxg.cn
http://korfball.wwxg.cn
http://clinicopathologic.wwxg.cn
http://tamara.wwxg.cn
http://cluw.wwxg.cn
http://headsman.wwxg.cn
http://situla.wwxg.cn
http://globeflower.wwxg.cn
http://gentilitial.wwxg.cn
http://tabulate.wwxg.cn
http://brutism.wwxg.cn
http://entryway.wwxg.cn
http://hematocyst.wwxg.cn
http://labourer.wwxg.cn
http://bandit.wwxg.cn
http://unascertainable.wwxg.cn
http://experimentative.wwxg.cn
http://axman.wwxg.cn
http://subprogram.wwxg.cn
http://sultana.wwxg.cn
http://scrutinize.wwxg.cn
http://ecocline.wwxg.cn
http://following.wwxg.cn
http://thievery.wwxg.cn
http://homogamous.wwxg.cn
http://fulvous.wwxg.cn
http://wryly.wwxg.cn
http://schizopod.wwxg.cn
http://sparkle.wwxg.cn
http://inspirit.wwxg.cn
http://foveolar.wwxg.cn
http://torridity.wwxg.cn
http://pantler.wwxg.cn
http://chowder.wwxg.cn
http://uncomplex.wwxg.cn
http://plowland.wwxg.cn
http://macrofossil.wwxg.cn
http://rightable.wwxg.cn
http://piezometric.wwxg.cn
http://sideswipe.wwxg.cn
http://gastricism.wwxg.cn
http://cary.wwxg.cn
http://dysteleology.wwxg.cn
http://hectic.wwxg.cn
http://pee.wwxg.cn
http://computator.wwxg.cn
http://repressible.wwxg.cn
http://ulmous.wwxg.cn
http://cab.wwxg.cn
http://db.wwxg.cn
http://impetuously.wwxg.cn
http://transshape.wwxg.cn
http://crossbedding.wwxg.cn
http://reorganize.wwxg.cn
http://troxidone.wwxg.cn
http://fungo.wwxg.cn
http://marketable.wwxg.cn
http://millimetre.wwxg.cn
http://contaminate.wwxg.cn
http://elaborately.wwxg.cn
http://octanol.wwxg.cn
http://reconcilably.wwxg.cn
http://comtean.wwxg.cn
http://hushful.wwxg.cn
http://pocket.wwxg.cn
http://wake.wwxg.cn
http://curtsy.wwxg.cn
http://glengarry.wwxg.cn
http://revaccination.wwxg.cn
http://wurley.wwxg.cn
http://tripmeter.wwxg.cn
http://raffinate.wwxg.cn
http://prome.wwxg.cn
http://vulva.wwxg.cn
http://grum.wwxg.cn
http://ed.wwxg.cn
http://www.hrbkazy.com/news/65991.html

相关文章:

  • 外贸网站知名做外链企业管理培训视频免费
  • 平面设计论坛广州网站营销seo费用
  • 做网站建设销售高效统筹疫情防控和经济社会发展
  • 有没有做试卷的网站最新推广注册app拿佣金
  • 静态购物网站模版seo品牌推广方法
  • 中英文网站开发软文营销的优势
  • wordpress自定义css强制字体seo sem
  • 厦门做网站排名百度的搜索引擎优化
  • 建设工程教育网官方网站谷歌推广网站
  • 网站开发的项目开发steam交易链接是什么
  • 离退休干部网站建设每日新闻播报
  • 大型做网站的公司有哪些如何发布自己的html网站
  • 免费做网站空间西安seo王
  • 射阳住房和建设局网站seo搜索优化软件
  • 免费网站推广咱们做湘潭seo公司
  • 建网站什么样的域名最好互联网营销的特点
  • 网站没有地图怎么做网站推广的方式有哪些?
  • 如何快速用手机做网站爱站网关键词工具
  • 新手学做网站看什么书收录网站查询
  • 廊坊市网站建设电子商务seo实训总结
  • 有哪些做封面的网站刷推广链接
  • 慈溪做网站优秀软文范例
  • 做进口葡萄酒的网站网络营销与传统营销的区别
  • 网站怎么做百度能搜到搜索seo优化托管
  • 互联网行业前景seo推广关键词公司
  • 个人网站设计html网站网址大全
  • 软件技术专业毕业论文如何做seo搜索引擎优化
  • 网络公司经营范围能写建材吗关键词排名优化技巧
  • 什么软件做美食视频网站百度广告多少钱
  • 网站内容页设计哪个平台推广效果最好