当前位置:   article > 正文

国基北盛云平台搭建_chinaskills_cloud_iaas.iso下载

chinaskills_cloud_iaas.iso下载

1、前期准备与节点规划

  • 使用搭建的操作系统是:CentOS-7-x86_64-DVD-1804.iso
  • 使用搭建的镜像是:chinaskills_cloud_iaas.iso
  • 使用远程连接的工具是:xshell
  • 相关软件包
    提取码:kkor
  • 搭建方式:使用两台先电云计算服务器进行搭建,一个作为控制节点。另一个作为计算节点。
  • 节点网络规划
节点内网IP地址外网IP地址
controller192.168.100.10192.168.200.10
compute192.168.100.20192.168.200.20

=注意=:IP地址根据实际组网情况进行填写配置

2、基础环境配置与说明

云计算IaaS控制节点云计算IaaS计算节点
Keystone安全认证服务 
Glance镜像服务 
Nova计算控制服务Nova Compute计算服务
Dashboard管理界面 
Neutron Server网络服务Neutron节点网络服务
Cinder存储控制服务Cinder Volume存储服务
Rabbit消息服务 
Mysql数据库 
Swift 代理服务Swift 存储服务
Heat编配服务 
Ceilometer 监控服务Ceilometer监控代理

`说明:存储节点安装操作系统时需划分两个空白分区,作为cinder和swift存储磁盘搭建 ftp服务器作为搭建云平台的yum源。

controller控制节点虚拟硬件配置:
在这里插入图片描述
compute计算节点虚拟硬件配置:
在这里插入图片描述
设置对应的网卡模式和网络地址
在这里插入图片描述
通常默认情况下。VMnet0为桥接模式;VMnet1为仅主机模式;VMnet8为NAT模式。
在这里插入图片描述
以controller节点安装为例,compute计算节点安装步骤与此相同。`

3、配置主机名、网络(两节点都要)

通过xShell远程连接工具连接【controller】节点和【compute】节点,即控制节点和计算节点。

配置主机名【controller】

  1. [root@controller ~]# hostnamectl set-hostname controller
  2. [root@controller ~]# bash
  3. [root@controller ~]# hostnamectl
  4. Static hostname: controller
  5. Icon name: computer-desktop
  6. Chassis: desktop
  7. Machine ID: 03ea1deb7ce84827b40dcc0cad6deba0
  8. Boot ID: 73599f8a282c461bb30037e90d8f1702
  9. Operating System: CentOS Linux 7 (Core)
  10. CPE OS Name: cpe:/o:centos:centos:7
  11. Kernel: Linux 3.10.0-862.el7.x86_64
  12. Architecture: x86-64

配置网络信息(这里只贴出控制节点了,计算节点自行修改)

  1. [root@controller ~]# cat /etc/sysconfig/network-scripts/ifcfg-enp8s0
  2. TYPE=Ethernet
  3. PROXY_METHOD=none
  4. BROWSER_ONLY=no
  5. BOOTPROTO=static
  6. DEFROUTE=yes
  7. NAME=enp8s0
  8. DEVICE=enp8s0
  9. ONBOOT=yes
  10. IPADDR=192.168.100.10
  11. NETMASK=255.255.255.0
  12. GATEWAY=192.168.100.1
  13. DNS1=192.168.100.1
  14. [root@controller ~]# cat /etc/sysconfig/network-scripts/ifcfg-enp9s0
  15. TYPE=Ethernet
  16. PROXY_METHOD=none
  17. BROWSER_ONLY=no
  18. BOOTPROTO=static
  19. DEFROUTE=yes
  20. NAME=enp9s0
  21. DEVICE=enp9s0
  22. ONBOOT=yes
  23. IPADDR=192.168.200.10
  24. NETMASK=255.255.255.0
  25. GATEWAY=192.168.200.1
  26. DNS1=192.168.200.1

关闭控制节点的防火墙,设置开机不启动

设置SELinux为Permissive 模式

4、上传镜像并配置本地YUM源

【controller】

在这里插入图片描述

镜像挂载

配置【controller节点】的本地YUM源

  1. [root@controller yum.repos.d]#mv /etc/yum.repos.d/* /opt/
  2. [root@controller ~]# vi /etc/yum.repos.d/local.repo
  3. [root@controller ~]# cat /etc/yum.repos.d/local.repo
  4. [centos]
  5. name=centos
  6. baseurl=file:///opt/centos
  7. gpgcheck=0
  8. enabled=1
  9. [iaas]
  10. name=iaas
  11. baseurl=file:///opt/openstack/iaas-repo
  12. gpgcheck=0
  13. enabled=1

配置【compute节点】的本地YUM源,使用ftp的方式获取controller节点的YUM源

  1. [root@compute ~]#mv /etc/yum.repos.d/* /opt/
  2. [root@compute yum.repos.d]# vi /etc/yum.repos.d/ftp.repo
  3. [root@compute yum.repos.d]# cat /etc/yum.repos.d/ftp.repo
  4. [centos]
  5. name=centos
  6. baseurl=ftp://192.168.100.10/centos
  7. gpgcheck=0
  8. enable=1
  9. [iaas]
  10. name=openstack
  11. baseurl=ftp://192.168.100.10/openstack/iaas-repo
  12. gpgcheck=0
  13. enabled=1
  1. [root@controller ~]# yum clean all
  2. Loaded plugins: fastestmirror
  3. Cleaning repos: centos openstack
  4. Cleaning up everything
  5. Maybe you want: rm -rf /var/cache/yum, to also free up space taken by orphaned data from disabled or removed repos
  6. [root@controller ~]# yum repolist
  7. Loaded plugins: fastestmirror
  8. Determining fastest mirrors
  9. centos | 3.6 kB 00:00:00
  10. openstack | 2.9 kB 00:00:00
  11. (1/3): centos/group_gz | 166 kB 00:00:00
  12. (2/3): openstack/primary_db | 1.4 MB 00:00:00
  13. (3/3): centos/primary_db | 3.1 MB 00:00:00
  14. repo id repo name status
  15. centos centos 3,971
  16. iaas iaas 3,232
  17. repolist: 7,203
  18. [root@controller ~]#
  19. 123456789101112131415161718

在controller节点上安装ftp服务

  1. [root@controller ~]# yum install -y vsftpd
  2. Loaded plugins: fastestmirror
  3. Loading mirror speeds from cached hostfile
  4. Resolving Dependencies
  5. --> Running transaction check
  6. ---> Package vsftpd.x86_64 0:3.0.2-22.el7 will be installed
  7. --> Finished Dependency Resolution
  8. Dependencies Resolved
  9. =======================================================================================================================================
  10. Package Arch Version Repository Size
  11. =======================================================================================================================================
  12. Installing:
  13. vsftpd x86_64 3.0.2-22.el7 centos 169 k
  14. Transaction Summary
  15. =======================================================================================================================================
  16. Install 1 Package
  17. Total download size: 169 k
  18. Installed size: 348 k
  19. Downloading packages:
  20. Running transaction check
  21. Running transaction test
  22. Transaction test succeeded
  23. Running transaction
  24. Installing : vsftpd-3.0.2-22.el7.x86_64 1/1
  25. Verifying : vsftpd-3.0.2-22.el7.x86_64 1/1
  26. Installed:
  27. vsftpd.x86_64 0:3.0.2-22.el7
  28. Complete!
  29. [root@controller ~]# vi /etc/vsftpd/vsftpd.conf
  30. [root@controller ~]# systemctl start vsftpd;systemctl enable vsftpd

【compute】

  1. [root@compute ~]# yum clean all
  2. Loaded plugins: fastestmirror
  3. Cleaning repos: centos openstack
  4. Cleaning up everything
  5. Maybe you want: rm -rf /var/cache/yum, to also free up space taken by orphaned data from disabled or removed repos
  6. Cleaning up list of fastest mirrors
  7. [root@compute ~]# yum repolist
  8. Loaded plugins: fastestmirror
  9. Determining fastest mirrors
  10. centos | 3.6 kB 00:00:00
  11. openstack | 2.9 kB 00:00:00
  12. (1/3): centos/group_gz | 166 kB 00:00:00
  13. (2/3): openstack/primary_db | 1.4 MB 00:00:00
  14. (3/3): centos/primary_db | 3.1 MB 00:00:00
  15. repo id repo name status
  16. centos centos 3,971
  17. iaas iaas 3,232
  18. repolist: 7,203

5、在【compute】节点上进行空白分区的划分

  1. [root@compute ~]# parted /dev/sdb
  2. (parted) mkpart swift 0G 107.4G //创建swift分区
  3. (parted) mkpart cinder 107.4G 214.8G //创建cinder分区
  4. [root@compute ~]# mkfs.xfs /dev/sdb1
  5. [root@compute ~]# mkfs.xfs /dev/sdb2

