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

百度网站置顶怎么做个人网站建设的收获

百度网站置顶怎么做,个人网站建设的收获,厦门网站建设方案报价,wordpress add_action()DolphinScheduler概述 Apache DolphinScheduler是一个分布式、易扩展的可视化DAG工作流任务调度平台。致力于解决数据处理流程中错综复杂的依赖关系#xff0c;使调度系统在数据处理流程中开箱即用。 DolphinScheduler的主要角色如下#xff1a; MasterServer采用分布式无…DolphinScheduler概述 Apache DolphinScheduler是一个分布式、易扩展的可视化DAG工作流任务调度平台。致力于解决数据处理流程中错综复杂的依赖关系使调度系统在数据处理流程中开箱即用。 DolphinScheduler的主要角色如下 MasterServer采用分布式无中心设计理念MasterServer主要负责 DAG 任务切分、任务提交、任务监控并同时监听其它MasterServer和WorkerServer的健康状态。 WorkerServer也采用分布式无中心设计理念WorkerServer主要负责任务的执行和提供日志服务。 ZooKeeper服务系统中的MasterServer和WorkerServer节点都通过ZooKeeper来进行集群管理和容错。 Alert服务提供告警相关服务。 API接口层主要负责处理前端UI层的请求。 UI系统的前端页面提供系统的各种可视化操作界面。 安装调度器 一、上传DolphinScheduler安装包到hadoop102节点的/opt/software目录 二、解压安装包到当前目录 注解压目录并非最终的安装目录 tar -zxvf apache-dolphinscheduler-2.0.5-bin 创建元数据库及用户 DolphinScheduler 元数据存储在关系型数据库中故需创建相应的数据库和用户。 1创建数据库 CREATE DATABASE dolphinscheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; 2创建用户 CREATE USER dolphinscheduler% IDENTIFIED BY dolphinscheduler; 注 若出现以下错误信息表明新建用户的密码过于简单。 ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 可提高密码复杂度或者执行以下命令降低MySQL密码强度级别。 mysql set global validate_password_policy0; mysql set global validate_password_length4; 3赋予用户相应权限 mysql GRANT ALL PRIVILEGES ON dolphinscheduler.* TO dolphinscheduler%; mysql flush privileges; 配置一键部署脚本  修改解压目录下的conf/config目录下的install_config.conf文件。 [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ vim conf/config/install_config.conf 修改内容如下  # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements.  See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the License); you may not use this file except in compliance with # the License.  You may obtain a copy of the License at # #     http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an AS IS BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # --------------------------------------------------------- # INSTALL MACHINE # --------------------------------------------------------- # A comma separated list of machine hostname or IP would be installed DolphinScheduler, # including master, worker, api, alert. If you want to deploy in pseudo-distributed # mode, just write a pseudo-distributed hostname # Example for hostnames: ipsds1,ds2,ds3,ds4,ds5, Example for IPs: ips192.168.8.1,192.168.8.2,192.168.8.3,192.168.8.4,192.168.8.5 ipshadoop102,hadoop103,hadoop104 # 将要部署任一 DolphinScheduler 服务的服务器主机名或 ip 列表 # Port of SSH protocol, default value is 22. For now we only support same port in all ips machine # modify it if you use different ssh port sshPort22 # A comma separated list of machine hostname or IP would be installed Master server, it # must be a subset of configuration ips. # Example for hostnames: mastersds1,ds2, Example for IPs: masters192.168.8.1,192.168.8.2 mastershadoop102 # master 所在主机名列表必须是 ips 的子集 # A comma separated list of machine hostname:workerGroup or IP:workerGroup.All hostname or IP must be a # subset of configuration ips, And workerGroup have default value as default, but we recommend you declare behind the hosts # Example for hostnames: workersds1:default,ds2:default,ds3:default, Example for IPs: workers192.168.8.1:default,192.168.8.2:default,192.168.8.3:default workershadoop102:default,hadoop103:default,hadoop104:default # worker主机名及队列此处的 ip 必须在 ips 列表中 # A comma separated list of machine hostname or IP would be installed Alert server, it # must be a subset of configuration ips. # Example for hostname: alertServerds3, Example for IP: alertServer192.168.8.3 alertServerhadoop103 # 告警服务所在服务器主机名 # A comma separated list of machine hostname or IP would be installed API server, it # must be a subset of configuration ips. # Example for hostname: apiServersds1, Example for IP: apiServers192.168.8.1 apiServershadoop104 # api服务所在服务器主机名 # A comma separated list of machine hostname or IP would be installed Python gateway server, it # must be a subset of configuration ips. # Example for hostname: pythonGatewayServersds1, Example for IP: pythonGatewayServers192.168.8.1 # pythonGatewayServersds1 # 不需要的配置项可以保留默认值也可以用 # 注释 # The directory to install DolphinScheduler for all machine we config above. It will automatically be created by install.sh script if not exists. # Do not set this configuration same as the current path (pwd) installPath/opt/module/dolphinscheduler # DS 安装路径如果不存在会创建 # The user to deploy DolphinScheduler for all machine we config above. For now user must create by yourself before running install.sh # script. The user needs to have sudo privileges and permissions to operate hdfs. If hdfs is enabled than the root directory needs # to be created by this user deployUseratguigu # 部署用户任务执行服务是以 sudo -u {linux-user} 切换不同 Linux 用户的方式来实现多租户运行作业因此该用户必须有免密的 sudo 权限。 # The directory to store local data for all machine we config above. Make sure user deployUser have permissions to read and write this directory. dataBasedirPath/tmp/dolphinscheduler # 前文配置的所有节点的本地数据存储路径需要确保部署用户拥有该目录的读写权限 # --------------------------------------------------------- # DolphinScheduler ENV # --------------------------------------------------------- # JAVA_HOME, we recommend use same JAVA_HOME in all machine you going to install DolphinScheduler # and this configuration only support one parameter so far. javaHome/opt/module/jdk1.8.0_212 # JAVA_HOME 路径 # DolphinScheduler API service port, also this is your DolphinScheduler UI components URL port, default value is 12345 apiServerPort12345 # --------------------------------------------------------- # Database # NOTICE: If database value has special characters, such as .*[]^${}\?|()#, Please add prefix \ for escaping. # --------------------------------------------------------- # The type for the metadata database # Supported values: postgresql, mysql, h2. # 注意数据库相关配置的 value 必须加引号否则配置无法生效 DATABASE_TYPEmysql # 数据库类型 # Spring datasource url, following HOST:PORT/database?parameter format, If you using mysql, you could use jdbc # string jdbc:mysql://127.0.0.1:3306/dolphinscheduler?useUnicodetruecharacterEncodingUTF-8 as example # SPRING_DATASOURCE_URL${SPRING_DATASOURCE_URL:-jdbc:h2:mem:dolphinscheduler;MODEMySQL;DB_CLOSE_DELAY-1;DATABASE_TO_LOWERtrue} SPRING_DATASOURCE_URLjdbc:mysql://hadoop102:3306/dolphinscheduler?useUnicodetruecharacterEncodingUTF-8 # 数据库 URL # Spring datasource username # SPRING_DATASOURCE_USERNAME${SPRING_DATASOURCE_USERNAME:-sa} SPRING_DATASOURCE_USERNAMEdolphinscheduler # 数据库用户名 # Spring datasource password # SPRING_DATASOURCE_PASSWORD${SPRING_DATASOURCE_PASSWORD:-} SPRING_DATASOURCE_PASSWORDdolphinscheduler # 数据库密码 # --------------------------------------------------------- # Registry Server # --------------------------------------------------------- # Registry Server plugin name, should be a substring of registryPluginDir, DolphinScheduler use this for verifying configuration consistency registryPluginNamezookeeper # 注册中心插件名称DS 通过注册中心来确保集群配置的一致性 # Registry Server address. registryServershadoop102:2181,hadoop103:2181,hadoop104:2181 # 注册中心地址即 Zookeeper 集群的地址 # Registry Namespace registryNamespacedolphinscheduler # DS 在 Zookeeper 的结点名称 # --------------------------------------------------------- # Worker Task Server # --------------------------------------------------------- # Worker Task Server plugin dir. DolphinScheduler will find and load the worker task plugin jar package from this dir. taskPluginDirlib/plugin/task # resource storage type: HDFS, S3, NONE resourceStorageTypeHDFS  # 资源存储类型 # resource store on HDFS/S3 path, resource file will store to this hdfs path, self configuration, please make sure the directory exists on hdfs and has read write permissions. /dolphinscheduler is recommended resourceUploadPath/dolphinscheduler # 资源上传路径 # if resourceStorageType is HDFSdefaultFS write namenode addressHA, you need to put core-site.xml and hdfs-site.xml in the conf directory. # if S3write S3 addressHAfor example s3a://dolphinscheduler # NoteS3 be sure to create the root directory /dolphinscheduler defaultFShdfs://mycluster # 默认文件系统 # if resourceStorageType is S3, the following three configuration is required, otherwise please ignore s3Endpointhttp://192.168.xx.xx:9010 s3AccessKeyxxxxxxxxxx s3SecretKeyxxxxxxxxxx # resourcemanager port, the default value is 8088 if not specified resourceManagerHttpAddressPort8088 # yarn RM http 访问端口 # if resourcemanager HA is enabled, please set the HA IPs; if resourcemanager is single node, keep this value empty yarnHaIpshadoop102,hadoop103 # Yarn RM 高可用 ip若未启用 RM 高可用则将该值置空 # if resourcemanager HA is enabled or not use resourcemanager, please keep the default value; If resourcemanager is single node, you only need to replace yarnIp1 to actual resourcemanager hostname singleYarnIp # Yarn RM 主机名若启用了 HA 或未启用 RM保留默认值 # who has permission to create directory under HDFS/S3 root path # Note: if kerberos is enabled, please config hdfsRootUser hdfsRootUseratguigu # 拥有 HDFS 根目录操作权限的用户 # kerberos config # whether kerberos starts, if kerberos starts, following four items need to config, otherwise please ignore kerberosStartUpfalse # kdc krb5 config file path krb5ConfPath$installPath/conf/krb5.conf # keytab username,watch out the sign should followd by \\ keytabUserNamehdfs-mycluster\\ESZ.COM # username keytab path keytabPath$installPath/conf/hdfs.headless.keytab # kerberos expire time, the unit is hour kerberosExpireTime2 # use sudo or not sudoEnabletrue # worker tenant auto create workerTenantAutoCreatefalse 将必要配置文件拷贝到配置目录 [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ cp /opt/moudle/hadoop/etc/hadoop/core-site.xml conf [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ cp /opt/moudle/hadoop/etc/hadoop/hdfs-site.xml conf 初始化数据库  1拷贝MySQL驱动到DolphinScheduler的解压目录下的lib中要求使用 MySQL JDBC Driver 8.0.16。 [roothadoop102apache-dolphinscheduler-2.0.5-bin]$cp/opt/software/mysql-connector-java-8.0.16.jar lib/ 2执行数据库初始化脚本 数据库初始化脚本位于DolphinScheduler解压目录下的script目录中即/opt/software/ds/apache-dolphinscheduler-2.0.5-bin/script/。 [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ script/create-dolphinscheduler.sh 一键部署DolphinScheduler  1启动Zookeeper集群 [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ zk.sh start 2一键部署并启动DolphinScheduler [roothadoop102 apache-dolphinscheduler-2.0.5-bin]$ ./install.sh 3查看DolphinScheduler进程 --------- hadoop102 ---------- 29139 ApiApplicationServer 28963 WorkerServer 3332 QuorumPeerMain 2100 DataNode 28902 MasterServer 29081 AlertServer 1978 NameNode 29018 LoggerServer 2493 NodeManager 29551 Jps --------- hadoop103 ---------- 29568 Jps 29315 WorkerServer 2149 NodeManager 1977 ResourceManager 2969 QuorumPeerMain 29372 LoggerServer 1903 DataNode --------- hadoop104 ---------- 1905 SecondaryNameNode 27074 WorkerServer 2050 NodeManager 2630 QuorumPeerMain 1817 DataNode 27354 Jps 27133 LoggerServer 4访问DolphinScheduler UI地址在APIServer的位置 DolphinScheduler UI地址为http://hadoop104:12345/dolphinscheduler 初始用户的用户名为admin密码为dolphinscheduler123 DolphinScheduler启停命令 DolphinScheduler的启停脚本均位于其安装目录的bin目录下。 1一键启停所有服务 ./bin/start-all.sh ./bin/stop-all.sh 注意同Hadoop的启停脚本进行区分。 2启停 Master ./bin/dolphinscheduler-daemon.sh start master-server ./bin/dolphinscheduler-daemon.sh stop master-server 3启停 Worker ./bin/dolphinscheduler-daemon.sh start worker-server ./bin/dolphinscheduler-daemon.sh stop worker-server 4启停 Api ./bin/dolphinscheduler-daemon.sh start api-server ./bin/dolphinscheduler-daemon.sh stop api-server 5启停 Logger ./bin/dolphinscheduler-daemon.sh start logger-server ./bin/dolphinscheduler-daemon.sh stop logger-server 6启停 Alert ./bin/dolphinscheduler-daemon.sh start alert-server ./bin/dolphinscheduler-daemon.sh stop alert-server
http://www.sczhlp.com/news/221288/

