Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- OPENSTACK_HYPERVISOR_FEATURES = {
- - 'can_set_mount_point': False,
- - 'can_set_password': True,
- -
- - # NOTE: as of Grizzly this is not yet supported in Nova so enabling this
- - # setting will not do anything useful
- - 'can_encrypt_volumes': False
- + 'can_set_mount_point': True,
- }
- # The OPENSTACK_NEUTRON_NETWORK settings can be used to enable optional
- @@ -169,8 +168,9 @@
- 'enable_lb': False,
- 'enable_firewall': False,
- 'enable_quotas': True,
- + 'enable_security_group': True,
- 'enable_vpn': False,
- - # The profile_support option is used to detect if an external router can be
- + # The profile_support option is used to detect if an externa lrouter can be
- # configured via the dashboard. When using specific plugins the
- # profile_support can be turned on if needed.
- 'profile_support': None,
- @@ -217,6 +217,9 @@
- # of your entire OpenStack installation, and hopefully be in UTC.
- TIME_ZONE = "UTC"
- +# If you have external monitoring links, eg:
- +
- +
- # When launching an instance, the menu of available flavors is
- # sorted by RAM usage, ascending. Provide a callback method here
- # (and/or a flag for reverse sort) for the sorted() method if you'd
- @@ -233,14 +236,18 @@
- # target installation.
- # Path to directory containing policy.json files
- -# POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
- +#POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
- +
- POLICY_FILES_PATH = '/etc/openstack-dashboard'
- +
- # Map of local copy of service policy files
- +
- POLICY_FILES = {
- 'identity': 'keystone_policy.json',
- 'compute': 'nova_policy.json'
- }
- +
- # Trove user and database extension support. By default support for
- # creating users and databases on database instances is turned on.
- # To disable these extensions set the permission here to something
- @@ -255,6 +262,12 @@
- # if nothing is specified here and disable_existing_loggers is True,
- # django.db.backends will still log unless it is disabled explicitly.
- 'disable_existing_loggers': False,
- + 'formatters': {
- + 'verbose': {
- + 'format': '%(asctime)s %(process)d %(levelname)s %(name)s '
- + '%(message)s'
- + },
- + },
- 'handlers': {
- 'null': {
- 'level': 'DEBUG',
- @@ -265,6 +278,12 @@
- 'level': 'INFO',
- 'class': 'logging.StreamHandler',
- },
- + 'file': {
- + 'level': 'DEBUG',
- + 'class': 'logging.FileHandler',
- + 'filename': '/var/log/horizon/horizon.log',
- + 'formatter': 'verbose',
- + },
- },
- 'loggers': {
- # Logging from django.db.backends is VERY verbose, send to null
- @@ -278,79 +297,103 @@
- 'propagate': False,
- },
- 'horizon': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'openstack_dashboard': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'novaclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'cinderclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'keystoneclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'glanceclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'neutronclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'heatclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'ceilometerclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'troveclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'swiftclient': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'openstack_auth': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'nose.plugins.manager': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- 'django': {
- - 'handlers': ['console'],
- + # 'handlers': ['console'],
- + 'handlers': ['file'],
- + # 'level': 'DEBUG',
- 'level': 'DEBUG',
- 'propagate': False,
- },
- - 'iso8601': {
- - 'handlers': ['null'],
- - 'propagate': False,
- - },
- }
- }
- @@ -442,8 +485,8 @@
- 'ms_sql': {
- 'name': 'MS SQL',
- 'ip_protocol': 'tcp',
- - 'from_port': '1433',
- - 'to_port': '1433',
- + 'from_port': '1443',
- + 'to_port': '1443',
- },
- 'mysql': {
- 'name': 'MYSQL',
- @@ -458,3 +501,12 @@
- 'to_port': '3389',
- },
- }
- +
- +LOGIN_URL = '/dashboard/auth/login/'
- +LOGOUT_URL = '/dashboard/auth/logout/'
- +LOGIN_REDIRECT_URL = '/dashboard'
- +
- +# The Ubuntu package includes pre-compressed JS and compiled CSS to allow
- +# offline compression by default. To enable online compression, install
- +# the node-less package and enable the following option.
- +COMPRESS_OFFLINE = True
- Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Filebucketed /etc/openstack-dashboard/local_settings to puppet with sum 2cfcd9cb02ebc0f4715ffa41302253cb
- Notice: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]/content: content changed '{md5}2cfcd9cb02ebc0f4715ffa41302253cb' to '{md5}2da50309da55e16fdfe614312445296f'
- Notice: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]/mode: mode changed '0640' to '0644'
- Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Scheduling refresh of Service[httpd]
- Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Scheduling refresh of Service[httpd]
- Notice: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]/ensure: created
- Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Exec[ceilometer-dbsync]
- Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Exec[ceilometer-dbsync]
- Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Triggered 'refresh' from 2 events
- Info: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Ceilometer::Collector/Package[ceilometer-collector]/ensure: created
- Notice: /Stage[main]/Swift::Ringbuilder/Swift::Ringbuilder::Create[account]/Exec[create_account]/returns: executed successfully
- Notice: /Stage[main]/Swift::Ringserver/Rsync::Server::Module[swift_server]/File[/etc/rsync.d/frag-swift_server]/ensure: defined content as '{md5}7fae4818c72b8e958b2f3fcbe3c76d82'
- Info: /Stage[main]/Swift::Ringserver/Rsync::Server::Module[swift_server]/File[/etc/rsync.d/frag-swift_server]: Scheduling refresh of Exec[compile fragments]
- Notice: /Stage[main]/Rsync::Server/Exec[compile fragments]: Triggered 'refresh' from 2 events
- Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]/ensure: created
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Horizon/File_line[httpd_listen_on_bind_address_80]/ensure: created
- Info: /Stage[main]/Horizon/File_line[httpd_listen_on_bind_address_80]: Scheduling refresh of Service[httpd]
- Notice: /Stage[main]/Cinder/Package[cinder]/ensure: created
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/File[/etc/cinder/cinder.conf]/owner: owner changed 'root' to 'cinder'
- Notice: /Stage[main]/Cinder/File[/etc/cinder/cinder.conf]/mode: mode changed '0640' to '0600'
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/File[/etc/cinder/api-paste.ini]/owner: owner changed 'root' to 'cinder'
- Notice: /Stage[main]/Cinder/File[/etc/cinder/api-paste.ini]/mode: mode changed '0640' to '0600'
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]/ensure: created
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]/ensure: created
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Mysql::Config/File[/etc/mysql]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/File[/etc/mysql]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Config/File[/etc/my.cnf]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/File[/etc/my.cnf]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Config/File[/etc/mysql/conf.d]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/File[/etc/mysql/conf.d]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Config/Exec[set_mysql_rootpw]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/Exec[set_mysql_rootpw]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Config/File[/root/.my.cnf]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/File[/root/.my.cnf]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Config/Exec[mysqld-restart]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Config/Exec[mysqld-restart]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]/ensure: created
- Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]/ensure: created
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]/ensure: created
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]/ensure: created
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]/ensure: created
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[root@oh-havana-controller]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[root@oh-havana-controller]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[root@::1]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[root@::1]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database[glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database[glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_user[glance@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_user[glance@%]: Skipping because of failed dependencies
- Error: Could not prefetch database_grant provider 'mysql': Execution of '/usr/bin/mysql --defaults-file=/root/.my.cnf mysql -Be describe user' returned 1: Could not open required defaults file: /root/.my.cnf
- Fatal error in defaults handling. Program aborted
- Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_grant[glance@%/glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_grant[glance@%/glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@localhost]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@localhost]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller.scl.lab.tlv.redhat.com]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller.scl.lab.tlv.redhat.com]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database[nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database[nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_user[nova@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_user[nova@%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_grant[nova@%/nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_grant[nova@%/nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database[cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database[cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_grant[[email protected]/cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_grant[[email protected]/cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database[test]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database[test]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_user[cinder@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_user[cinder@%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_grant[cinder@%/cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_grant[cinder@%/cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_grant[[email protected]/nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_grant[[email protected]/nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Anchor[nova-start]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Anchor[nova-start]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Package[nova-common]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Package[nova-common]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_extension_sync_interval]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_extension_sync_interval]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/network_api_class]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/network_api_class]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/debug]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/debug]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_hostname]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_hostname]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_min]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_min]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/memcached_servers]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/memcached_servers]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Group[nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Group[nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_default_tenant_id]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_default_tenant_id]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_auth_url]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_auth_url]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/glance_api_servers]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/glance_api_servers]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_host]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_host]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ca_certificates_file]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ca_certificates_file]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/state_path]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/state_path]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_username]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_username]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_region_name]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_region_name]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/verbose]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/verbose]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/security_group_api]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/security_group_api]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[database/idle_timeout]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[database/idle_timeout]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer/User[ceilometer]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer/User[ceilometer]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer/File[/etc/ceilometer/]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer/File[/etc/ceilometer/]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_password]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_password]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_timeout]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_timeout]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url_timeout]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url_timeout]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/image_service]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/image_service]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/firewall_driver]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/firewall_driver]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_password]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_password]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/logdir]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/logdir]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_port]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_port]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[database/connection]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[database/connection]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_auth_strategy]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_auth_strategy]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/User[nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/User[nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/File[/var/log/nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/File[/var/log/nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_max]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_max]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ovs_bridge]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ovs_bridge]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_heartbeat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_heartbeat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_tenant_name]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_tenant_name]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/lock_path]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/lock_path]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_limit]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_limit]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/service_down_time]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/service_down_time]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_protocol]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_protocol]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_listen]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_listen]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_port]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_port]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/ec2_listen]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/ec2_listen]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_password]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_password]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_user]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_user]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_protocol]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_protocol]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/enabled_apis]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/enabled_apis]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/volume_api_class]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/volume_api_class]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/neutron_metadata_proxy_shared_secret]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/neutron_metadata_proxy_shared_secret]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_host]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_host]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_admin_prefix]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_admin_prefix]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_tenant_name]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_tenant_name]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/service_neutron_metadata_proxy]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/service_neutron_metadata_proxy]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/use_forwarded_for]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/use_forwarded_for]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_volume_listen]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_volume_listen]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/metadata_listen]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/metadata_listen]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/auth_strategy]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/auth_strategy]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_workers]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_workers]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/rootwrap_config]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/rootwrap_config]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/rpc_backend]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/rpc_backend]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_tcp_nodelay]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_tcp_nodelay]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/use_syslog]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/use_syslog]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_port]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_port]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_uri]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_uri]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database[heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database[heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_user[heat@localhost]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_user[heat@localhost]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_user[heat@%%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_user[heat@%%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_grant[heat@localhost/heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_grant[heat@localhost/heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_grant[heat@%%/heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_grant[heat@%%/heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer/File[/etc/ceilometer/ceilometer.conf]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer/File[/etc/ceilometer/ceilometer.conf]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database[neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database[neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_user[neutron@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_user[neutron@%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_grant[neutron@%/neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_grant[neutron@%/neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database[keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database[keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_user[keystone@%]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_user[keystone@%]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_grant[[email protected]/keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_grant[[email protected]/keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_grant[keystone@%/keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_grant[keystone@%/keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_username]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_username]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/File[/etc/nova/nova.conf]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/File[/etc/nova/nova.conf]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_user[[email protected]]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_grant[[email protected]/glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_grant[[email protected]/glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]/ensure: created
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Service[cinder-api]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Exec[cinder-manage db_sync]
- Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Service[cinder-scheduler]
- Notice: /Stage[main]/Cinder::Api/Service[cinder-api]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Cinder::Api/Service[cinder-api]: Unscheduling refresh on Service[cinder-api]
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:25:46.320 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:25:56.331 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:06.341 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:16.348 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:26.350 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 6 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:36.352 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 5 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:46.360 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 4 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:26:56.366 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 3 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:06.371 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 2 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:16.375 3960 WARNING cinder.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 1 attempts left.
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 CRITICAL cinder [-] (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder Traceback (most recent call last):
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/bin/cinder-manage", line 543, in <module>
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder main()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/bin/cinder-manage", line 540, in main
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder fn(*fn_args)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/bin/cinder-manage", line 225, in sync
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return migration.db_sync(version)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib/python2.7/site-packages/cinder/db/migration.py", line 30, in db_sync
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return IMPL.db_sync(version=version)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib/python2.7/site-packages/cinder/db/sqlalchemy/migration.py", line 41, in db_sync
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder current_version = db_version()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib/python2.7/site-packages/cinder/db/sqlalchemy/migration.py", line 53, in db_version
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return versioning_api.db_version(get_engine(), repository)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib/python2.7/site-packages/cinder/openstack/common/db/sqlalchemy/session.py", line 498, in get_engine
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder sqlite_fk=sqlite_fk)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib/python2.7/site-packages/cinder/openstack/common/db/sqlalchemy/session.py", line 616, in create_engine
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder engine.connect()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 1641, in connect
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return self._connection_cls(self, **kwargs)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 59, in __init__
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder self.__connection = connection or engine.raw_connection()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 1699, in raw_connection
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return self.pool.unique_connection()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 220, in unique_connection
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return _ConnectionFairy(self).checkout()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 431, in __init__
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder rec = self._connection_record = pool._do_get()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 772, in _do_get
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return self._create_connection()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 225, in _create_connection
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return _ConnectionRecord(self)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 318, in __init__
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder self.connection = self.__connect()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 379, in __connect
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder connection = self.__pool._creator()
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/strategies.py", line 80, in connect
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return dialect.connect(*cargs, **cparams)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/default.py", line 283, in connect
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return self.dbapi.connect(*cargs, **cparams)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/MySQLdb/__init__.py", line 81, in Connect
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return Connection(*args, **kwargs)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder File "/usr/lib64/python2.7/site-packages/MySQLdb/connections.py", line 187, in __init__
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder super(Connection, self).__init__(*args, **kwargs2)
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder OperationalError: (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder
- Error: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: Failed to call refresh: cinder-manage db sync returned 1 instead of one of [0]
- Error: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: cinder-manage db sync returned 1 instead of one of [0]
- Notice: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Triggered 'refresh' from 34 events
- Notice: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/admin_tenant_name]/ensure: created
- Info: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[neutron-server]
- Notice: /Stage[main]/Neutron/Neutron_config[DEFAULT/qpid_port]/ensure: created
- Info: /Stage[main]/Neutron/Neutron_config[DEFAULT/qpid_port]: Scheduling refresh of Service[neutron-server]
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: No handlers could be found for logger "neutron.common.legacy"
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: Traceback (most recent call last):
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/bin/neutron-db-manage", line 10, in <module>
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: sys.exit(main())
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/neutron/db/migration/cli.py", line 143, in main
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: CONF.command.func(config, CONF.command.name)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/neutron/db/migration/cli.py", line 80, in do_upgrade_downgrade
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: do_alembic_command(config, cmd, revision, sql=CONF.command.sql)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/neutron/db/migration/cli.py", line 59, in do_alembic_command
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: getattr(alembic_command, cmd)(config, *args, **kwargs)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/alembic/command.py", line 123, in upgrade
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: script.run_env()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/alembic/script.py", line 193, in run_env
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: util.load_python_file(self.dir, 'env.py')
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/alembic/util.py", line 177, in load_python_file
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: module = imp.load_source(module_id, path, open(path, 'rb'))
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/neutron/db/migration/alembic_migrations/env.py", line 105, in <module>
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: run_migrations_online()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib/python2.7/site-packages/neutron/db/migration/alembic_migrations/env.py", line 80, in run_migrations_online
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: connection = engine.connect()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 1641, in connect
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self._connection_cls(self, **kwargs)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 59, in __init__
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: self.__connection = connection or engine.raw_connection()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/base.py", line 1699, in raw_connection
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self.pool.unique_connection()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 220, in unique_connection
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return _ConnectionFairy(self).checkout()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 431, in __init__
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: rec = self._connection_record = pool._do_get()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 871, in _do_get
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self._create_connection()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 225, in _create_connection
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return _ConnectionRecord(self)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 318, in __init__
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: self.connection = self.__connect()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/pool.py", line 379, in __connect
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: connection = self.__pool._creator()
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/strategies.py", line 80, in connect
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return dialect.connect(*cargs, **cparams)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/sqlalchemy/engine/default.py", line 283, in connect
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self.dbapi.connect(*cargs, **cparams)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/MySQLdb/__init__.py", line 81, in Connect
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return Connection(*args, **kwargs)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/lib64/python2.7/site-packages/MySQLdb/connections.py", line 187, in __init__
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: super(Connection, self).__init__(*args, **kwargs2)
- Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: sqlalchemy.exc.OperationalError: (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Error: neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini upgrade head returned 1 instead of one of [0]
- Error: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: change from notrun to 0 failed: neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini upgrade head returned 1 instead of one of [0]
- Notice: /Stage[main]/Apache::Mod::Default/Apache::Mod[actions]/A2mod[actions]/ensure: created
- Info: /Stage[main]/Apache::Mod::Default/Apache::Mod[actions]/A2mod[actions]: Scheduling refresh of Service[httpd]
- Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[10.35.161.188]/Database_grant[[email protected]/glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Package[nova-api]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Package[nova-api]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_tenant_name]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_tenant_name]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_uri]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_uri]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_user]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_user]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_port]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_port]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_password]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_password]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_admin_prefix]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_admin_prefix]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_protocol]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_protocol]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_host]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_host]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova/Exec[post-nova_config]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova/Exec[post-nova_config]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Api/Exec[nova-db-sync]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Exec[nova-db-sync]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Triggered 'refresh' from 1 events
- Notice: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Triggered 'refresh' from 1 events
- Notice: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Service[nova-api]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Service[nova-api]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Triggered 'refresh' from 1 events
- Notice: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Triggered 'refresh' from 1 events
- Notice: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/auth_host]/ensure: created
- Info: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/auth_host]: Scheduling refresh of Service[neutron-server]
- Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_grant[[email protected]/neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_grant[[email protected]/neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]/ensure: created
- Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Service[keystone]
- Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Exec[keystone-manage db_sync]
- Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Exec[keystone-manage pki_setup]
- Notice: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone/Exec[keystone-manage db_sync]/returns: 2014-02-04 12:27:30.959 4048 CRITICAL keystone [-] (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Error: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Failed to call refresh: keystone-manage db_sync returned 1 instead of one of [0]
- Error: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: keystone-manage db_sync returned 1 instead of one of [0]
- Notice: /Stage[main]/Keystone/Exec[keystone-manage pki_setup]: Triggered 'refresh' from 14 events
- Info: /Stage[main]/Keystone/Exec[keystone-manage pki_setup]: Scheduling refresh of Service[keystone]
- Notice: /Stage[main]/Keystone/Service[keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone/Service[keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone/Service[keystone]: Triggered 'refresh' from 19 events
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[_member_]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[_member_]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_service[ceilometer]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_service[ceilometer]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_role[ResellerAdmin]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_role[ResellerAdmin]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[Member]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[Member]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_role[SwiftOperator]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_role[SwiftOperator]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_endpoint[RegionOne/ceilometer]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_endpoint[RegionOne/ceilometer]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_user[heat]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_user[heat]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_user_role[heat@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_user_role[heat@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_role[heat_stack_user]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_role[heat_stack_user]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat-cfn]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat-cfn]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user[ceilometer]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user[ceilometer]: Skipping because of failed dependencies
- Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user_role[ceilometer@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user_role[ceilometer@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Skipping because of failed dependencies
- Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Skipping because of failed dependencies
- Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat-cfn]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat-cfn]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift_s3]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift_s3]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift_s3]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift_s3]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Dependency Service[mysqld] has failures: true
- Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Dependency Exec[neutron-db-manage upgrade] has failures: true
- Warning: /Stage[main]/Neutron::Server/Service[neutron-server]: Skipping because of failed dependencies
- Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Triggered 'refresh' from 53 events
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_user[swift]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_user[swift]: Skipping because of failed dependencies
- Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_user_role[swift@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_user_role[swift@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]/ensure: created
- Info: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]: Scheduling refresh of Exec[glance-manage db_sync]
- Info: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]: Scheduling refresh of Service[glance-api]
- Notice: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]/returns: 2014-02-04 12:27:34.136 4097 CRITICAL glance [-] (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Error: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: Failed to call refresh: glance-manage db_sync returned 1 instead of one of [0]
- Error: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: glance-manage db_sync returned 1 instead of one of [0]
- Notice: /Stage[main]/Glance::Registry/Service[glance-registry]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Registry/Service[glance-registry]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Registry/Service[glance-registry]: Triggered 'refresh' from 15 events
- Notice: /Stage[main]/Glance::Api/Service[glance-api]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Glance::Api/Service[glance-api]: Skipping because of failed dependencies
- Notice: /Stage[main]/Glance::Api/Service[glance-api]: Triggered 'refresh' from 24 events
- Notice: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]/ensure: created
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-collector]
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-agent-central]
- Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-api]
- Notice: /Stage[main]/Ceilometer::Collector/Service[ceilometer-collector]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Ceilometer::Collector/Service[ceilometer-collector]: Unscheduling refresh on Service[ceilometer-collector]
- Notice: /Stage[main]/Ceilometer::Agent::Central/Service[ceilometer-agent-central]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Ceilometer::Agent::Central/Service[ceilometer-agent-central]: Unscheduling refresh on Service[ceilometer-agent-central]
- Notice: /Stage[main]/Ceilometer::Api/Service[ceilometer-api]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Ceilometer::Api/Service[ceilometer-api]: Unscheduling refresh on Service[ceilometer-api]
- Notice: /Stage[main]/Apache::Mod::Cgi/Apache::Mod[cgi]/A2mod[cgi]/ensure: created
- Info: /Stage[main]/Apache::Mod::Cgi/Apache::Mod[cgi]/A2mod[cgi]: Scheduling refresh of Service[httpd]
- Notice: /Stage[main]/Heat/User[heat]/groups: groups changed '' to 'heat'
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:27:40.110 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:27:50.121 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:00.124 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:10.131 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:20.141 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 6 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:30.149 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 5 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:40.158 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 4 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:28:50.165 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 3 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:29:00.170 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 2 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: 2014-02-04 12:29:10.179 4284 WARNING heat.openstack.common.db.sqlalchemy.session [-] SQL connection failed. 1 attempts left.
- Notice: /Stage[main]/Heat::Db/Exec[heat-dbsync]/returns: ERROR: (OperationalError) (2003, "Can't connect to MySQL server on '10.35.161.188' (111)") None None
- Error: /Stage[main]/Heat::Db/Exec[heat-dbsync]: Failed to call refresh: heat-manage --config-file /etc/heat/heat.conf db_sync returned 1 instead of one of [0]
- Error: /Stage[main]/Heat::Db/Exec[heat-dbsync]: heat-manage --config-file /etc/heat/heat.conf db_sync returned 1 instead of one of [0]
- Notice: /Stage[main]/Heat::Api_cfn/Service[heat-api-cfn]: Triggered 'refresh' from 38 events
- Notice: /Stage[main]/Heat::Api/Service[heat-api]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Heat::Api/Service[heat-api]: Unscheduling refresh on Service[heat-api]
- Notice: /Stage[main]/Heat/File[/etc/heat/]/group: group changed 'root' to 'heat'
- Notice: /Stage[main]/Heat/File[/etc/heat/]/mode: mode changed '0755' to '0750'
- Notice: /Stage[main]/Heat/File[/etc/heat/heat.conf]/owner: owner changed 'root' to 'heat'
- Notice: /Stage[main]/Heat::Engine/Exec[heat-encryption-key-replacement]/returns: executed successfully
- Notice: /Stage[main]/Heat::Engine/Service[heat-engine]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Heat::Engine/Service[heat-engine]: Unscheduling refresh on Service[heat-engine]
- Notice: /Stage[main]/Heat::Api_cloudwatch/Service[heat-api-cloudwatch]: Triggered 'refresh' from 38 events
- Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Package[nova-cert]/ensure: created
- Info: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Package[nova-cert]: Scheduling refresh of Service[nova-cert]
- Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Dependency Service[mysqld] has failures: true
- Warning: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Skipping because of failed dependencies
- Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Triggered 'refresh' from 1 events
- Notice: /Stage[main]/Apache::Mod::Default/Apache::Mod[usertrack]/A2mod[usertrack]/ensure: created
- Info: /Stage[main]/Apache::Mod::Default/Apache::Mod[usertrack]/A2mod[usertrack]: Scheduling refresh of Service[httpd]
- Notice: /Stage[main]/Apache/Service[httpd]/ensure: ensure changed 'stopped' to 'running'
- Info: /Stage[main]/Apache/Service[httpd]: Unscheduling refresh on Service[httpd]
- Notice: Finished catalog run in 1148.99 seconds
Advertisement
Add Comment
Please, Sign In to add comment