美文网首页
DevStack Installation On CentOS7

DevStack Installation On CentOS7

作者: SikAck | 来源:发表于2015-10-15 13:06 被阅读0次

    Refers to Official Installation Guide

    Steps

    1. Pre-Installation
    $ sudo yum install -y net-tools git bridge-utils
    
    1. Installation
    $ git clone https://github.com/openstack-dev/devstack.git
    $ cd devstack
    $ cp samples/local.conf ./
    $ for i in `grep -Rni MySql-python * | awk -F':' '{print $1}'`; do sed -i 's/MySql-python/python-mysql/g' $i; done; # only for Fedora 22
    $ sed -i 's/GIT_BASE=\${GIT_BASE:-git:\/\/git.openstack.org}/GIT_BASE=\${GIT_BASE:-https:\/\/www.github.com}/g' stackrc
    $ ./stack.sh
    

    Note
    You can NOT use root. Set HOST_IP under [[local|localrc]] in local.conf while you are using multiple NICs. HOST_IP is the ip address used for dashboard and keystone web services.

    1. Post-Installation
    $ sudo iptables -D INPUT -j REJECT --reject-with icmp-host-prohibited
    

    Note
    A default iptables rule will block your web access from clients

    Problems

    1. keystone did not start
      Root Cause: HOST_IP is invalid
    2. No package zookeeper available.
      Solution: CentOS/RedHat7

    Refers to

    VNX-direct-driver

    相关文章

      网友评论

          本文标题:DevStack Installation On CentOS7

          本文链接:https://www.haomeiwen.com/subject/sbaocttx.html