[OpenStack-Devstack]: Error: Service n-net is not running when executing stack.sh

Updated on September 2, 2017

If you are stuck with an error “Service n-net is not running” while installing OpenStack using Devstack, then here’s how you can fix the issue.

+functions-common:service_check:1674 echo 'Error: Service n-net is not running'
Error: Service n-net is not running
+functions-common:service_check:1677 '[' -n /opt/stack/status/stack/n-net.failure ']'
+functions-common:service_check:1678 die 1678 'More details about the above errors can be found with screen'

Solution: Check if n-net is enabled in ENABLED_SERVICES attribute in the local configuration file localrc at the compute node.

ENABLED_SERVICES=n-cpu,n-net

You may delete the line or install n-net service.

Was this article helpful?

Related Articles

Leave a Comment