<div dir="ltr">Thank you for your answer Clint.<div><br></div><div><div>I try to debug .and, <span style="font-family:Arial,sans-serif;font-size:14px"> </span><span style="font-family:Arial,sans-serif;font-size:14px">I set up TripleO by real hadware to use.</span></div>

</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/10/1 Clint Byrum <span dir="ltr"><<a href="mailto:clint@fewbar.com" target="_blank">clint@fewbar.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Excerpts from hideyasu hayashi's message of 2013-09-30 18:29:24 -0700:<br>
<div><div class="h5">> Dear List,<br>
><br>
><br>
><br>
>  Hi, I set up TripleO devtest environment on VMware(Ubuntu 12.04.3 LTS)<br>
> according to devtest described in<br>
> <a href="http://docs.openstack.org/developer/tripleo-incubator/devtest.html" target="_blank">http://docs.openstack.org/developer/tripleo-incubator/devtest.html</a><br>
><br>
><br>
><br>
>  There are 50 steps. I set up following the procedures, but it fails.<br>
><br>
>  Does anyone know how to debug?<br>
><br>
>  If anyone was successful, tell me your enviroment.(OS..)<br>
><br>
><br>
><br>
>  (TripleO devtest URL)<br>
><br>
>  <a href="http://docs.openstack.org/developer/tripleo-incubator/devtest.html" target="_blank">http://docs.openstack.org/developer/tripleo-incubator/devtest.html</a><br>
><br>
><br>
><br>
>   (Failed detail)<br>
><br>
><br>
><br>
>  We are failed in step 27th, that create UnderCloud Stack with Heat.<br>
><br>
><br>
><br>
>  --27. Deploy an undercloud: -----------------<br>
><br>
>   heat stack-create -f<br>
> $TRIPLEO_ROOT/tripleo-heat-templates/undercloud-vm.yaml \<br>
><br>
>     -P<br>
> "PowerUserName=$(whoami);AdminToken=${UNDERCLOUD_ADMIN_TOKEN};AdminPassword=${UNDERCLOUD_ADMIN_PASSWORD};GlancePassword=${UNDERCLOUD_GLANCE_PASSWORD};HeatPassword=${UNDERCLOUD_HEAT_PASSWORD};NeutronPassword=${UNDERCLOUD_NEUTRON_PASSWORD};NovaPassword=${UNDERCLOUD_NOVA_PASSWORD};BaremetalArch=${NODE_ARCH}"<br>

> \<br>
><br>
>     undercloud<br>
><br>
>  ----------------------------------------<br>
><br>
><br>
><br>
>  I had run the command "heat stack-create -f $TRIPLEO_ROOT/tripleo..",but<br>
>  stack_staus result an  failed.<br>
><br>
><br>
><br>
>   ---- heat creat result ------------------------<br>
><br>
>   root@ubuntu:~/tripleo# heat stack-list<br>
><br>
><br>
> +--------------------------------------+-------------+---------------+----------------------+<br>
><br>
>   | id                                   | stack_name  | stack_status  |<br>
> creation_time        |<br>
><br>
><br>
> +--------------------------------------+-------------+---------------+----------------------+<br>
><br>
>   | c28d0e20-9270-4716-9b0c-ce7b80c96dab | undercloud  | CREATE_FAILED |<br>
> 2013-09-25T09:24:37Z |<br>
><br>
><br>
> +--------------------------------------+-------------+---------------+----------------------+<br>
><br>
<br>
</div></div>Hello Hideyasu, thanks for trying out TripleO!<br>
<br>
The usual cause of a failure at this point is failing SSH from seed VM<br>
to host.<br>
<br>
Commands to debug:<br>
<br>
## show the list of events and the specific resource that failed.<br>
heat event-list undercloud<br>
<br>
## show the error message that caused the failure<br>
heat event-show undercloud resource_name event_id<br>
<br>
Now, most likely, you have an error on the creation of the "notcompute"<br>
resource. If so, you will have a server in ERROR state here:<br>
<br>
## list my servers<br>
nova list<br>
<br>
If so, try<br>
<br>
# Show details about the server<br>
nova show server_id<br>
<br>
This may or may not be helpful, as many problems boil down to "I couldn't<br>
find a host to deploy to".<br>
<br>
You can look on the seed VM for clues in<br>
/var/log/upstart/nova-compute.log.<br>
<br>
It takes 60 seconds to see the registered baremetal nodes in the nova<br>
scheduler, so just deleting the stack and trying again can work. This is<br>
likely since you are running a nested VM, so timeouts are common because<br>
everything takes a _lot_ longer on nested vms. I highly recommend getting<br>
real hardware to use if you can.<br>
<br>
## delete stack<br>
heat stack-delete undercloud<br>
<br>
I hope all of this helps.<br>
<br>
_______________________________________________<br>
OpenStack-dev mailing list<br>
<a href="mailto:OpenStack-dev@lists.openstack.org">OpenStack-dev@lists.openstack.org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev</a><br>
</blockquote></div><br></div>