7-nova计算节点
7.1 nova计算节点 7.2 nova计算节点的安装 1 yum install openstack-nova-compute 7.3 修改nova的配置文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [root@linux-node2~] #grep-E"^[a-Z]"/etc/nova/nova.conf auth_strategy=keystone #开启keystone认证【DEFAULT】模块 my_ip=192.168.56.11 #计算节点上的管理网络接口的IP【DEFAULT】模块 use_neutron= false #使用neutron网络【DEFAULT】模块 enabled_apis=osapi_compute,metadata #只启用计算和元数据API【DEFAULT】模块 firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver #去除Compute内置的防火墙服务。【DEFAULT】模块 transport...