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

免费做调查的网站网站设计论文答辩问题及答案

免费做调查的网站,网站设计论文答辩问题及答案,wordpress登录框,ui设计软件图标#x1f341;博主简介#xff1a; #x1f3c5;云计算领域优质创作者 #x1f3c5;2022年CSDN新星计划python赛道第一名 #x1f3c5;2022年CSDN原力计划优质作者 #x1f3c5;阿里云ACE认证高级工程师 #x1f3c5;阿里云开发者社区专… 博主简介         云计算领域优质创作者         2022年CSDN新星计划python赛道第一名         2022年CSDN原力计划优质作者         阿里云ACE认证高级工程师         阿里云开发者社区专家博主 交流社区CSDN云计算交流社区欢迎您的加入 1、环境准备 1.1 安装docker 1.2 安装Docker Compose 2、docker-compose.yaml文件配置 3、system-config.properties文件配置 4、启动服务 1、环境准备 部署服务器的ip 可用的9093 9094 9095 2181端口 docker和docker-compose 1.1 安装docker 卸载旧版本可选 如果之前安装过旧版本的Docker可以使用以下命令卸载 sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine docker-ce 安装依赖 安装yum工具和相关依赖 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 设置Docker仓库 添加Docker CE的官方yum仓库为了更快的下载速度可以使用国内的镜像源例如阿里云 sudo yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 或者使用清华大学源 sudo yum-config-manager --add-repo https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/centos/docker-ce.repo 安装Docker CE 更新yum缓存并安装Docker CE sudo yum makecache fast   sudo yum install -y docker-ce 启动Docker 启动Docker服务 sudo systemctl start docker 验证Docker安装 可以通过运行以下命令来验证Docker是否成功安装 sudo docker --version 1.2 安装Docker Compose 下载Docker Compose 使用curl命令从GitHub下载Docker Compose的二进制文件到/usr/local/bin/目录下请检查版本是否最新 sudo curl -L https://github.com/docker/compose/releases/download/v2.6.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose 注意上述命令中的版本号v2.6.0可能不是最新的请访问Docker Compose的GitHub页面查看最新版本号。 赋予执行权限 为Docker Compose二进制文件赋予执行权限 sudo chmod x /usr/local/bin/docker-compose 验证Docker Compose安装 通过运行以下命令来验证Docker Compose是否成功安装 docker-compose --version 2、docker-compose.yaml文件配置 文件内容如下 version: 2 services:zookeeper:image: wurstmeister/zookeeperrestart: alwaysports:- 2181:2181kafka1:image: wurstmeister/kafkarestart: alwaysdepends_on:- zookeeperports:- 9093:9093environment:KAFKA_ADVERTISED_HOST_NAME: kafka1KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181KAFKA_LISTENERS: PLAINTEXT://:9093KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://192.168.202.219:9093KAFKA_BROKER_ID: 1volumes:- /var/run/docker.sock:/var/run/docker.sockkafka2:image: wurstmeister/kafkarestart: alwaysdepends_on:- zookeeperports:- 9094:9094environment:KAFKA_ADVERTISED_HOST_NAME: kafka2KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181KAFKA_LISTENERS: PLAINTEXT://:9094KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://192.168.202.219:9094KAFKA_BROKER_ID: 2volumes:- /var/run/docker.sock:/var/run/docker.sockkafka3:image: wurstmeister/kafkarestart: alwaysdepends_on:- zookeeperports:- 9095:9095environment:KAFKA_ADVERTISED_HOST_NAME: kafka3KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181KAFKA_LISTENERS: PLAINTEXT://:9095KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://192.168.202.219:9095KAFKA_BROKER_ID: 3volumes:- /var/run/docker.sock:/var/run/docker.sockeagle:image: nickzurich/efak:3.0.1volumes: # 挂载目录- ./system-config.properties:/opt/efak/conf/system-config.propertiesenvironment: # 配置参数EFAK_CLUSTER_ZK_LIST: zookeeper:2181depends_on:- zookeeperports:- 8048:8048 修改文件中KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://192.168.202.219:9093的ip为服务器ip有三处 3、system-config.properties文件配置 ###################################### # multi zookeeper kafka cluster list # Settings prefixed with kafka.eagle. will be deprecated, use efak. instead ###################################### efak.zk.cluster.aliascluster cluster.zk.listzookeeper:2181 ​ ###################################### # zookeeper enable acl ###################################### cluster.zk.acl.enablefalse cluster.zk.acl.schemadigest cluster.zk.acl.usernametest cluster.zk.acl.passwordtest123 ​ ###################################### # kraft broker ###################################### efak.kafka.cluster.aliascluster ​ ###################################### # broker size online list ###################################### cluster.efak.broker.size1 ​ ###################################### # zk client thread limit # Zookeeper cluster allows the number of clients to connect to ###################################### kafka.zk.limit.size25 ​ ###################################### # EFAK webui port ###################################### efak.webui.port8048 ​ ###################################### # kafka jmx acl and ssl authenticate ###################################### cluster.efak.jmx.aclfalse cluster.efak.jmx.userkeadmin cluster.efak.jmx.passwordkeadmin123 cluster.efak.jmx.sslfalse cluster.efak.jmx.truststore.location/Users/dengjie/workspace/ssl/certificates/kafka.truststore cluster.efak.jmx.truststore.passwordke123456 ​ ###################################### # kafka offset storage ###################################### cluster.efak.offset.storagekafka ​ # If offset is out of range occurs, enable this property -- Only suitable for kafka sql efak.sql.fix.errorfalse ​ ###################################### # kafka jmx uri ###################################### cluster.efak.jmx.uriservice:jmx:rmi:///jndi/rmi://%s/jmxrmi ​ ###################################### # kafka metrics, 15 days by default ###################################### ​ # Whether the Kafka performance monitoring diagram is enabled efak.metrics.chartsfalse ​ # Kafka Eagle keeps data for 30 days by default efak.metrics.retain30 ​ ###################################### # kafka sql topic records max ###################################### efak.sql.topic.records.max5000 efak.sql.topic.preview.records.max10 efak.sql.worknode.port8787 efak.sql.distributed.enableFALSE efak.sql.worknode.rpc.timeout300000 efak.sql.worknode.fetch.threshold5000 efak.sql.worknode.fetch.timeout20000 efak.sql.worknode.server.path/Users/dengjie/workspace/kafka-eagle-plus/kafka-eagle-common/src/main/resources/works ​ ###################################### # delete kafka topic token # Set to delete the topic token, so that administrators can have the right to delete ###################################### efak.topic.tokenkeadmin ​ ###################################### # kafka sasl authenticate ###################################### cluster.efak.sasl.enablefalse cluster.efak.sasl.protocolSASL_PLAINTEXT cluster.efak.sasl.mechanismSCRAM-SHA-256 cluster.efak.sasl.jaas.configorg.apache.kafka.common.security.scram.ScramLoginModule required usernameadmin passwordadmin-secret; # If not set, the value can be empty cluster.efak.sasl.client.id # Add kafka cluster cgroups cluster.efak.sasl.cgroup.enablefalse cluster.efak.sasl.cgroup.topicskafka_ads01,kafka_ads02 ​ ###################################### # kafka jdbc driver address # Default use sqlite to store data ###################################### efak.driverorg.sqlite.JDBC # It is important to note that the /hadoop/kafka-eagle/db path must exist. efak.urljdbc:sqlite:/hadoop/efak/db/ke.db efak.usernameroot efak.passwordsmartloli LICENSE MIT License ​ Copyright (c) 2023 Salent Olivick ​ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: ​ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. ​ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 4、启动服务 sudo docker-compose up -d 进入eagle即可查看kafka状态http://127.0.0.1:8048/ 用户名密码是admin/123456
http://www.hkea.cn/news/14537492/

