Hi Jorge, Those were exactly what I was looking for and were missing in devstack. Thanks for providing it!
mkdir -p /var/log/keystone/ should be added to startnova.sh I tried startnova.sh but it has either crashed the machine or disconnected the network access- it doesn't reply to ping and can't login to it :( Please see below: localadmin@k:/opt/stack$ sudo ./startnova.sh Starting rabbitmq-server: RabbitMQ is currently running rabbitmq-server. Waiting for g-api to start... {"versions": [{"status": "CURRENT", "id": "v1.1", "links": [{"href": "http://127.0.0.1:9292/v1/", "rel": "self"}]}, {"status": "SUPPORTED", "id": "v1.0", "lin ks": [{"href": "http://127.0.0.1:9292/v1/", "rel": "self"}]}]}Waiting for keystone to start... { "version" : { "id" : "v2.0", "status" : "ALPHA", "updated" : "2011-11-19T00:00:00Z", "links": [ { "rel" : "self", "href" : "http://127.0.0.1:5000/v2.0/" }, { "rel" : "describedby", "type" : "text/html", "href" : "http://docs.openstack.org/api/openstack-identity-service/2.0/content/" }, { "rel" : "describedby", "type" : "application/pdf", "href" : "http://docs.openstack.org/api/openstack-identity-service/2.0/identity-dev-guide-2.0.pdf" }, { "rel" : "describedby", "type" : "application/vnd.sun.wadl+xml", "href" : "http://127.0.0.1:5000/v2.0/identity.wadl" } ], "media-types": [ { "base" : "application/xml", "type" : "application/vnd.openstack.identity-v2.0+xml" }, { "base" : "application/json", "type" : "application/vnd.openstack.identity-v2.0+json" } ] } } Waiting for nova-api to start... {"versions": [{"status": "CURRENT", "updated": "2011-01-21T11:33:21Z", "id": "v2.0", "links": [{"href": "http://127.0.0.1:8774/v2/", "rel": "self"}]}]}localad min@k:/opt/stack$ I have to reboot my machine. On Thu, Jan 26, 2012 at 2:30 PM, Jorge Luiz Correa <corre...@gmail.com> wrote: > I've created a script. Test if it helps you. You have to create the > /var/log/nova dir. > > mkdir -p /var/log/nova > > __________ > startnova.sh: > > #!/bin/bash > > service rabbitmq-server start > > cd /opt/stack/glance/bin > ./glance-registry --config-file=../etc/glance-registry.conf > > /var/log/nova/glance-registry.log 2>&1 & > > cd /opt/stack/glance/bin > ./glance-api --config-file=../etc/glance-api.conf > > /var/log/nova/glance-registry.log 2>&1 & > echo "Waiting for g-api to start..." > if ! timeout 60 sh -c "while ! wget --no-proxy -q -O- http://127.0.0.1:9292; > do sleep 1; done"; then > echo "g-api did not start" > exit 1 > fi > > cd /opt/stack/keystone/bin > ./keystone --config-file ../etc/keystone.conf -d > > /var/log/keystone/keystone.log 2>&1 & > echo "Waiting for keystone to start..." > if ! timeout 60 sh -c "while ! wget --no-proxy -q -O- http://127.0.0.1:5000; > do sleep 1; done"; then > echo "keystone did not start" > exit 1 > fi > > cd /opt/stack/nova/bin > ./nova-api > /var/log/nova/nova-api.log 2>&1 & > echo "Waiting for nova-api to start..." > if ! timeout 60 sh -c "while ! wget --no-proxy -q -O- http://127.0.0.1:8774; > do sleep 1; done"; then > echo "nova-api did not start" > exit 1 > fi > > cd /opt/stack/nova/bin > ./nova-scheduler > /var/log/nova/nova-scheduler.log 2>&1 & > > cd /opt/stack/noVNC > ./utils/nova-wsproxy.py --flagfile /opt/stack/nova/bin/nova.conf --web . > 6080 > /var/log/nova/nova-wsproxy.log 2>&1 & > > cd /opt/stack/nova/bin > ./nova-network > /var/log/nova/nova-network.log 2>&1 & > > ./nova-volume > /var/log/nova/nova-volume.log 2>&1 & > ./nova-compute > /var/log/nova/nova-compute.log 2>&1 & > > _______ > > To stop nova services, you can use something like that (include all services > you run): > > __________ > stopnova.sh: > > #!/bin/bash > > kill -9 `ps aux | grep -v grep | grep nova-api | awk '{print $2}'` > kill -9 `ps aux | grep -v grep | grep nova-scheduler | awk '{print $2}'` > kill -9 `ps aux | grep -v grep | grep nova-wsproxy.py | awk '{print $2}'` > kill -9 `ps aux | grep -v grep | grep keystone | awk '{print $2}'` > service rabbitmq-server stop > > > Regards. > > On Thu, Jan 26, 2012 at 5:02 PM, Joe Smithian <joe.smith...@gmail.com> > wrote: >> >> Hi All, >> >> The devstack document doesn't explain how to start/stop services, >> maybe it's obvious for the devstack developers but not for a new user >> like me! I can't use commands like "restart nova-api" because they >> are not installed. >> >> I installed OpenStack using devsatck stack.sh script >> (http://devstack.org/) on Ubuntu 11.10. Installation was successful >> and I was able to login to Dahsboard; but it doesn't work anymore, I >> think after I changed the IP address of the machine and moved it to >> another network. >> Apache2 is running but the nova and keystone services are not running. >> >> Can any one please explain how to start/restart/stop all the services >> after installing devstack? >> This should be added to the devstack documents. >> >> Thanks >> >> Joe >> >> _______________________________________________ >> Mailing list: https://launchpad.net/~openstack >> Post to : openstack@lists.launchpad.net >> Unsubscribe : https://launchpad.net/~openstack >> More help : https://help.launchpad.net/ListHelp > > > > > -- > - MSc. Correa, J.L. > > > _______________________________________________ > Mailing list: https://launchpad.net/~openstack > Post to : openstack@lists.launchpad.net > Unsubscribe : https://launchpad.net/~openstack > More help : https://help.launchpad.net/ListHelp > _______________________________________________ Mailing list: https://launchpad.net/~openstack Post to : openstack@lists.launchpad.net Unsubscribe : https://launchpad.net/~openstack More help : https://help.launchpad.net/ListHelp