6、编辑环境变量

  1. [root@compute ~]# yum install -y iaas-xiandian
  2. Loaded plugins: fastestmirror
  3. Loading mirror speeds from cached hostfile
  4. Resolving Dependencies
  5. --> Running transaction check
  6. ---> Package iaas-xiandian.x86_64 0:2.4-2 will be installed
  7. --> Finished Dependency Resolution
  8. Dependencies Resolved
  9. =======================================================================================================================================
  10. Package Arch Version Repository Size
  11. =======================================================================================================================================
  12. Installing:
  13. iaas-xiandian x86_64 2.4-2 openstack 19 k
  14. Transaction Summary
  15. =======================================================================================================================================
  16. Install 1 Package
  17. Total download size: 19 k
  18. Installed size: 81 k
  19. Downloading packages:
  20. iaas-xiandian-2.4-2.x86_64.rpm | 19 kB 00:00:00
  21. Running transaction check
  22. Running transaction test
  23. Transaction test succeeded
  24. Running transaction
  25. Installing : iaas-xiandian-2.4-2.x86_64 1/1
  26. Verifying : iaas-xiandian-2.4-2.x86_64 1/1
  27. Installed:
  28. iaas-xiandian.x86_64 0:2.4-2
  29. Complete!

【controller】openrc.sh配置文件如下

一键去注释 ctrl+v选中所有行,按d

给pass加000000 

