Skip to content

Instantly share code, notes, and snippets.

@jjasghar
Created February 18, 2015 18:25
Show Gist options
  • Save jjasghar/a7229c192ff3d2569077 to your computer and use it in GitHub Desktop.
Save jjasghar/a7229c192ff3d2569077 to your computer and use it in GitHub Desktop.
================================================================================
Error executing action `start` on resource 'service[nova-api-metadata]'
================================================================================
Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '1'
---- Begin output of /bin/systemctl start openstack-nova-metadata-api ----
STDOUT:
STDERR: Job for openstack-nova-metadata-api.service failed. See 'systemctl status openstack-nova-metadata-api.service' and 'journalctl -xn' for details.
---- End output of /bin/systemctl start openstack-nova-metadata-api ----
Ran /bin/systemctl start openstack-nova-metadata-api returned 1
Resource Declaration:
---------------------
# In /var/chef/cache/cookbooks/openstack-compute/recipes/api-metadata.rb
45: service 'nova-api-metadata' do
46: service_name platform_options['compute_api_metadata_service']
47: supports status: true, restart: true
48: subscribes :restart, resources('template[/etc/nova/nova.conf]')
49:
50: action [:enable, :start]
51: end
52:
Compiled Resource:
------------------
# Declared in /var/chef/cache/cookbooks/openstack-compute/recipes/api-metadata.rb:45:in `from_file'
service("nova-api-metadata") do
action [:enable, :start]
updated true
supports {:status=>true, :restart=>true}
retries 0
retry_delay 2
default_guard_interpreter :default
service_name "openstack-nova-metadata-api"
enabled true
pattern "nova-api-metadata"
declared_type :service
cookbook_name "openstack-compute"
recipe_name "api-metadata"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment