Advertisement

OpenStack双节点—M Keystone(身份认证服务)

阅读量:

Keystone安装配置

    • 一、数据库设置
      • 二、部署及调整Keystone组件
      • 三、设定Apache服务参数
      • 四、生成Service与API Endpoints
      • 五、构建domain、project、user及role信息
      • 六、检测Keystone服务运行状态

一、数据库配置与优化

复制代码
    # mysql -uroot -p123456
    MariaDB [(none)]> create database keystone;
    (创建keystone数据库)
    MariaDB [(none)]> grant all privileges on keystone.* to 'keystone'@'%' identified by '123456';
     (为数据库的Keystone用户授予所有权限并支持远程登录)
    MariaDB [(none)]> grant all privileges on keystone.* to 'keystone'@'localhost' identified by '123456';
    (为数据库的Keystone用户授予所有权限并支持本地登录)
    MariaDB [(none)]> exit
    

全部评论 (0)

还没有任何评论哟~