Advertisement
Guest User

Untitled

a guest
Aug 19th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. vi /etc/selinux/config
  2. vi /etc/sysconfig/network-scripts/ifcfg-eth1
  3. systemctl disable firewalld
  4. systemctl stop firewalld
  5. reboot
  6. yum install -y epel-release
  7. yum -y install ntp
  8. yum install -y python-devel libffi-devel openssl-devel gcc git python-pip
  9. systemctl enable ntpd.service
  10. systemctl start ntpd.service
  11. curl -sSL https://get.docker.io | bash
  12. sudo usermod -aG docker root
  13. mkdir -p /etc/systemd/system/docker.service.d
  14. tee /etc/systemd/system/docker.service.d/kolla.conf <<-'EOF'
  15. [Service]
  16. MountFlags=shared
  17. EOF
  18. systemctl daemon-reload
  19. systemctl restart docker
  20. systemctl enable docker
  21. sudo pip install -U pip
  22. pip install -U docker-py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement