openstack stein部署手册 4. glance】的更多相关文章

# 建立数据库用户及权限 create database glance; grant all privileges on glance.* to glance@'localhost' identified by 'Abc@123'; grant all privileges on glance.* to glance@'%' identified by 'Abc@123'; flush privileges; # 建立用户.角色.服务.项目.域.端点 source ~/.openstack_ad…
# 安装程序包 yum install -y openstack-nova-compute # 变更配置文件 cd /etc/nova mv nova.conf nova.conf.org cat > /etc/nova/nova.conf << EOF [DEFAULT] my_ip = 192.168.10.220 enabled_apis = osapi_compute,metadata transport_url = rabbit://openstack:Abc@123@cont…
# 建立数据库用户及权限 create database nova; grant all privileges on nova.* to nova@'localhost' identified by 'Abc@123'; grant all privileges on nova.* to nova@'%' identified by 'Abc@123'; create database nova_api; grant all privileges on nova_api.* to nova@'l…
# 建立网络(provider)与子网 openstack network create --share --external --provider-physical-network provider --provider-network-type flat provider openstack subnet create --network provider --allocation-pool start=10.0.0.11,end=10.0.0.20 --dns-nameserver 10.…
# 安装程序包 yum -y install openstack-neutron-linuxbridge ebtables ipset # 变更配置文件 mv /etc/neutron/neutron.confneutron /etc/neutron/neutron.conf.org cat > /etc/neutron/neutron.conf << EOF [DEFAULT] transport_url = rabbit://openstack:Abc@123@controller…
# 建立数据库用户及权限 create database neutron; grant all privileges on neutron.* to neutron@'localhost' identified by 'Abc@123'; grant all privileges on neutron.* to neutron@'%' identified by 'Abc@123'; flush privileges; # 建立用户.角色.服务.项目.域.端点 source ~/.opensta…
# 建立数据库用户及权限 create database placement; grant all privileges on placement.* to placement@'localhost' identified by 'Abc@123'; grant all privileges on placement.* to placement@'%' identified by 'Abc@123'; flush privileges; # 建立用户.角色.服务.项目.域.端点 source…
# 建立数据库用户及权限 create database keystone; grant all privileges on keystone.* to keystone@'localhost' identified by 'Abc@123'; grant all privileges on keystone.* to keystone@'%' identified by 'Abc@123'; flush privileges; # 安装程序包 yum install -y openstack-…
1. chrony # 安装程序包 yum install -y chrony # 变更配置文件 /etc/chrony.conf 增加 server 192.168.123.200 iburst # 开启服务 systemctl restart chronyd && systemctl enable chronyd   2. mariadb # 安装程序包 yum install -y mariadb-server # 变更配置文件 /etc/my.cnf.d/mariadb-serve…
# 安装程序包 yum install -y openstack-dashboard # 变更配置文件 /etc/openstack-dashboard/local_settings 变更以下 OPENSTACK_HOST = "controller" OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = True OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = "default" OPENSTACK_KEYSTO…