违法℃玩家 发表于 2018-6-2 08:11:49

openstack I版的搭建六

  # chkconfig openstack-neutron-linuxbridge-agent on
  # chkconfig openstack-nova-compute on
  

  # nova host-list
  +---------------------------+-------------+----------+
  | host_name               | service   | zone   |
  +---------------------------+-------------+----------+
  | linux-node1.openstack.com | consoleauth | internal |
  | linux-node1.openstack.com | scheduler   | internal |
  | linux-node1.openstack.com | cert      | internal |
  | linux-node1.openstack.com | conductor   | internal |
  +---------------------------+-------------+----------+
  # nova flavor-list
  +----+-----------+-----------+------+-----------+---------+-------+-------------+-----------+
  | ID | Name      | Memory_MB | Disk | Ephemeral | Swap_MB | VCPUs | RXTX_Factor | Is_Public |
  +----+-----------+-----------+------+-----------+---------+-------+-------------+-----------+
  | 1| m1.tiny   | 512       | 1    | 0         |         | 1   | 1.0         | True      |
  | 2| m1.small| 2048      | 20   | 0         |         | 1   | 1.0         | True      |
  | 3| m1.medium | 4096      | 40   | 0         |         | 2   | 1.0         | True      |
  | 4| m1.large| 8192      | 80   | 0         |         | 4   | 1.0         | True      |
  | 5| m1.xlarge | 16384   | 160| 0         |         | 8   | 1.0         | True      |
  +----+-----------+-----------+------+-----------+---------+-------+-------------+-----------+
  # nova agent-list
  +----------+------------+----+--------------+---------+---------+-----+
  | Agent_id | Hypervisor | OS | Architecture | Version | Md5hash | Url |
  +----------+------------+----+--------------+---------+---------+-----+
  +----------+------------+----+--------------+---------+---------+-----+
  # neutron agent-list
  +--------------------------------------+--------------------+---------------------------+-------+----------------+---------------------------+
  | id                                 | agent_type         | host                      | alive | admin_state_up | binary                  |
  +--------------------------------------+--------------------+---------------------------+-------+----------------+---------------------------+
  | 347e3233-9c27-4535-a19e-04a6a96a8c23 | Linux bridge agent | linux-node1.openstack.com | :-)   | True         | neutron-linuxbridge-agent |
  +--------------------------------------+--------------------+---------------------------+-------+----------------+---------------------------+
  # cd ~
  # cd /usr/local/src/nova-2014.1
  # pip install -r requirements.txt -i http://pypi.douban.com/simple
  

  # python setup.py install
  

  

  # cd ~
  # nova-compute --config-file /etc/nova/nova.conf
我们发现报错,那么是什么原因导致的呢?是因为我们没有配置Nova
  首先,我们需要在配置节点上做。
  # vim /etc/nova/nova.conf
  novncproxy_base_url=http://192.168.33.11:6080/vnc_auto.html
  vncserver_listen=0.0.0.0
  vncserver_proxyclient_address=192.168.33.11
  vnc_enabled=true
  vnc_keymap=en-us
  # /etc/init.d/openstack-nova-novncproxy restart
  停止 openstack-nova-novncproxy:                           [确定]
  正在启动 openstack-nova-novncproxy:                     [确定]
  

  

  # vim /etc/nova/nova.conf
  novncproxy_base_url=http://192.168.33.11:6080/vnc_auto.html
  vncserver_listen=0.0.0.0
  vncserver_proxyclient_address=192.168.33.12
  vnc_enabled=true
  

  报错信息:连接不上KVM

  

  那么我们把
  # /etc/init.d/libvirtd start
  启动 libvirtd 守护进程:                                 [确定]
  开启
  # /etc/init.d/messagebus start
  启动系统消息总线:
  
页: [1]
查看完整版本: openstack I版的搭建六