相关文章:

  • 平面设计素材免费网站有哪些上海网站编辑招聘
  • 有空间与域名 怎么做网站阿里巴巴网站建设论文
  • 塑胶制品塘厦东莞网站建设黔南网站建设
  • 学校网站框架做营销怎样才能吸引客户
  • 如何把优酷视频放到网站上学网页设计有用吗
  • 建立链接网站模板稳定一天赚200块游戏
  • 怎么做代刷网站推广产品
  • wordpress建站访问提示不安全wordpress怎么加幻灯片
  • 网站运营内容建设方案wordpress 批量漏洞
  • 怎么用dw设计网站页面太仓企业网站建设
  • 400选号网站源码做网站发房源综合语录
  • 网站建设承揽合同心理健康网站建设论文
  • 最优惠的赣州网站建设西安网站建设怎样
  • 昆山市建设工程质量检测中心网站服装公司网站规划建设
  • 网站过期后瓯海网站建设
  • 保定网站建设苗木移动网站建设机构
  • 公司做网站的价格江阴开发区是什么意思
  • 企业网站群建设嘉兴专业自助建站免费咨询
  • 网站被挂马原因灵璧县住房和城乡建设局网站
  • 沈阳做企业网站哪家好网站的倒计时怎么做
  • 网站维护的具体问题vps 同时做ssh和做网站
  • 预约网站模板排名sem优化软件
  • 网站视频下载方法分销网站建设
  • 网站建设需要的项目如何卸载本地安装的wordpress
  • 徐州网站建设模板增加wordpress打开速度
  • 做外贸站推广wordpress通知
  • 可以充值的网站怎么建设温州做模具的网站
  • 做木质的网站wordpress绕绕
  • 北京朝阳网站有的网站在浏览器打不开怎么办
  • 之前做的网站推广怎么删除wordpress个人中心打不开