-
第2章OpenStack安装部署第2节安装Glance镜像服务.pdf下载
资源介绍
(6) 安装 openstack-selinux 安全服务
由于 centos 默认是开启 SeLinux 安全控制的,因此需要安装 openstack-selinux,使系统自动管理
openstack 各个服务的安全策略
yum install openstack-selinux
2.1.3 安装 mariadb 数据库
Mariadb 主要功能是: 为 OpenStack 提供数据库服务。
(1)安装 mariadb 软件包
yum install mariadb mariadb-server python2-PyMySQL
(2)创建并编辑/etc/my.cnf.d/openstack.cnf 配置文件,增加以下内容
[mysqld]
bind-address =0.0.0.0
default-storage-engine = innodb
innodb_file_per_table
collation-server = utf8_general_ci
character-set-server = utf8
5)初始化 keystone 数据库
su -s /bin/sh -c "keystone-manage db_sync" keystone
( 6)初始化 Fernet
keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone
( 7)配置 HTTP 服务
编辑/etc/httpd/conf/httpd.conf 文件
ServerName controll