Advertisement

OpenStack双节点—M Glance(镜像服务)

阅读量:

Glance安装指南

    • 一、数据库设置
      • 二、生成服务访问权限及API接口
      • 三、部署并调整Glance组件
      • 四、测试Glance功能模块

一、数据库配置与优化

控制器节点

1.建立Glance数据库并进行权限分配

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

![在这里插入图片描述](https://ad.itadn.com/c/weblog/blog-img/images/2025-05-31/el3cgWn1QUOk0KfRZHu

全部评论 (0)

还没有任何评论哟~