Advertisement
AftabHussain

Untitled

Nov 29th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. root@hr-controller01:/home/redadmin# history
  2. 1 ip link set eth1 up
  3. 2 apt-get update
  4. 3 apt-get install python-pip
  5. 4 pip install -U pip
  6. 5 apt-get install python-dev libffi-dev gcc libssl-dev python-selinux
  7. 6 pip install -U ansible
  8. 7 poweroff
  9. 8 curl -sSL https://get.docker.io | bash
  10. 9 docker --version
  11. 10 mkdir -p /etc/systemd/system/docker.service.d
  12. 11 tee /etc/systemd/system/docker.service.d/kolla.conf <<-'EOF'
  13. [Service]
  14. MountFlags=shared
  15. EOF
  16.  
  17. 12 systemctl daemon-reload
  18. 13 systemctl restart docker
  19. 14 pip install -U docker
  20. 15 apt-get install ntp
  21. 16 service libvirt-bin stop
  22. 17 update-rc.d libvirt-bin disable
  23. 18 pip install kolla-ansible
  24. 19 cp -r /usr/local/share/kolla-ansible/etc_examples/kolla /etc/kolla/
  25. 20 cp /usr/local/share/kolla-ansible/ansible/inventory/* .
  26. 21 nano /etc/kolla/globals.yml
  27. 22 kolla-genpwd
  28. 23 kolla-ansible -i all-in-one bootstrap-servers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement