美文网首页linux&github我爱编程
centos下利用docker搭建hbase集群过程记录

centos下利用docker搭建hbase集群过程记录

作者: 4ea0af17fd67 | 来源:发表于2018-04-23 09:33 被阅读92次

    安装docker

    #查看你当前的内核版本(Docker 要求 CentOS 系统的内核版本高于 3.10 )
    uname -r
    
    #安装 Docker
    yum -y install docker
    
    #启动 Docker 后台服务
    service docker start
    
    #测试运行 hello-world,由于本地没有hello-world这个镜像,所以会下载一个hello-world的镜像,并在容器内运行。
    docker run hello-world
    
    #测试完成删除hello-word镜像
    
    

    相关文章

      网友评论

        本文标题:centos下利用docker搭建hbase集群过程记录

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