Comment by DanIzack for here's a hack you can use to restart one subsystem:...
Your script seems not to keep correct order of restarting for nova and neutron services.
View ArticleAnswer by don for I have OpenStack Havanna installed in Ubuntu 12.04 Server...
here's a hack you can use to restart one subsystem: #!/bin/bash srv=$1 if [ $# -eq 2 ] then action=$2 else action=restart fi echo usage action $action cd /etc/init/; for i in $(ls $srv-* | cut -d \. -f...
View ArticleAnswer by jscheponik for I have OpenStack Havanna installed in Ubuntu 12.04...
sudo service xxxx stop sudo service xxxx start where xxxx is the name of a running service http://docs.openstack.org/trunk/install-guide/install/apt/content/ should have most of the services you need...
View ArticleComment by mani619cash for Restart Compute services: # service...
I rebooted the OS, none of the OpenStack service is running now ...
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
You can start/stop system defined services. If running stack.sh didn't make default nova services definitions, you obviously have nothing to manage. I suggest rerun stack.sh carefully watching place...
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
Per http://sayalilunkad.github.io/posts/Devstack/ By default the following services are enabled when you install OpenStack using Devstack: Nova (API, Certificate, Object Store, Compute, Network,...
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
I beleve per http://sayalilunkad.github.io/posts/Devstack/ Now we will see how to enable the other services in OpenStack. Some services that are not enabled by default are given below. Select the...
View ArticleComment by mani619cash for Restart Compute services: # service...
Yes I think they are unregistered. .. . Here is screenshot of that. http://postimg.org/image/86uflktj3/
View ArticleComment by mani619cash for Restart Compute services: # service...
unrecognized services
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
$ sudo apt-get install bum $ sudo bum Search for services name in bum's panel
View ArticleComment by mani619cash for Restart Compute services: # service...
service --status-all | grep nova but there is not service listed nova ... I am running OpenStack that was installed using DevStack
View ArticleComment by mani619cash for Restart Compute services: # service...
I dont want to install again ... I have already installed using DevStack on Ubuntu 12.04 Server ...
View ArticleComment by mani619cash for Restart Compute services: # service...
I told you it is devstack based installation ... I think it something like getting into the screen of stack.sh (I know my wording is not good, m not expert) and then doing something with services
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
Please source tenants credentials and run :- $ nova-manage service list $ neutron agent-list
View ArticleComment by mani619cash for Restart Compute services: # service...
Dear, this is the conf file when installing OpenStack using DevStack ... My question is how to start/stop DevStack based OpenStack's individual services ???
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
What is going to happen if you shutdown yours devstack created instance and then try to bring it up ? Or just reboot the OS ? How expect your nova process to restart ? Due to what ?
View ArticleComment by mani619cash for Restart Compute services: # service...
inside /etc/init.d/ there is no NOVA file
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
Have /etc/init.d/nova-* start/stop scripts been created ?
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
It's on Fedora 20, on Ubuntu services names might differ. Try just nova-api and so on.
View ArticleComment by dbaxps for Restart Compute services: # service openstack-nova-api...
On ubuntu run # service --status-all | grep nova # service --status-all | grep neutron To get service names specific to OS
View Article