相关文章:

  • 专业网站建设全包网页设计公司企业组织结构图
  • 魔都网站建设建设一个班级网站的具体步骤
  • 在哪做网站专业竞价推广账户托管服务
  • 网站打开速度慢 如何优化360网站做不了网银怎么办
  • 广州专业建设网站虚拟机wordpress安装教程视频
  • 网站维护必须要会什么江阴招聘网站建设学徒
  • 手机网站弹出导航菜单不显示修改的wordpress
  • 网络营销网站有哪些网站与微网站区别
  • 深圳企业网站建设服务平台wordpress 判断登录
  • 如何做网站优化关键词优化福田蒙派克9座多少钱
  • 宁夏政务大厅城乡建设厅口网站织梦网站视频
  • 网站流量建设用php做图书管理网站
  • 科技部网站公布首批创新型县(市)建设名单网址注册局
  • 仿笑话网站源码贸易公司logo图片
  • 什么是网站主题东莞网站建设模板报价
  • 番禺网站建设哪家强制作公司网站在公账汇款时用途备注什么
  • 花钱做推广广告哪个网站好北京网站设计推荐刻
  • 山东建设工程执业证书查询网站站长工具永久更新
  • 做选择的网站首页wordpress全能播放器代码
  • 大连建站价格网站建设内容保障工作个人总结
  • 汉寿网站建设最新网页传奇
  • 免费网站从哪里申请建平台跟建网站
  • 反网站搭建一条龙企业网站建设 信科网络
  • 网站建设加班东莞建设造价信息网站
  • 网站做导航设计的作用是什么意思做网站的感想
  • 合肥建网站公司高密制作网站
  • 一个电信ip做网站卡不卡wordpress调用二级分类目录
  • 网站建设哪家好首推万维科技深圳市建设集团和恒大的关系
  • 巡视组 住房与城乡建设部网站网络营销方式分析与对比
  • php 网站开发平台自媒体平台前十名