zoukankan      html  css  js  c++  java
  • redhat安装docker

    一、禁用selinux 由于Selinux和LXC有冲突,所以需要禁用selinux。编辑/etc/selinux/config,设置两个关键变量。     SELINUX=disabled  SELINUXTYPE=targeted

    二、配置Fedora EPEL源 1 sudo yum install http://ftp.riken.jp/Linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm

    三、添加hop5.repo源

    cd /etc/yum.repos.d  sudo wget http://www.hop5.in/yum/el6/hop5.repo

    四、安装Docker sudo yum install docker-io

    图1是yum安装过程中的截图,可以发现安装的软件只有docker和lxc相关包,没有内核包,例如kernel-ml-aufs。

    在RedHat/CentOS下安装Docker(不升级内核)

    图1 yum install docker-io输出截图

    五、初步验证docker   输入docker -h,如果有如下输出,就证明docker在形式上已经安装成功。

    # docker -h  Usage of docker:    -D=false: Enable debug mode    -H=[]: Multiple tcp://host:port or unix://path/to/socket to bind in daemon mode, single connection otherwise    -api-enable-cors=false: Enable CORS headers in the remote API    -b="": Attach containers to a pre-existing network bridge; use 'none' to disable container networking    -bip="": Use this CIDR notation address for the network bridge's IP, not compatible with -b    -d=false: Enable daemon mode    -dns=[]: Force docker to use specific DNS servers    -g="/var/lib/docker": Path to use as the root of the docker runtime    -icc=true: Enable inter-container communication    -ip="0.0.0.0": Default IP address to use when binding container ports    -iptables=true: Disable docker's addition of iptables rules    -p="/var/run/docker.pid": Path to use for daemon PID file   -r=true: Restart previously running containers    -s="": Force the docker runtime to use a specific storage driver    -v=false: Print version information and quit

  • 相关阅读:
    python技巧31[移植python2.x到3.x]
    python转载[正则表达式指南]
    Linux守护进程(init.d和xinetd)
    系统host文件的使用
    python技巧31[python文件的encoding和str的decode]
    python类库26[读写mysql]
    Windows批处理中文件的属性
    python类库31[读取环境变量]
    python基础31[python内置函数列表]
    文件共享和存储服务器
  • 原文地址:https://www.cnblogs.com/lvfeilong/p/23dfdf.html
Copyright © 2011-2022 走看看