初识openstack之4——opsenstack安装前准备

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初识openstack之4——opsenstack安装前准备相关的知识,希望对你有一定的参考价值。

一、实验说明

按照官方文档搭建queens版本openstack,拓扑如下图所示:
技术分享图片

二、实验目的

准备好openstack组件安装前所需要的其他软件,如MariaDB,RabbitMQ等。

三、操作步骤

  1. 修改所有节点/etc/hosts文件
    技术分享图片
    如果hosts文件中有将主机名解析到127.0.0.1的配置段,将其注销
  2. 所有节点关闭NetworkManager
    [[email protected] ~]# systemctl stop NetworkManager.service
    [[email protected] ~]# systemctl disable NetworkManager.service
  3. 所有节点添加openstack需要的yum源
    [[email protected] ~]# vim /etc/yum.repo.d/OpenStack-Queens.repo
    [OpenStack-Queens]
    name=OpenStack-Queens
    baseurl=https://mirrors.aliyun.com/centos/7/cloud/x86_64/openstack-queens/
    enable=1
    gpgcheck=0
  4. 安装NTP服务
    controller节点进行以下操作:
    [[email protected] ~]# yum install chrony
    [[email protected] ~]# vim /etc/chrony.conf
    allow 172.16.80.0/24

    [[email protected] ~]# systemctl enable chronyd.service
    [[email protected] ~]# systemctl start chronyd.service
    [[email protected] ~]# chronyc sources
    技术分享图片
    其他节点进行以下操作:
    [[email protected] ~]# yum install chrony
    [[email protected] ~]# vim /etc/chrony.conf

    server controller iburst

    [[email protected] ~]# systemctl enable chronyd.service
    [[email protected] ~]# systemctl start chronyd.service
    [[email protected] ~]# chronyc sources
    技术分享图片

  5. 安装数据库

以上是关于初识openstack之4——opsenstack安装前准备的主要内容,如果未能解决你的问题,请参考以下文章

初识openstack之0——虚拟化及Xen和KVM介绍

初识openstack之5——安装Keystone

初识openstack之——安装Image

初识openstack之7——安装Compute

OpenStack:初识

初识OpenStack