Advertisement

OpenStack双节点配置—M Heat(编配服务)

阅读量:

Heat安装配置

    • 一、数据库设置
      • 二、生成服务账户及API接口
      • 三、部署并调整Heat组件
      • 四、执行验证流程

一、数据库配置与优化

复制代码
    # mysql -uroot -p123456
    MariaDB [(none)]> create database heat;
    MariaDB [(none)]> grant all privileges on heat.* to 'heat'@'localhost' identified by '123456';
    MariaDB [(none)]> grant all privileges on heat.* to 'heat'@'%' identified by '123456';
    MariaDB [(none)]> exit
    
    
      
      
      
      
      
    

二、创建服务凭证和API端点

复制代码
    # . /root/admin-openrc
    # openstack user create --domain default --password-prompt heat
    User Password:
    Repeat Us

全部评论 (0)

还没有任何评论哟~