bilelmsekni / OpenStack-Grizzly-Install-Guide

A full install guide for OpenStack Grizzly
352 stars 218 forks source link

How to add Extra one more compute node OVS_MultiNode Environment #64

Closed bugcy013 closed 11 years ago

bugcy013 commented 11 years ago

Hi Guys,

I followed your OVS_Multinode openstack setup working good for me. I need to add one more compute node for computing purpose.

I added compute node. the node successfully added to the cluster. I can able start instance on new compute node. I manually verified login particular compute node. ps command says kvm process running.

Problem is Quantum will assign ip address also assign floating ip also.

But the ip's I can't reach

For example I assigned floating ip as 192.168.70.157 it's pinging

ping output

64 bytes from 192.168.70.157: icmp_req=165 ttl=64 time=0.597 ms 64 bytes from 192.168.70.157: icmp_req=166 ttl=64 time=0.516 ms 64 bytes from 192.168.70.157: icmp_req=167 ttl=64 time=0.621 ms 64 bytes from 192.168.70.157: icmp_req=168 ttl=64 time=0.468 ms 64 bytes from 192.168.70.157: icmp_req=169 ttl=64 time=0.633 m

dhanasekaran ~ $ ssh -i test.pem -l ubuntu 192.168.70.157 ssh: connect to host 192.168.70.157 port 22: No route to host

root@controllernode:~# nova list +--------------------------------------+--------+--------+----------------------------------------+ | ID | Name | Status | Networks | +--------------------------------------+--------+--------+----------------------------------------+ | 3c645492-3ebe-49d0-95c5-0931cb43be3a | ubu | ACTIVE | net_proj_one=50.50.1.2, 192.168.70.157 | | a25edf39-0408-41b7-acd4-a89239f687b3 | ubuntu | ACTIVE | net_proj_one=50.50.1.4, 192.168.70.161 | +--------------------------------------+--------+--------+----------------------------------------+

root@controllernode:~# nova-manage service list Binary Host Zone Status State Updated_At nova-cert controllernode internal enabled :-) 2013-05-29 14:14:39 nova-conductor controllernode internal enabled :-) 2013-05-29 14:14:32 nova-scheduler controllernode internal enabled :-) 2013-05-29 14:14:32 nova-consoleauth controllernode internal enabled :-) 2013-05-29 14:14:39 nova-compute computenode nova enabled :-) 2013-05-29 14:14:40 nova-compute computnodetwo nova enabled :-) 2013-05-29 14:14:37

Please guide me How to fix this.

-Dhanasekaran.