Varietyof Installation

  • pxe boot
    https://www.cnblogs.com/mython/p/10919355.html

  • ubuntu docker
    https://blog.csdn.net/jinking01/article/details/82490688

  • ubuntu openstack
    https://blog.csdn.net/hunjiancuo5340/article/details/85005995

  • centos wget
    https://www.cnblogs.com/yunman/p/7905097.html

  • centos docker
    https://www.cnblogs.com/qgc1995/p/9553572.html

  • centos harbor
    https://blog.csdn.net/qq12547345/article/details/79482468
    注意,这里需要更改docker安装,因为默认安装的版本太低
    213 yum -y remove docker
    215 yum -y remove docker-common
    216 yum install docker-ce-18.03.1.ce-1.el7.centos
    222 systemctl start docker
    223 systemctl enable docker

:https://www.jianshu.com/p/11d4c7f25bb8
中间还碰到问题:
177 yum -y install jsonschema
187 pip uninstall pyOpenSSL cryptography
188 sudo pip install pyOpenSSL cryptography
190 pip install -U setuptools
192 yum -y install gcc
197 yum install python-devel
198 pip install docker-compose
安装https 的harbor请参考:https://www.cnblogs.com/nulige/articles/10814739.html

  • centos修改软件源
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    yum makecache
    yum -y update

你可能感兴趣的:(InstallAndCmd)