简介 目录 评价 推荐
  • qq_羽悦_03291187 2023-09-11

    1、时间修改:date -s "2019-05-01 19:10:30"

    https://img2.mukewang.com/64ff2eeb000186d608750329.jpg

    2、clock -w

    3、data

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-11

    时间同步大概需要5-10分钟的时间等待https://img2.mukewang.com/64ff2e440001c79f05960293.jpg

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-11

    启动ntp:systemctl start ntpd

    查看ntp状态:systemctl status ntpd

    ntp服务设为开机自启:systemctl enable ntpd

    https://img.mukewang.com/64ff27370001fa2f08810100.jpg

    查看状态:ntpstat

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-11

    配置时间同步器:ntpdate -u ntp2.aliyun.comhttps://img.mukewang.com/64ff25d100015f0d08730191.jpg

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-11

    可选时间服务器https://img4.mukewang.com/64ff23c900012ede08340500.jpghttps://img1.mukewang.com/64ff23f900017eab04500508.jpg

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-10

    选择master作为ntp服务器端,vi /etc/ntp.conf。

    网段设置:restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

    https://img4.mukewang.com/64fde13b0001a06006960130.jpg

    日志存放位置:logfile /var/log/ntpd.log

    https://img3.mukewang.com/64fde12b00016e3804360158.jpg

    时间服务器设置:

    https://img1.mukewang.com/64fde1680001243306860319.jpg

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-10

    ntp配置项目,时间服务器要是出问题时,就转掉本机服务器时间https://img3.mukewang.com/64fddbd400014a6906510419.jpg

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-09

    5台虚拟主机

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-09

    Ntp(network time protocol)

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-09

    主机(服务器)多节点(集规划群)

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-07

    HBase应用场景

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-07

    Hadoop类型

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-07

    集群等级、大集群每个HBase部署单独的服务器

    0赞 · 0采集
  • qq_羽悦_03291187 2023-09-07

    HBase的特点

    0赞 · 0采集
  • 曹志华8 2021-05-08

    20-

    小型集群 : 无HA ,1个zookeper  ,Hbase hadoop  一个Hregionserver NodeManager 

    20 - 50 

    中型集群 : HadoopHA  HbaseHA  3个zookeeper  3个Hmaster

    50 + 

    大型集群 : 5/7个zookeeper   

    0赞 · 0采集
  • Jussi_Lee 2020-04-10

    hbase ha 设计

    截图
    0赞 · 0采集
  • 禅克 2019-05-07
    不错的课程
    0赞 · 0采集
  • 花季_莫浅忆 2019-04-19

    Hadoop分布式集群搭建


    1.上传jdk、hadoop-26.0-chh5.14.tar.gz并解压缩


    1.1.cdh

    [cdh5](http://archive.cloudera.com/cdh5/cdh/5/)

    [cdh6](https://www.cloudera.com/documentation/enterprise/6/release-notes/topics/rg_cdh_60_packaging.html)


    1.2.创建hadoop用户,配置ssh免登录

    ssh-keygen (全部回车,无需输入)

    ssh-copy-id -i /root/.ssh/id_rsa.pub node1

    ssh-copy-id -i /root/.ssh/id_rsa.pub node2

    ssh-copy-id -i /root/.ssh/id_rsa.pub node3

    ssh-copy-id -i /root/.ssh/id_rsa.pub node4

    ssh-copy-id -i /root/.ssh/id_rsa.pub node5

    ssh node1


    1.3 创建软件目录并分配权限

    mkdir /opt/software && chown _R hadoop:hadoop /opt/


    1.4 上传安装包

    jdk、hadoop


    1.5 分发到其他服务器

    scp jdk-8u144-linux-x64.tar.gz slavel:opt/software/jdk-8u144-linux-x64.tar.gz 


    1.6 解压


    2.配置.bashrc

    3.配置hadoop-env.sh

    4.配置mapred-env.sh

    5.配置yarn-env.sh

    6.配置core-site.xml

    7.配置yarn-site.xml

    8.配置hdfs-site.xml

    9.配置mapred-site.xml

    10.将配置好的hadoop发送到其他机器

    11.发送.bashrc

    12.hadoop namenode -format

    格式化


    启动hdfs start-dfs.sh

    查看 jps


    3赞 · 1采集
  • 花季_莫浅忆 2019-04-18

    1.安装ntp: 

    yum install -y ntp

    2.修改ntp的配置文件(ntp服务端配置)

    vi /etc/ntp.conf

    ```

    # 配置日志

    logfile /var/log/ntpd.log


    #restrict 192.168.1.0 mask 255.255.255.0 nomodify nostrap

    # 在3个网段下的所有机器都可以连接我的ntp服务器

    restrict 192.168.3.0 mask 255.255.255.0 nomodify nostrap


    # 注释默认的ntp服务器

    # server 0.centos.pool.ntp.org iburst

    service ntp1.aliyun.com

    service ntp2.aliyun.com

    service ntp3.aliyun.com

    # 当服务器不可用,本机作为ntp服务器

    server 127.0.0.1

    fudge 127.0.0.1 stratum 10

    ``` 

    3. 手动同步ntp服务器时间

    ntpdate -u  ntp1.aliyun.com

    失败原因:防火墙 网络

    4.启动

    systemctl start ntpd

    systemctl status ntpd

    # 开机自启

    systemctl enable ntpd

    PS:同步需要5-10分钟

    ntpstat


    5.ntp客户端配置

    vi /etc/ntp.conf

    ```

    # 注释默认的时间服务器

    # 同步master的时间(master的ip或主机名)

    server 192.168.3.100

    ```

    6.测试

    修改时间

    date -s "2019-05-01 19:10:30"

    clock -w

    date

    # 查看同步状态

    ntpstat

    0赞 · 0采集
  • 萧哥 2019-04-13

    HBase权限控制

    截图
    0赞 · 0采集
  • 萧哥 2019-04-13

    HBase权限范围2

    截图
    0赞 · 0采集
  • 萧哥 2019-04-13

    HBase权限范围1

    截图
    0赞 · 0采集
  • 萧哥 2019-04-13

    HBase权限管理

    执行

    创建

    管理

    截图
    0赞 · 0采集
  • 萧哥 2019-04-02

    Ntp简介

    截图
    0赞 · 0采集
  • 萧哥 2019-04-02

    课程案列-主机规划

    截图
    0赞 · 0采集
  • 萧哥 2019-04-02

    HBase和传统数据库对比

    截图
    0赞 · 0采集
  • 萧哥 2019-04-02

    HBase特点

    截图
    0赞 · 0采集
  • 萧哥 2019-04-02

    HBase企业应用场景

    截图
    0赞 · 0采集
  • qq_慕数据855680 2019-03-06

    ntp实现同步 ha搭建在zookpeer下

    0赞 · 0采集
  • qq_淡淡的紫香_0 2019-03-06

    1111111

    0赞 · 0采集
数据加载中...
开始学习 免费