Advertisement

OpenStack双节点部署-M Cinder(块存储服务)

阅读量:

Cinder安装指南

    • 一、 数据库设置
      • 二、 生成服务访问权限及API接口
      • 三、 部署并调整Cinder模块
      • 四、 安装与设置存储服务器
      • 五、 检测Cinder功能运行状况

一、 数据库配置

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

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

控制器节点

1.激活环境变量

复制代码
    # . admin-openrc
    
    
      
    

2.生成服

全部评论 (0)

还没有任何评论哟~