zoukankan      html  css  js  c++  java
  • zun 不能创建 docker 容器,报错: datastore for scope "global" is not initialized

    问题:zun不能创建docker容器,报错:datastore for scope "global" is not initialized
     
    解决:修改docker 服务配置文件:
     
    [root@node-172-19-15-230 ~]# cat /usr/lib/systemd/system/docker.service 
    [Unit]
    Description=Docker Application Container Engine
    Documentation=https://docs.docker.com
    After=network.target firewalld.service
     
    [Service]
    Type=notify
    ExecStart=/usr/bin/dockerd --insecure-registry 172.19.15.95:4000 -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --cluster-advertise 172.19.15.230:2375 --cluster-store etcd://172.19.15.230:2379
    ExecReload=/bin/kill -s HUP $MAINPID
    LimitNOFILE=infinity
    LimitNPROC=infinity
    LimitCORE=infinity
    TimeoutStartSec=0
    Delegate=yes
    KillMode=process
    MountFlags=shared
     
    [Install]
    WantedBy=multi-user.target
     
     
    在文件中增加:
     
    -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock --cluster-advertise 172.19.15.230:2375 --cluster-store etcd://172.19.15.230:2379
     
     
    同时需要 etcd 服务用来存储数据的
     
     
     
  • 相关阅读:
    Oracle建立表空间和用户
    Session详解
    Spring中AOP方式实现多数据源切换
    Filter(过滤器)学习
    不用加号运算
    数字转化为十六进制
    1px像素问题(移动端经典问题)
    对postcss-plugin-px2rem的研究
    npm cache clean --force
    对async/await的研究
  • 原文地址:https://www.cnblogs.com/wangjq19920210/p/9099598.html
Copyright © 2011-2022 走看看