美文网首页Learning Big Data
Alluxio部署(集群模式)

Alluxio部署(集群模式)

作者: puroc | 来源:发表于2016-11-21 18:24 被阅读0次
    • 下载(pre-build for Hadoop 2.7)
    http://www.alluxio.org/download`
    
    • 解压
    tar -xvf alluxio-1.3.0-hadoop2.7-bin.tar
    
    • 生成配置文件
    ./bin/alluxio bootstrapConf 10.10.20.204
    
    • 添加worker
      编辑conf/workers文件,将worker的主机名添加到该文件中(worker文件中原来就有localhost),这样就有两个worker了。
    localhost
    docker-2
    
    • 与worker同步程序
      /root/alluxio为worker节点上的alluxio安装目录
    ./bin/alluxio copyDir /root/alluxio
    
    • 格式化
    ./bin/alluxio format
    
    • 启动
    ./bin/alluxio-start.sh all
    
    • 停止
    ./bin/alluxio-stop.sh all
    
    • 访问控制台
    http://10.10.20.204:19999
    
    • 检测Alluxio是否正常
      运行测试程序
    ./bin/alluxio runTests
    

    相关文章

      网友评论

        本文标题:Alluxio部署(集群模式)

        本文链接:https://www.haomeiwen.com/subject/hmiupttx.html