:%s/PASS=/PASS=000000/g
  1. [root@controller ~]# vi /etc/xiandian/openrc.sh
  2. [root@controller ~]# cat /etc/xiandian/openrc.sh
  3. #--------------------system Config--------------------##
  4. #Controller Server Manager IP. example:x.x.x.x
  5. HOST_IP=192.168.100.10
  6. #Controller HOST Password. example:000000
  7. HOST_PASS=000000
  8. #Controller Server hostname. example:controller
  9. HOST_NAME=controller
  10. #Compute Node Manager IP. example:x.x.x.x
  11. HOST_IP_NODE=192.168.100.20
  12. #Compute HOST Password. example:000000
  13. HOST_PASS_NODE=000000
  14. #Compute Node hostname. example:compute
  15. HOST_NAME_NODE=compute
  16. #--------------------Chrony Config-------------------##
  17. #Controller network segment IP. example:x.x.0.0/16(x.x.x.0/24)
  18. network_segment_IP=192.168.100.0/24
  19. #--------------------Rabbit Config ------------------##
  20. #user for rabbit. example:openstack
  21. RABBIT_USER=openstack
  22. #Password for rabbit user .example:000000
  23. RABBIT_PASS=000000
  24. #--------------------MySQL Config---------------------##
  25. #Password for MySQL root user . exmaple:000000
  26. DB_PASS=000000
  27. #--------------------Keystone Config------------------##
  28. #Password for Keystore admin user. exmaple:000000
  29. DOMAIN_NAME=demo
  30. ADMIN_PASS=000000
  31. DEMO_PASS=000000
  32. #Password for Mysql keystore user. exmaple:000000
  33. KEYSTONE_DBPASS=000000
  34. #--------------------Glance Config--------------------##
  35. #Password for Mysql glance user. exmaple:000000
  36. GLANCE_DBPASS=000000
  37. #Password for Keystore glance user. exmaple:000000
  38. GLANCE_PASS=000000
  39. #--------------------Nova Config----------------------##
  40. #Password for Mysql nova user. exmaple:000000
  41. NOVA_DBPASS=000000
  42. #Password for Keystore nova user. exmaple:000000
  43. NOVA_PASS=000000
  44. #--------------------Neturon Config-------------------##
  45. #Password for Mysql neutron user. exmaple:000000
  46. NEUTRON_DBPASS=000000
  47. #Password for Keystore neutron user. exmaple:000000
  48. NEUTRON_PASS=000000
  49. #metadata secret for neutron. exmaple:000000
  50. METADATA_SECRET=000000
  51. #Tunnel Network Interface. example:x.x.x.x
  52. INTERFACE_IP=192.168.100.10
  53. #External Network Interface. example:eth1
  54. INTERFACE_NAME=enp9s0
  55. #External Network The Physical Adapter. example:provider
  56. Physical_NAME=provider
  57. #First Vlan ID in VLAN RANGE for VLAN Network. exmaple:101
  58. minvlan=101
  59. #Last Vlan ID in VLAN RANGE for VLAN Network. example:200
  60. maxvlan=200
  61. #--------------------Cinder Config--------------------##
  62. #Password for Mysql cinder user. exmaple:000000
  63. CINDER_DBPASS=000000
  64. #Password for Keystore cinder user. exmaple:000000
  65. CINDER_PASS=000000
  66. #Cinder Block Disk. example:md126p3
  67. BLOCK_DISK=sda4p1
  68. #--------------------Swift Config---------------------##
  69. #Password for Keystore swift user. exmaple:000000
  70. SWIFT_PASS=000000
  71. #The NODE Object Disk for Swift. example:md126p4.
  72. OBJECT_DISK=sda4p2
  73. #The NODE IP for Swift Storage Network. example:x.x.x.x.
  74. STORAGE_LOCAL_NET_IP=192.168.100.20
  75. #--------------------Heat Config----------------------##
  76. #Password for Mysql heat user. exmaple:000000
  77. HEAT_DBPASS=000000
  78. #Password for Keystore heat user. exmaple:000000
  79. HEAT_PASS=000000
  80. #--------------------Zun Config-----------------------##
  81. #Password for Mysql Zun user. exmaple:000000
  82. ZUN_DBPASS=000000
  83. #Password for Keystore Zun user. exmaple:000000
  84. ZUN_PASS=000000
  85. #Password for Mysql Kuryr user. exmaple:000000
  86. KURYR_DBPASS=000000
  87. #Password for Keystore Kuryr user. exmaple:000000
  88. KURYR_PASS=000000
  89. #--------------------Ceilometer Config----------------##
  90. #Password for Gnocchi ceilometer user. exmaple:000000
  91. CEILOMETER_DBPASS=000000
  92. #Password for Keystore ceilometer user. exmaple:000000
  93. CEILOMETER_PASS=000000
  94. #--------------------AODH Config----------------##
  95. #Password for Mysql AODH user. exmaple:000000
  96. AODH_DBPASS=000000
  97. #Password for Keystore AODH user. exmaple:000000
  98. AODH_PASS=000000
  99. #--------------------Barbican Config----------------##
  100. #Password for Mysql Barbican user. exmaple:000000
  101. BARBICAN_DBPASS=000000
  102. #Password for Keystore Barbican user. exmaple:000000
  103. BARBICAN_PASS=000000
  1. [root@controller ~]# scp /etc/xiandian/openrc.sh 192.168.100.20:/etc/xiandian/openrc.sh
  2. The authenticity of host '192.168.100.20 (192.168.100.20)' can't be established.
  3. ECDSA key fingerprint is SHA256:Gwi9FGsddkAOsnxzxoJKmgLRFE+ZHKV8HhOfsupYapA.
  4. ECDSA key fingerprint is MD5:e6:e9:42:34:5f:b9:57:7c:7c:db:02:60:3b:14:f3:ac.
  5. Are you sure you want to continue connecting (yes/no)? yes
  6. Warning: Permanently added '192.168.100.20' (ECDSA) to the list of known hosts.
  7. root@192.168.100.20's password:
  8. openrc.sh 100% 3812 1.5MB/s 00:00

【compute】
将从控制节点传输过来的openrc.sh配置文件进行修改,修改内容如下。

  1. #Tunnel Network Interface. example:x.x.x.x
  2. INTERFACE_IP=192.168.100.20

7、执行相关脚本安装各个组件服务

(1)通过脚本安装服务

【controller】
[root@controller ~]# iaas-pre-host.sh
[root@controller ~]# reboot

【compute】
[root@compute ~]# iaas-pre-host.sh
[root@compute ~]# reboot

(2)通过脚本安装数据库服务

【controller】
[root@controller ~]# iaas-install-mysql.sh

(3)通过脚本安装keystone服务

【controller】
[root@controller ~]# iaas-install-keystone.sh

(4)通过脚本安装glance服务

【controller】
[root@controller ~]# iaas-install-glance.sh

上传镜像并使用命令查询是否上传成功

  1. [root@controller ~]# cd /opt/openstack/images/
  2. [root@controller images]# ll
  3. total 1539152
  4. -rw-r--r--. 1 root root 283181056 Nov 3 11:39 CentOS_6.5_x86_64_XD.qcow2
  5. -rw-r--r--. 1 root root 381696512 Nov 3 11:39 CentOS7_1804.tar
  6. -rw-r--r--. 1 root root 400752640 Nov 3 11:39 CentOS_7.2_x86_64_XD.qcow2
  7. -rw-r--r--. 1 root root 510459904 Nov 3 11:39 CentOS_7.5_x86_64_XD.qcow2
  8. [root@controller images]# source /etc/keystone/admin-openrc.sh
  9. [root@controller images]# glance image-create --name "centos7.5" --disk-format qcow2 --container-format bare --progress < CentOS_7.5_x86_64_XD.qcow2
  10. [=============================>] 100%
  11. +------------------+--------------------------------------+
  12. | Property | Value |
  13. +------------------+--------------------------------------+
  14. | checksum | 3d3e9c954351a4b6953fd156f0c29f5c |
  15. | container_format | bare |
  16. | created_at | 2020-11-03T06:20:20Z |
  17. | disk_format | qcow2 |
  18. | id | d0122867-8ac2-444b-9c9f-556ede05e9f4 |
  19. | min_disk | 0 |
  20. | min_ram | 0 |
  21. | name | centos7.5 |
  22. | owner | 25e184cdfaf44d29b11d9b435293253f |
  23. | protected | False |
  24. | size | 510459904 |
  25. | status | active |
  26. | tags | [] |
  27. | updated_at | 2020-11-03T06:20:23Z |
  28. | virtual_size | None |
  29. | visibility | shared |
  30. +------------------+--------------------------------------+
  31. [root@controller images]# glance image-create --name "centos7.2" --disk-format qcow2 --container-format bare --progress < CentOS_7.2_x86_64_XD.qcow2
  32. [=============================>] 100%
  33. +------------------+--------------------------------------+
  34. | Property | Value |
  35. +------------------+--------------------------------------+
  36. | checksum | ea197f4c679b8e1ce34c0aa70ae2a94a |
  37. | container_format | bare |
  38. | created_at | 2020-11-03T06:20:40Z |
  39. | disk_format | qcow2 |
  40. | id | 428e4940-fc03-484f-96e2-4b8d5310e372 |
  41. | min_disk | 0 |
  42. | min_ram | 0 |
  43. | name | centos7.2 |
  44. | owner | 25e184cdfaf44d29b11d9b435293253f |
  45. | protected | False |
  46. | size | 400752640 |
  47. | status | active |
  48. | tags | [] |
  49. | updated_at | 2020-11-03T06:20:42Z |
  50. | virtual_size | None |
  51. | visibility | shared |
  52. +------------------+--------------------------------------+
  53. [root@controller images]# glance image-create --name "centos6.5" --disk-format qcow2 --container-format bare --progress < CentOS_6.5_x86_64_XD.qcow2
  54. [=============================>] 100%
  55. +------------------+--------------------------------------+
  56. | Property | Value |
  57. +------------------+--------------------------------------+
  58. | checksum | 3e565ace16066679ea363dde5411ed25 |
  59. | container_format | bare |
  60. | created_at | 2020-11-03T06:20:58Z |
  61. | disk_format | qcow2 |
  62. | id | 6a3333a2-0125-4654-bbb3-d9004ace3788 |
  63. | min_disk | 0 |
  64. | min_ram | 0 |
  65. | name | centos6.5 |
  66. | owner | 25e184cdfaf44d29b11d9b435293253f |
  67. | protected | False |
  68. | size | 283181056 |
  69. | status | active |
  70. | tags | [] |
  71. | updated_at | 2020-11-03T06:21:44Z |
  72. | virtual_size | None |
  73. | visibility | shared |
  74. +------------------+--------------------------------------+
  75. [root@controller images]# glance image-list
  76. +--------------------------------------+-----------+
  77. | ID | Name |
  78. +--------------------------------------+-----------+
  79. | 6a3333a2-0125-4654-bbb3-d9004ace3788 | centos6.5 |
  80. | 428e4940-fc03-484f-96e2-4b8d5310e372 | centos7.2 |
  81. | d0122867-8ac2-444b-9c9f-556ede05e9f4 | centos7.5 |
  82. +--------------------------------------+-----------+
  83. [root@controller images]# openstack image list
  84. +--------------------------------------+-----------+--------+
  85. | ID | Name | Status |
  86. +--------------------------------------+-----------+--------+
  87. | 6a3333a2-0125-4654-bbb3-d9004ace3788 | centos6.5 | active |
  88. | 428e4940-fc03-484f-96e2-4b8d5310e372 | centos7.2 | active |
  89. | d0122867-8ac2-444b-9c9f-556ede05e9f4 | centos7.5 | active |
  90. +--------------------------------------+-----------+--------+

(5)通过脚本安装nova服务

【controller】
[root@controller ~]# iaas-install-nova-controller.sh在这里插入图片描述

【compute】
[root@compute ~]# iaas-install-nova-compute.sh
在这里插入图片描述

(6)通过脚本安装neutron服务

【controller】

[root@controller ~]# iaas-install-neutron-controller.sh

【compute】
[root@compute ~]# iaas-install-neutron-compute.sh

注意:使用真实服务器搭建的话,网络模式选择vlan模式;使用虚拟机搭建的话,网络模式选择flat模式。

(7)通过脚本安装dashboard服务

【controller】
[root@controller ~]# iaas-install-dashboard.sh

(8)通过脚本安装Cinder服务

【controler】
[root@controller ~]# iaas-install-cinder-controller.sh

【compute】
[root@compute ~]# iaas-install-cinder-compute.sh

(9)通过脚本安装Swift服务

【controller】
[root@controller ~]# iaas-install-swift-controller.sh

【compute】
[root@compute ~]# iaas-install-swift-compute.sh

(10)通过脚本安装heat服务

【controller】
[root@controller ~]# iaas-install-heat.sh

(11)通过脚本安装Zun服务

【controller】
[root@controller ~]# iaas-install-zun-controller.sh

【compute】
[root@compute ~]# iaas-install-zun-compute.sh

(12)通过脚本安装Ceilometer服务

【controller】
[root@controller ~]# iaas-install-ceilometer-controller.sh

【compute】
[root@compute~]# iaas-install-ceilometer-compute.sh

(13)通过脚本安装Aodh服务

【controller】
[root@controller ~]# iaas-install-aodh.sh

8、添加控制节点资源到云平台

【controller】修改openrc.sh
把compute节点的IP地址和主机名改为controller节点的IP和主机名

在控制节点运行iaas-install-nova-compute.sh
执行过程中需要确认登录controller节点和输入controller节点root用户密码。

修改openrc.sh配置文件

  1. #Compute Node Manager IP. example:x.x.x.x
  2. HOST_IP_NODE=192.168.100.10
  3. #Compute Node hostname. example:compute
  4. HOST_NAME_NODE=controller
  1. [root@controller ~]# iaas-install-nova-compute.sh(只敲这行)
  2. Created symlink from /etc/systemd/system/multi-user.target.wants/openstack-nova-compute.service to /usr/lib/systemd/system/openstack-nova-compute.service.
  3. Pseudo-terminal will not be allocated because stdin is not a terminal.
  4. The authenticity of host '192.168.1.10 (192.168.1.10)' can't be established.
  5. ECDSA key fingerprint is SHA256:rX1rbCElY3mREAkrNRYC+yob0sFY+VyQAoUxPHPZucs.
  6. ECDSA key fingerprint is MD5:18:11:82:84:98:8b:fd:3d:58:df:18:82:f7:a5:2e:50.
  7. Are you sure you want to continue connecting (yes/no)? yes
  8. Warning: Permanently added '192.168.1.10' (ECDSA) to the list of known hosts.
  9. root@192.168.1.10's password: (这里输入密码)
  10. +----+--------------+------------+------+---------+-------+----------------------------+
  11. | ID | Binary | Host | Zone | Status | State | Updated At |
  12. +----+--------------+------------+------+---------+-------+----------------------------+
  13. | 10 | nova-compute | compute | nova | enabled | up | 2020-11-03T07:34:09.000000 |
  14. | 11 | nova-compute | controller | nova | enabled | up | 2020-11-03T07:34:09.000000 |
  15. +----+--------------+------------+------+---------+-------+----------------------------+
  16. Found 2 cell mappings.
  17. Skipping cell0 since it does not contain hosts.
  18. Getting computes from cell 'cell1': b7e5c36e-d44d-4886-b756-7f37fe2bff2d
  19. Checking host mapping for compute host 'controller': a35af4bb-d210-4e8e-a2eb-1ed65fd439d9
  20. Creating host mapping for compute host 'controller': a35af4bb-d210-4e8e-a2eb-1ed65fd439d9
  21. Found 1 unmapped computes in cell: b7e5c36e-d44d-4886-b756-7f37fe2bff2d

9、登录web界面

输入http://192.168.100.10/dasboard
在这里插入图片描述
在这里插入图片描述
至此,IaaS搭建完成。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/70496
推荐阅读
相关标签
  

闽ICP备14008679号