Guest User

Untitled

a guest
Feb 4th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 101.29 KB | None | 0 0
  1. OPENSTACK_HYPERVISOR_FEATURES = {
  2. - 'can_set_mount_point': False,
  3. - 'can_set_password': True,
  4. -
  5. - # NOTE: as of Grizzly this is not yet supported in Nova so enabling this
  6. - # setting will not do anything useful
  7. - 'can_encrypt_volumes': False
  8. + 'can_set_mount_point': True,
  9. }
  10.  
  11. # The OPENSTACK_NEUTRON_NETWORK settings can be used to enable optional
  12. @@ -169,8 +168,9 @@
  13. 'enable_lb': False,
  14. 'enable_firewall': False,
  15. 'enable_quotas': True,
  16. + 'enable_security_group': True,
  17. 'enable_vpn': False,
  18. - # The profile_support option is used to detect if an external router can be
  19. + # The profile_support option is used to detect if an externa lrouter can be
  20. # configured via the dashboard. When using specific plugins the
  21. # profile_support can be turned on if needed.
  22. 'profile_support': None,
  23. @@ -217,6 +217,9 @@
  24. # of your entire OpenStack installation, and hopefully be in UTC.
  25. TIME_ZONE = "UTC"
  26.  
  27. +# If you have external monitoring links, eg:
  28. +
  29. +
  30. # When launching an instance, the menu of available flavors is
  31. # sorted by RAM usage, ascending. Provide a callback method here
  32. # (and/or a flag for reverse sort) for the sorted() method if you'd
  33. @@ -233,14 +236,18 @@
  34. # target installation.
  35.  
  36. # Path to directory containing policy.json files
  37. -# POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
  38. +#POLICY_FILES_PATH = os.path.join(ROOT_PATH, "conf")
  39. +
  40. POLICY_FILES_PATH = '/etc/openstack-dashboard'
  41. +
  42. # Map of local copy of service policy files
  43. +
  44. POLICY_FILES = {
  45. 'identity': 'keystone_policy.json',
  46. 'compute': 'nova_policy.json'
  47. }
  48.  
  49. +
  50. # Trove user and database extension support. By default support for
  51. # creating users and databases on database instances is turned on.
  52. # To disable these extensions set the permission here to something
  53. @@ -255,6 +262,12 @@
  54. # if nothing is specified here and disable_existing_loggers is True,
  55. # django.db.backends will still log unless it is disabled explicitly.
  56. 'disable_existing_loggers': False,
  57. + 'formatters': {
  58. + 'verbose': {
  59. + 'format': '%(asctime)s %(process)d %(levelname)s %(name)s '
  60. + '%(message)s'
  61. + },
  62. + },
  63. 'handlers': {
  64. 'null': {
  65. 'level': 'DEBUG',
  66. @@ -265,6 +278,12 @@
  67. 'level': 'INFO',
  68. 'class': 'logging.StreamHandler',
  69. },
  70. + 'file': {
  71. + 'level': 'DEBUG',
  72. + 'class': 'logging.FileHandler',
  73. + 'filename': '/var/log/horizon/horizon.log',
  74. + 'formatter': 'verbose',
  75. + },
  76. },
  77. 'loggers': {
  78. # Logging from django.db.backends is VERY verbose, send to null
  79. @@ -278,79 +297,103 @@
  80. 'propagate': False,
  81. },
  82. 'horizon': {
  83. - 'handlers': ['console'],
  84. + # 'handlers': ['console'],
  85. + 'handlers': ['file'],
  86. + # 'level': 'DEBUG',
  87. 'level': 'DEBUG',
  88. 'propagate': False,
  89. },
  90. 'openstack_dashboard': {
  91. - 'handlers': ['console'],
  92. + # 'handlers': ['console'],
  93. + 'handlers': ['file'],
  94. + # 'level': 'DEBUG',
  95. 'level': 'DEBUG',
  96. 'propagate': False,
  97. },
  98. 'novaclient': {
  99. - 'handlers': ['console'],
  100. + # 'handlers': ['console'],
  101. + 'handlers': ['file'],
  102. + # 'level': 'DEBUG',
  103. 'level': 'DEBUG',
  104. 'propagate': False,
  105. },
  106. 'cinderclient': {
  107. - 'handlers': ['console'],
  108. + # 'handlers': ['console'],
  109. + 'handlers': ['file'],
  110. + # 'level': 'DEBUG',
  111. 'level': 'DEBUG',
  112. 'propagate': False,
  113. },
  114. 'keystoneclient': {
  115. - 'handlers': ['console'],
  116. + # 'handlers': ['console'],
  117. + 'handlers': ['file'],
  118. + # 'level': 'DEBUG',
  119. 'level': 'DEBUG',
  120. 'propagate': False,
  121. },
  122. 'glanceclient': {
  123. - 'handlers': ['console'],
  124. + # 'handlers': ['console'],
  125. + 'handlers': ['file'],
  126. + # 'level': 'DEBUG',
  127. 'level': 'DEBUG',
  128. 'propagate': False,
  129. },
  130. 'neutronclient': {
  131. - 'handlers': ['console'],
  132. + # 'handlers': ['console'],
  133. + 'handlers': ['file'],
  134. + # 'level': 'DEBUG',
  135. 'level': 'DEBUG',
  136. 'propagate': False,
  137. },
  138. 'heatclient': {
  139. - 'handlers': ['console'],
  140. + # 'handlers': ['console'],
  141. + 'handlers': ['file'],
  142. + # 'level': 'DEBUG',
  143. 'level': 'DEBUG',
  144. 'propagate': False,
  145. },
  146. 'ceilometerclient': {
  147. - 'handlers': ['console'],
  148. + # 'handlers': ['console'],
  149. + 'handlers': ['file'],
  150. + # 'level': 'DEBUG',
  151. 'level': 'DEBUG',
  152. 'propagate': False,
  153. },
  154. 'troveclient': {
  155. - 'handlers': ['console'],
  156. + # 'handlers': ['console'],
  157. + 'handlers': ['file'],
  158. + # 'level': 'DEBUG',
  159. 'level': 'DEBUG',
  160. 'propagate': False,
  161. },
  162. 'swiftclient': {
  163. - 'handlers': ['console'],
  164. + # 'handlers': ['console'],
  165. + 'handlers': ['file'],
  166. + # 'level': 'DEBUG',
  167. 'level': 'DEBUG',
  168. 'propagate': False,
  169. },
  170. 'openstack_auth': {
  171. - 'handlers': ['console'],
  172. + # 'handlers': ['console'],
  173. + 'handlers': ['file'],
  174. + # 'level': 'DEBUG',
  175. 'level': 'DEBUG',
  176. 'propagate': False,
  177. },
  178. 'nose.plugins.manager': {
  179. - 'handlers': ['console'],
  180. + # 'handlers': ['console'],
  181. + 'handlers': ['file'],
  182. + # 'level': 'DEBUG',
  183. 'level': 'DEBUG',
  184. 'propagate': False,
  185. },
  186. 'django': {
  187. - 'handlers': ['console'],
  188. + # 'handlers': ['console'],
  189. + 'handlers': ['file'],
  190. + # 'level': 'DEBUG',
  191. 'level': 'DEBUG',
  192. 'propagate': False,
  193. },
  194. - 'iso8601': {
  195. - 'handlers': ['null'],
  196. - 'propagate': False,
  197. - },
  198. }
  199. }
  200.  
  201. @@ -442,8 +485,8 @@
  202. 'ms_sql': {
  203. 'name': 'MS SQL',
  204. 'ip_protocol': 'tcp',
  205. - 'from_port': '1433',
  206. - 'to_port': '1433',
  207. + 'from_port': '1443',
  208. + 'to_port': '1443',
  209. },
  210. 'mysql': {
  211. 'name': 'MYSQL',
  212. @@ -458,3 +501,12 @@
  213. 'to_port': '3389',
  214. },
  215. }
  216. +
  217. +LOGIN_URL = '/dashboard/auth/login/'
  218. +LOGOUT_URL = '/dashboard/auth/logout/'
  219. +LOGIN_REDIRECT_URL = '/dashboard'
  220. +
  221. +# The Ubuntu package includes pre-compressed JS and compiled CSS to allow
  222. +# offline compression by default. To enable online compression, install
  223. +# the node-less package and enable the following option.
  224. +COMPRESS_OFFLINE = True
  225.  
  226. Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Filebucketed /etc/openstack-dashboard/local_settings to puppet with sum 2cfcd9cb02ebc0f4715ffa41302253cb
  227. Notice: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]/content: content changed '{md5}2cfcd9cb02ebc0f4715ffa41302253cb' to '{md5}2da50309da55e16fdfe614312445296f'
  228. Notice: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]/mode: mode changed '0640' to '0644'
  229. Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Scheduling refresh of Service[httpd]
  230. Info: /Stage[main]/Horizon/File[/etc/openstack-dashboard/local_settings]: Scheduling refresh of Service[httpd]
  231. Notice: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]/ensure: created
  232. Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Exec[ceilometer-dbsync]
  233. Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Exec[ceilometer-dbsync]
  234. Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-collector]
  235. Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-agent-central]
  236. Info: /Stage[main]/Ceilometer::Db/Ceilometer_config[database/connection]: Scheduling refresh of Service[ceilometer-api]
  237. Notice: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Triggered 'refresh' from 2 events
  238. Info: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Scheduling refresh of Service[ceilometer-collector]
  239. Info: /Stage[main]/Ceilometer::Db/Exec[ceilometer-dbsync]: Scheduling refresh of Service[ceilometer-api]
  240. Notice: /Stage[main]/Ceilometer::Collector/Package[ceilometer-collector]/ensure: created
  241. Notice: /Stage[main]/Swift::Ringbuilder/Swift::Ringbuilder::Create[account]/Exec[create_account]/returns: executed successfully
  242. Notice: /Stage[main]/Swift::Ringserver/Rsync::Server::Module[swift_server]/File[/etc/rsync.d/frag-swift_server]/ensure: defined content as '{md5}7fae4818c72b8e958b2f3fcbe3c76d82'
  243. Info: /Stage[main]/Swift::Ringserver/Rsync::Server::Module[swift_server]/File[/etc/rsync.d/frag-swift_server]: Scheduling refresh of Exec[compile fragments]
  244. Notice: /Stage[main]/Rsync::Server/Exec[compile fragments]: Triggered 'refresh' from 2 events
  245. Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]/ensure: created
  246. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-collector]
  247. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-agent-central]
  248. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/debug]: Scheduling refresh of Service[ceilometer-api]
  249. Notice: /Stage[main]/Horizon/File_line[httpd_listen_on_bind_address_80]/ensure: created
  250. Info: /Stage[main]/Horizon/File_line[httpd_listen_on_bind_address_80]: Scheduling refresh of Service[httpd]
  251. Notice: /Stage[main]/Cinder/Package[cinder]/ensure: created
  252. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]/ensure: created
  253. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[cinder-api]
  254. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[cinder-scheduler]
  255. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]/ensure: created
  256. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Service[cinder-api]
  257. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Exec[cinder-manage db_sync]
  258. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_connection]: Scheduling refresh of Service[cinder-scheduler]
  259. Notice: /Stage[main]/Cinder/File[/etc/cinder/cinder.conf]/owner: owner changed 'root' to 'cinder'
  260. Notice: /Stage[main]/Cinder/File[/etc/cinder/cinder.conf]/mode: mode changed '0640' to '0600'
  261. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]/ensure: created
  262. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Service[cinder-api]
  263. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Exec[cinder-manage db_sync]
  264. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_timeout]: Scheduling refresh of Service[cinder-scheduler]
  265. Notice: /Stage[main]/Cinder/File[/etc/cinder/api-paste.ini]/owner: owner changed 'root' to 'cinder'
  266. Notice: /Stage[main]/Cinder/File[/etc/cinder/api-paste.ini]/mode: mode changed '0640' to '0600'
  267. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]/ensure: created
  268. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Service[cinder-api]
  269. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Exec[cinder-manage db_sync]
  270. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_limit]: Scheduling refresh of Service[cinder-scheduler]
  271. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]/ensure: created
  272. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Service[cinder-api]
  273. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Exec[cinder-manage db_sync]
  274. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/use_syslog]: Scheduling refresh of Service[cinder-scheduler]
  275. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]/ensure: created
  276. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Service[cinder-api]
  277. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Exec[cinder-manage db_sync]
  278. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/api_paste_config]: Scheduling refresh of Service[cinder-scheduler]
  279. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]/ensure: created
  280. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]: Scheduling refresh of Service[cinder-api]
  281. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_host]: Scheduling refresh of Service[cinder-scheduler]
  282. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]/ensure: created
  283. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Service[cinder-api]
  284. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Exec[cinder-manage db_sync]
  285. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/debug]: Scheduling refresh of Service[cinder-scheduler]
  286. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]/ensure: created
  287. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Service[cinder-api]
  288. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Exec[cinder-manage db_sync]
  289. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect]: Scheduling refresh of Service[cinder-scheduler]
  290. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]/ensure: created
  291. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Service[cinder-api]
  292. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Exec[cinder-manage db_sync]
  293. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_username]: Scheduling refresh of Service[cinder-scheduler]
  294. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]/ensure: created
  295. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[cinder-api]
  296. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Exec[cinder-manage db_sync]
  297. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[cinder-scheduler]
  298. Notice: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]/ensure: created
  299. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Service[cinder-api]
  300. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Exec[cinder-manage db_sync]
  301. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/auth_strategy]: Scheduling refresh of Service[cinder-scheduler]
  302. Notice: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]/ensure: created
  303. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Service[cinder-api]
  304. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Exec[cinder-manage db_sync]
  305. Info: /Stage[main]/Cinder::Api/Cinder_config[DEFAULT/osapi_volume_listen]: Scheduling refresh of Service[cinder-scheduler]
  306. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]/ensure: created
  307. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]: Scheduling refresh of Service[cinder-api]
  308. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_port]: Scheduling refresh of Service[cinder-scheduler]
  309. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]/ensure: created
  310. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Service[cinder-api]
  311. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Exec[cinder-manage db_sync]
  312. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_heartbeat]: Scheduling refresh of Service[cinder-scheduler]
  313. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]/ensure: created
  314. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]: Scheduling refresh of Service[cinder-api]
  315. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_uri]: Scheduling refresh of Service[cinder-scheduler]
  316. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]/ensure: created
  317. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Service[cinder-api]
  318. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Exec[cinder-manage db_sync]
  319. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_max]: Scheduling refresh of Service[cinder-scheduler]
  320. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]/ensure: created
  321. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Service[cinder-api]
  322. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Exec[cinder-manage db_sync]
  323. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval_min]: Scheduling refresh of Service[cinder-scheduler]
  324. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]/ensure: created
  325. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]: Scheduling refresh of Service[cinder-api]
  326. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_port]: Scheduling refresh of Service[cinder-scheduler]
  327. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]/ensure: created
  328. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Service[cinder-api]
  329. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Exec[cinder-manage db_sync]
  330. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/sql_idle_timeout]: Scheduling refresh of Service[cinder-scheduler]
  331. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]/ensure: created
  332. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]: Scheduling refresh of Service[cinder-api]
  333. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_host]: Scheduling refresh of Service[cinder-scheduler]
  334. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]/ensure: created
  335. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]: Scheduling refresh of Service[cinder-api]
  336. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/service_protocol]: Scheduling refresh of Service[cinder-scheduler]
  337. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]/ensure: created
  338. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]: Scheduling refresh of Service[cinder-api]
  339. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_user]: Scheduling refresh of Service[cinder-scheduler]
  340. Notice: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]/ensure: created
  341. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Service[cinder-api]
  342. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Exec[cinder-manage db_sync]
  343. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/glance_host]: Scheduling refresh of Service[cinder-scheduler]
  344. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]/ensure: created
  345. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Service[cinder-api]
  346. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Exec[cinder-manage db_sync]
  347. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/verbose]: Scheduling refresh of Service[cinder-scheduler]
  348. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]/ensure: created
  349. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Service[cinder-api]
  350. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Exec[cinder-manage db_sync]
  351. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_port]: Scheduling refresh of Service[cinder-scheduler]
  352. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]/ensure: created
  353. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Service[cinder-api]
  354. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Exec[cinder-manage db_sync]
  355. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_password]: Scheduling refresh of Service[cinder-scheduler]
  356. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]/ensure: created
  357. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Service[cinder-api]
  358. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Exec[cinder-manage db_sync]
  359. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_reconnect_interval]: Scheduling refresh of Service[cinder-scheduler]
  360. Notice: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]/ensure: created
  361. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Service[cinder-api]
  362. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Exec[cinder-manage db_sync]
  363. Info: /Stage[main]/Quickstack::Cinder_controller/Cinder_config[DEFAULT/notification_driver]: Scheduling refresh of Service[cinder-scheduler]
  364. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]/ensure: created
  365. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Service[cinder-api]
  366. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Exec[cinder-manage db_sync]
  367. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_hostname]: Scheduling refresh of Service[cinder-scheduler]
  368. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]/ensure: created
  369. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Service[cinder-api]
  370. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Exec[cinder-manage db_sync]
  371. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/rpc_backend]: Scheduling refresh of Service[cinder-scheduler]
  372. Notice: /Stage[main]/Mysql::Config/File[/etc/mysql]: Dependency Service[mysqld] has failures: true
  373. Warning: /Stage[main]/Mysql::Config/File[/etc/mysql]: Skipping because of failed dependencies
  374. Notice: /Stage[main]/Mysql::Config/File[/etc/my.cnf]: Dependency Service[mysqld] has failures: true
  375. Warning: /Stage[main]/Mysql::Config/File[/etc/my.cnf]: Skipping because of failed dependencies
  376. Notice: /Stage[main]/Mysql::Config/File[/etc/mysql/conf.d]: Dependency Service[mysqld] has failures: true
  377. Warning: /Stage[main]/Mysql::Config/File[/etc/mysql/conf.d]: Skipping because of failed dependencies
  378. Notice: /Stage[main]/Mysql::Config/Exec[set_mysql_rootpw]: Dependency Service[mysqld] has failures: true
  379. Warning: /Stage[main]/Mysql::Config/Exec[set_mysql_rootpw]: Skipping because of failed dependencies
  380. Notice: /Stage[main]/Mysql::Config/File[/root/.my.cnf]: Dependency Service[mysqld] has failures: true
  381. Warning: /Stage[main]/Mysql::Config/File[/root/.my.cnf]: Skipping because of failed dependencies
  382. Notice: /Stage[main]/Mysql::Config/Exec[mysqld-restart]: Dependency Service[mysqld] has failures: true
  383. Warning: /Stage[main]/Mysql::Config/Exec[mysqld-restart]: Skipping because of failed dependencies
  384. Notice: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]/ensure: created
  385. Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-collector]
  386. Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-agent-central]
  387. Info: /Stage[main]/Ceilometer::Api/Ceilometer_config[keystone_authtoken/auth_port]: Scheduling refresh of Service[ceilometer-api]
  388. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]/ensure: created
  389. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]: Scheduling refresh of Service[cinder-api]
  390. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/auth_protocol]: Scheduling refresh of Service[cinder-scheduler]
  391. Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]/ensure: created
  392. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-collector]
  393. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-agent-central]
  394. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_password]: Scheduling refresh of Service[ceilometer-api]
  395. Notice: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]/ensure: created
  396. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-collector]
  397. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-agent-central]
  398. Info: /Stage[main]/Ceilometer/Ceilometer_config[DEFAULT/qpid_tcp_nodelay]: Scheduling refresh of Service[ceilometer-api]
  399. Notice: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]/ensure: created
  400. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-collector]
  401. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-agent-central]
  402. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_password]: Scheduling refresh of Service[ceilometer-api]
  403. Notice: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]/ensure: created
  404. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]: Scheduling refresh of Service[cinder-api]
  405. Info: /Stage[main]/Cinder::Api/Cinder_api_paste_ini[filter:authtoken/admin_password]: Scheduling refresh of Service[cinder-scheduler]
  406. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[root@oh-havana-controller]: Dependency Service[mysqld] has failures: true
  407. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[root@oh-havana-controller]: Skipping because of failed dependencies
  408. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller]: Dependency Service[mysqld] has failures: true
  409. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller]: Skipping because of failed dependencies
  410. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@%]: Dependency Service[mysqld] has failures: true
  411. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@%]: Skipping because of failed dependencies
  412. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[root@::1]: Dependency Service[mysqld] has failures: true
  413. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[root@::1]: Skipping because of failed dependencies
  414. Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database[glance]: Dependency Service[mysqld] has failures: true
  415. Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database[glance]: Skipping because of failed dependencies
  416. Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_user[glance@%]: Dependency Service[mysqld] has failures: true
  417. Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_user[glance@%]: Skipping because of failed dependencies
  418. 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
  419. Fatal error in defaults handling. Program aborted
  420.  
  421. Notice: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_grant[glance@%/glance]: Dependency Service[mysqld] has failures: true
  422. Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[%]/Database_grant[glance@%/glance]: Skipping because of failed dependencies
  423. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@localhost]: Dependency Service[mysqld] has failures: true
  424. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@localhost]: Skipping because of failed dependencies
  425. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller.scl.lab.tlv.redhat.com]: Dependency Service[mysqld] has failures: true
  426. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[@oh-havana-controller.scl.lab.tlv.redhat.com]: Skipping because of failed dependencies
  427. Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database[nova]: Dependency Service[mysqld] has failures: true
  428. Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database[nova]: Skipping because of failed dependencies
  429. Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_user[nova@%]: Dependency Service[mysqld] has failures: true
  430. Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_user[nova@%]: Skipping because of failed dependencies
  431. Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  432. Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_user[[email protected]]: Skipping because of failed dependencies
  433. 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
  434. Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
  435. Notice: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_grant[nova@%/nova]: Dependency Service[mysqld] has failures: true
  436. Warning: /Stage[main]/Nova::Db::Mysql/Nova::Db::Mysql::Host_access[%]/Database_grant[nova@%/nova]: Skipping because of failed dependencies
  437. 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
  438. 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
  439. Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database[cinder]: Dependency Service[mysqld] has failures: true
  440. Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database[cinder]: Skipping because of failed dependencies
  441. Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  442. Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_user[[email protected]]: Skipping because of failed dependencies
  443. Notice: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_grant[[email protected]/cinder]: Dependency Service[mysqld] has failures: true
  444. Warning: /Stage[main]/Cinder::Db::Mysql/Mysql::Db[cinder]/Database_grant[[email protected]/cinder]: Skipping because of failed dependencies
  445. 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
  446. Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
  447. 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
  448. 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
  449. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  450. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Skipping because of failed dependencies
  451. Notice: /Stage[main]/Mysql::Server::Account_security/Database[test]: Dependency Service[mysqld] has failures: true
  452. Warning: /Stage[main]/Mysql::Server::Account_security/Database[test]: Skipping because of failed dependencies
  453. Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_user[cinder@%]: Dependency Service[mysqld] has failures: true
  454. Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_user[cinder@%]: Skipping because of failed dependencies
  455. Notice: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_grant[cinder@%/cinder]: Dependency Service[mysqld] has failures: true
  456. Warning: /Stage[main]/Cinder::Db::Mysql/Cinder::Db::Mysql::Host_access[%]/Database_grant[cinder@%/cinder]: Skipping because of failed dependencies
  457. 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
  458. Warning: /Stage[main]/Glance::Db::Mysql/Glance::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
  459. Notice: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  460. Warning: /Stage[main]/Mysql::Server::Account_security/Database_user[[email protected]]: Skipping because of failed dependencies
  461. Notice: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_grant[[email protected]/nova]: Dependency Service[mysqld] has failures: true
  462. Warning: /Stage[main]/Nova::Db::Mysql/Mysql::Db[nova]/Database_grant[[email protected]/nova]: Skipping because of failed dependencies
  463. Notice: /Stage[main]/Nova/Anchor[nova-start]: Dependency Service[mysqld] has failures: true
  464. Warning: /Stage[main]/Nova/Anchor[nova-start]: Skipping because of failed dependencies
  465. Notice: /Stage[main]/Nova/Package[nova-common]: Dependency Service[mysqld] has failures: true
  466. Warning: /Stage[main]/Nova/Package[nova-common]: Skipping because of failed dependencies
  467. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_extension_sync_interval]: Dependency Service[mysqld] has failures: true
  468. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_extension_sync_interval]: Skipping because of failed dependencies
  469. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/network_api_class]: Dependency Service[mysqld] has failures: true
  470. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/network_api_class]: Skipping because of failed dependencies
  471. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/debug]: Dependency Service[mysqld] has failures: true
  472. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/debug]: Skipping because of failed dependencies
  473. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval]: Dependency Service[mysqld] has failures: true
  474. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval]: Skipping because of failed dependencies
  475. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_hostname]: Dependency Service[mysqld] has failures: true
  476. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_hostname]: Skipping because of failed dependencies
  477. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_min]: Dependency Service[mysqld] has failures: true
  478. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_min]: Skipping because of failed dependencies
  479. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/memcached_servers]: Dependency Service[mysqld] has failures: true
  480. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/memcached_servers]: Skipping because of failed dependencies
  481. Notice: /Stage[main]/Nova/Group[nova]: Dependency Service[mysqld] has failures: true
  482. Warning: /Stage[main]/Nova/Group[nova]: Skipping because of failed dependencies
  483. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect]: Dependency Service[mysqld] has failures: true
  484. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect]: Skipping because of failed dependencies
  485. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_default_tenant_id]: Dependency Service[mysqld] has failures: true
  486. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_default_tenant_id]: Skipping because of failed dependencies
  487. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_auth_url]: Dependency Service[mysqld] has failures: true
  488. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_auth_url]: Skipping because of failed dependencies
  489. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/glance_api_servers]: Dependency Service[mysqld] has failures: true
  490. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/glance_api_servers]: Skipping because of failed dependencies
  491. Notice: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_host]: Dependency Service[mysqld] has failures: true
  492. Warning: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_host]: Skipping because of failed dependencies
  493. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ca_certificates_file]: Dependency Service[mysqld] has failures: true
  494. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ca_certificates_file]: Skipping because of failed dependencies
  495. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/state_path]: Dependency Service[mysqld] has failures: true
  496. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/state_path]: Skipping because of failed dependencies
  497. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_username]: Dependency Service[mysqld] has failures: true
  498. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_username]: Skipping because of failed dependencies
  499. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_region_name]: Dependency Service[mysqld] has failures: true
  500. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_region_name]: Skipping because of failed dependencies
  501. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/verbose]: Dependency Service[mysqld] has failures: true
  502. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/verbose]: Skipping because of failed dependencies
  503. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/security_group_api]: Dependency Service[mysqld] has failures: true
  504. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/security_group_api]: Skipping because of failed dependencies
  505. Notice: /Stage[main]/Nova/Nova_config[database/idle_timeout]: Dependency Service[mysqld] has failures: true
  506. Warning: /Stage[main]/Nova/Nova_config[database/idle_timeout]: Skipping because of failed dependencies
  507. Notice: /Stage[main]/Ceilometer/User[ceilometer]: Dependency Service[mysqld] has failures: true
  508. Warning: /Stage[main]/Ceilometer/User[ceilometer]: Skipping because of failed dependencies
  509. Notice: /Stage[main]/Ceilometer/File[/etc/ceilometer/]: Dependency Service[mysqld] has failures: true
  510. Warning: /Stage[main]/Ceilometer/File[/etc/ceilometer/]: Skipping because of failed dependencies
  511. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_password]: Dependency Service[mysqld] has failures: true
  512. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_password]: Skipping because of failed dependencies
  513. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_timeout]: Dependency Service[mysqld] has failures: true
  514. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_timeout]: Skipping because of failed dependencies
  515. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url_timeout]: Dependency Service[mysqld] has failures: true
  516. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url_timeout]: Skipping because of failed dependencies
  517. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/image_service]: Dependency Service[mysqld] has failures: true
  518. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/image_service]: Skipping because of failed dependencies
  519. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/firewall_driver]: Dependency Service[mysqld] has failures: true
  520. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/firewall_driver]: Skipping because of failed dependencies
  521. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_password]: Dependency Service[mysqld] has failures: true
  522. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_password]: Skipping because of failed dependencies
  523. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/logdir]: Dependency Service[mysqld] has failures: true
  524. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/logdir]: Skipping because of failed dependencies
  525. Notice: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_port]: Dependency Service[mysqld] has failures: true
  526. Warning: /Stage[main]/Nova::Vncproxy/Nova_config[DEFAULT/novncproxy_port]: Skipping because of failed dependencies
  527. Notice: /Stage[main]/Nova/Nova_config[database/connection]: Dependency Service[mysqld] has failures: true
  528. Warning: /Stage[main]/Nova/Nova_config[database/connection]: Skipping because of failed dependencies
  529. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_auth_strategy]: Dependency Service[mysqld] has failures: true
  530. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_auth_strategy]: Skipping because of failed dependencies
  531. Notice: /Stage[main]/Nova/User[nova]: Dependency Service[mysqld] has failures: true
  532. Warning: /Stage[main]/Nova/User[nova]: Skipping because of failed dependencies
  533. Notice: /Stage[main]/Nova/File[/var/log/nova]: Dependency Service[mysqld] has failures: true
  534. Warning: /Stage[main]/Nova/File[/var/log/nova]: Skipping because of failed dependencies
  535. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_max]: Dependency Service[mysqld] has failures: true
  536. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_interval_max]: Skipping because of failed dependencies
  537. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ovs_bridge]: Dependency Service[mysqld] has failures: true
  538. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_ovs_bridge]: Skipping because of failed dependencies
  539. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_heartbeat]: Dependency Service[mysqld] has failures: true
  540. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_heartbeat]: Skipping because of failed dependencies
  541. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_tenant_name]: Dependency Service[mysqld] has failures: true
  542. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_tenant_name]: Skipping because of failed dependencies
  543. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/lock_path]: Dependency Service[mysqld] has failures: true
  544. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/lock_path]: Skipping because of failed dependencies
  545. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_limit]: Dependency Service[mysqld] has failures: true
  546. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_reconnect_limit]: Skipping because of failed dependencies
  547. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/service_down_time]: Dependency Service[mysqld] has failures: true
  548. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/service_down_time]: Skipping because of failed dependencies
  549. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_protocol]: Dependency Service[mysqld] has failures: true
  550. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_protocol]: Skipping because of failed dependencies
  551. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url]: Dependency Service[mysqld] has failures: true
  552. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_url]: Skipping because of failed dependencies
  553. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_listen]: Dependency Service[mysqld] has failures: true
  554. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_listen]: Skipping because of failed dependencies
  555. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_port]: Dependency Service[mysqld] has failures: true
  556. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_port]: Skipping because of failed dependencies
  557. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/ec2_listen]: Dependency Service[mysqld] has failures: true
  558. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/ec2_listen]: Skipping because of failed dependencies
  559. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_password]: Dependency Service[mysqld] has failures: true
  560. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_password]: Skipping because of failed dependencies
  561. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_user]: Dependency Service[mysqld] has failures: true
  562. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_user]: Skipping because of failed dependencies
  563. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_protocol]: Dependency Service[mysqld] has failures: true
  564. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_protocol]: Skipping because of failed dependencies
  565. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/enabled_apis]: Dependency Service[mysqld] has failures: true
  566. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/enabled_apis]: Skipping because of failed dependencies
  567. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/volume_api_class]: Dependency Service[mysqld] has failures: true
  568. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/volume_api_class]: Skipping because of failed dependencies
  569. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/neutron_metadata_proxy_shared_secret]: Dependency Service[mysqld] has failures: true
  570. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/neutron_metadata_proxy_shared_secret]: Skipping because of failed dependencies
  571. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_host]: Dependency Service[mysqld] has failures: true
  572. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_host]: Skipping because of failed dependencies
  573. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_admin_prefix]: Dependency Service[mysqld] has failures: true
  574. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_admin_prefix]: Skipping because of failed dependencies
  575. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_tenant_name]: Dependency Service[mysqld] has failures: true
  576. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/admin_tenant_name]: Skipping because of failed dependencies
  577. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/service_neutron_metadata_proxy]: Dependency Service[mysqld] has failures: true
  578. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/service_neutron_metadata_proxy]: Skipping because of failed dependencies
  579. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/use_forwarded_for]: Dependency Service[mysqld] has failures: true
  580. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/use_forwarded_for]: Skipping because of failed dependencies
  581. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_volume_listen]: Dependency Service[mysqld] has failures: true
  582. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_volume_listen]: Skipping because of failed dependencies
  583. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/metadata_listen]: Dependency Service[mysqld] has failures: true
  584. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/metadata_listen]: Skipping because of failed dependencies
  585. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/auth_strategy]: Dependency Service[mysqld] has failures: true
  586. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/auth_strategy]: Skipping because of failed dependencies
  587. Notice: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_workers]: Dependency Service[mysqld] has failures: true
  588. Warning: /Stage[main]/Nova::Api/Nova_config[DEFAULT/osapi_compute_workers]: Skipping because of failed dependencies
  589. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/rootwrap_config]: Dependency Service[mysqld] has failures: true
  590. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/rootwrap_config]: Skipping because of failed dependencies
  591. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/rpc_backend]: Dependency Service[mysqld] has failures: true
  592. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/rpc_backend]: Skipping because of failed dependencies
  593. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_tcp_nodelay]: Dependency Service[mysqld] has failures: true
  594. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_tcp_nodelay]: Skipping because of failed dependencies
  595. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/use_syslog]: Dependency Service[mysqld] has failures: true
  596. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/use_syslog]: Skipping because of failed dependencies
  597. Notice: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_port]: Dependency Service[mysqld] has failures: true
  598. Warning: /Stage[main]/Nova/Nova_config[DEFAULT/qpid_port]: Skipping because of failed dependencies
  599. Notice: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_uri]: Dependency Service[mysqld] has failures: true
  600. Warning: /Stage[main]/Nova::Api/Nova_config[keystone_authtoken/auth_uri]: Skipping because of failed dependencies
  601. Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database[heat]: Dependency Service[mysqld] has failures: true
  602. Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database[heat]: Skipping because of failed dependencies
  603. Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_user[heat@localhost]: Dependency Service[mysqld] has failures: true
  604. Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_user[heat@localhost]: Skipping because of failed dependencies
  605. Notice: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_user[heat@%%]: Dependency Service[mysqld] has failures: true
  606. Warning: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_user[heat@%%]: Skipping because of failed dependencies
  607. Notice: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_grant[heat@localhost/heat]: Dependency Service[mysqld] has failures: true
  608. Warning: /Stage[main]/Heat::Db::Mysql/Mysql::Db[heat]/Database_grant[heat@localhost/heat]: Skipping because of failed dependencies
  609. Notice: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_grant[heat@%%/heat]: Dependency Service[mysqld] has failures: true
  610. Warning: /Stage[main]/Heat::Db::Mysql/Heat::Db::Mysql::Host_access[%%]/Database_grant[heat@%%/heat]: Skipping because of failed dependencies
  611. Notice: /Stage[main]/Ceilometer/File[/etc/ceilometer/ceilometer.conf]: Dependency Service[mysqld] has failures: true
  612. Warning: /Stage[main]/Ceilometer/File[/etc/ceilometer/ceilometer.conf]: Skipping because of failed dependencies
  613. Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database[neutron]: Dependency Service[mysqld] has failures: true
  614. Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database[neutron]: Skipping because of failed dependencies
  615. Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_user[neutron@%]: Dependency Service[mysqld] has failures: true
  616. Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_user[neutron@%]: Skipping because of failed dependencies
  617. Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  618. Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_user[[email protected]]: Skipping because of failed dependencies
  619. Notice: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_grant[neutron@%/neutron]: Dependency Service[mysqld] has failures: true
  620. Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[%]/Database_grant[neutron@%/neutron]: Skipping because of failed dependencies
  621. 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
  622. Warning: /Stage[main]/Neutron::Db::Mysql/Neutron::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
  623. 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
  624. 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
  625. Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database[keystone]: Dependency Service[mysqld] has failures: true
  626. Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database[keystone]: Skipping because of failed dependencies
  627. Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  628. Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_user[[email protected]]: Skipping because of failed dependencies
  629. Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_user[keystone@%]: Dependency Service[mysqld] has failures: true
  630. Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_user[keystone@%]: Skipping because of failed dependencies
  631. Notice: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_grant[[email protected]/keystone]: Dependency Service[mysqld] has failures: true
  632. Warning: /Stage[main]/Keystone::Db::Mysql/Mysql::Db[keystone]/Database_grant[[email protected]/keystone]: Skipping because of failed dependencies
  633. Notice: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_grant[keystone@%/keystone]: Dependency Service[mysqld] has failures: true
  634. Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[%]/Database_grant[keystone@%/keystone]: Skipping because of failed dependencies
  635. 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
  636. Warning: /Stage[main]/Keystone::Db::Mysql/Keystone::Db::Mysql::Host_access[10.35.161.188]/Database_user[[email protected]]: Skipping because of failed dependencies
  637. 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
  638. 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
  639. Notice: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_username]: Dependency Service[mysqld] has failures: true
  640. Warning: /Stage[main]/Nova::Network::Neutron/Nova_config[DEFAULT/neutron_admin_username]: Skipping because of failed dependencies
  641. Notice: /Stage[main]/Nova/File[/etc/nova/nova.conf]: Dependency Service[mysqld] has failures: true
  642. Warning: /Stage[main]/Nova/File[/etc/nova/nova.conf]: Skipping because of failed dependencies
  643. Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_user[[email protected]]: Dependency Service[mysqld] has failures: true
  644. Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_user[[email protected]]: Skipping because of failed dependencies
  645. Notice: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_grant[[email protected]/glance]: Dependency Service[mysqld] has failures: true
  646. Warning: /Stage[main]/Glance::Db::Mysql/Mysql::Db[glance]/Database_grant[[email protected]/glance]: Skipping because of failed dependencies
  647. Notice: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]/ensure: created
  648. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Service[cinder-api]
  649. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Exec[cinder-manage db_sync]
  650. Info: /Stage[main]/Cinder/Cinder_config[DEFAULT/qpid_protocol]: Scheduling refresh of Service[cinder-scheduler]
  651. Notice: /Stage[main]/Cinder::Api/Service[cinder-api]/ensure: ensure changed 'stopped' to 'running'
  652. Info: /Stage[main]/Cinder::Api/Service[cinder-api]: Unscheduling refresh on Service[cinder-api]
  653. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: Dependency Service[mysqld] has failures: true
  654. Warning: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: Skipping because of failed dependencies
  655. 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.
  656. 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.
  657. 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.
  658. 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.
  659. 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.
  660. 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.
  661. 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.
  662. 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.
  663. 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.
  664. 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.
  665. 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
  666. 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):
  667. 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>
  668. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder main()
  669. 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
  670. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder fn(*fn_args)
  671. 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
  672. 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)
  673. 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
  674. 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)
  675. 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
  676. 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()
  677. 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
  678. 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)
  679. 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
  680. 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)
  681. 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
  682. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder engine.connect()
  683. 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
  684. 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)
  685. 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__
  686. 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()
  687. 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
  688. 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()
  689. 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
  690. 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()
  691. 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__
  692. 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()
  693. 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
  694. 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()
  695. 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
  696. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder return _ConnectionRecord(self)
  697. 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__
  698. 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()
  699. 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
  700. 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()
  701. 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
  702. 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)
  703. 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
  704. 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)
  705. 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
  706. 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)
  707. 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__
  708. 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)
  709. 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
  710. Notice: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]/returns: 2014-02-04 12:27:26.383 3960 TRACE cinder
  711. 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]
  712. Error: /Stage[main]/Cinder::Api/Exec[cinder-manage db_sync]: cinder-manage db sync returned 1 instead of one of [0]
  713. Notice: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Dependency Service[mysqld] has failures: true
  714. Warning: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Skipping because of failed dependencies
  715. Notice: /Stage[main]/Cinder::Scheduler/Service[cinder-scheduler]: Triggered 'refresh' from 34 events
  716. Notice: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/admin_tenant_name]/ensure: created
  717. Info: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/admin_tenant_name]: Scheduling refresh of Service[neutron-server]
  718. Notice: /Stage[main]/Neutron/Neutron_config[DEFAULT/qpid_port]/ensure: created
  719. Info: /Stage[main]/Neutron/Neutron_config[DEFAULT/qpid_port]: Scheduling refresh of Service[neutron-server]
  720. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: No handlers could be found for logger "neutron.common.legacy"
  721. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: Traceback (most recent call last):
  722. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: File "/usr/bin/neutron-db-manage", line 10, in <module>
  723. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: sys.exit(main())
  724. 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
  725. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: CONF.command.func(config, CONF.command.name)
  726. 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
  727. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: do_alembic_command(config, cmd, revision, sql=CONF.command.sql)
  728. 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
  729. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: getattr(alembic_command, cmd)(config, *args, **kwargs)
  730. 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
  731. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: script.run_env()
  732. 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
  733. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: util.load_python_file(self.dir, 'env.py')
  734. 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
  735. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: module = imp.load_source(module_id, path, open(path, 'rb'))
  736. 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>
  737. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: run_migrations_online()
  738. 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
  739. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: connection = engine.connect()
  740. 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
  741. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self._connection_cls(self, **kwargs)
  742. 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__
  743. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: self.__connection = connection or engine.raw_connection()
  744. 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
  745. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self.pool.unique_connection()
  746. 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
  747. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return _ConnectionFairy(self).checkout()
  748. 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__
  749. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: rec = self._connection_record = pool._do_get()
  750. 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
  751. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self._create_connection()
  752. 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
  753. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return _ConnectionRecord(self)
  754. 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__
  755. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: self.connection = self.__connect()
  756. 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
  757. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: connection = self.__pool._creator()
  758. 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
  759. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return dialect.connect(*cargs, **cparams)
  760. 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
  761. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return self.dbapi.connect(*cargs, **cparams)
  762. 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
  763. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: return Connection(*args, **kwargs)
  764. 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__
  765. Notice: /Stage[main]/Quickstack::Neutron::Controller/Exec[neutron-db-manage upgrade]/returns: super(Connection, self).__init__(*args, **kwargs2)
  766. 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
  767. 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]
  768. 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]
  769. Notice: /Stage[main]/Apache::Mod::Default/Apache::Mod[actions]/A2mod[actions]/ensure: created
  770. Info: /Stage[main]/Apache::Mod::Default/Apache::Mod[actions]/A2mod[actions]: Scheduling refresh of Service[httpd]
  771. 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
  772. 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
  773. Notice: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Package[nova-api]: Dependency Service[mysqld] has failures: true
  774. Warning: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Package[nova-api]: Skipping because of failed dependencies
  775. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_tenant_name]: Dependency Service[mysqld] has failures: true
  776. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_tenant_name]: Skipping because of failed dependencies
  777. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_uri]: Dependency Service[mysqld] has failures: true
  778. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_uri]: Skipping because of failed dependencies
  779. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_user]: Dependency Service[mysqld] has failures: true
  780. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_user]: Skipping because of failed dependencies
  781. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_port]: Dependency Service[mysqld] has failures: true
  782. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_port]: Skipping because of failed dependencies
  783. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_password]: Dependency Service[mysqld] has failures: true
  784. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/admin_password]: Skipping because of failed dependencies
  785. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_admin_prefix]: Dependency Service[mysqld] has failures: true
  786. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_admin_prefix]: Skipping because of failed dependencies
  787. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_protocol]: Dependency Service[mysqld] has failures: true
  788. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_protocol]: Skipping because of failed dependencies
  789. Notice: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_host]: Dependency Service[mysqld] has failures: true
  790. Warning: /Stage[main]/Nova::Api/Nova_paste_api_ini[filter:authtoken/auth_host]: Skipping because of failed dependencies
  791. Notice: /Stage[main]/Nova/Exec[post-nova_config]: Dependency Service[mysqld] has failures: true
  792. Warning: /Stage[main]/Nova/Exec[post-nova_config]: Skipping because of failed dependencies
  793. Notice: /Stage[main]/Nova::Api/Exec[nova-db-sync]: Dependency Service[mysqld] has failures: true
  794. Warning: /Stage[main]/Nova::Api/Exec[nova-db-sync]: Skipping because of failed dependencies
  795. Notice: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Dependency Service[mysqld] has failures: true
  796. Warning: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Skipping because of failed dependencies
  797. Notice: /Stage[main]/Nova::Vncproxy/Nova::Generic_service[vncproxy]/Service[nova-vncproxy]: Triggered 'refresh' from 1 events
  798. Notice: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Dependency Service[mysqld] has failures: true
  799. Warning: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Skipping because of failed dependencies
  800. Notice: /Stage[main]/Nova::Consoleauth/Nova::Generic_service[consoleauth]/Service[nova-consoleauth]: Triggered 'refresh' from 1 events
  801. Notice: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Service[nova-api]: Dependency Service[mysqld] has failures: true
  802. Warning: /Stage[main]/Nova::Api/Nova::Generic_service[api]/Service[nova-api]: Skipping because of failed dependencies
  803. Notice: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Dependency Service[mysqld] has failures: true
  804. Warning: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Skipping because of failed dependencies
  805. Notice: /Stage[main]/Nova::Scheduler/Nova::Generic_service[scheduler]/Service[nova-scheduler]: Triggered 'refresh' from 1 events
  806. Notice: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Dependency Service[mysqld] has failures: true
  807. Warning: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Skipping because of failed dependencies
  808. Notice: /Stage[main]/Nova::Conductor/Nova::Generic_service[conductor]/Service[nova-conductor]: Triggered 'refresh' from 1 events
  809. Notice: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/auth_host]/ensure: created
  810. Info: /Stage[main]/Neutron::Server/Neutron_api_config[filter:authtoken/auth_host]: Scheduling refresh of Service[neutron-server]
  811. Notice: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_grant[[email protected]/neutron]: Dependency Service[mysqld] has failures: true
  812. Warning: /Stage[main]/Neutron::Db::Mysql/Mysql::Db[neutron]/Database_grant[[email protected]/neutron]: Skipping because of failed dependencies
  813. Notice: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]/ensure: created
  814. Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Service[keystone]
  815. Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Exec[keystone-manage db_sync]
  816. Info: /Stage[main]/Keystone/Keystone_config[DEFAULT/verbose]: Scheduling refresh of Exec[keystone-manage pki_setup]
  817. Notice: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Dependency Service[mysqld] has failures: true
  818. Warning: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Skipping because of failed dependencies
  819. 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
  820. Error: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: Failed to call refresh: keystone-manage db_sync returned 1 instead of one of [0]
  821. Error: /Stage[main]/Keystone/Exec[keystone-manage db_sync]: keystone-manage db_sync returned 1 instead of one of [0]
  822. Notice: /Stage[main]/Keystone/Exec[keystone-manage pki_setup]: Triggered 'refresh' from 14 events
  823. Info: /Stage[main]/Keystone/Exec[keystone-manage pki_setup]: Scheduling refresh of Service[keystone]
  824. Notice: /Stage[main]/Keystone/Service[keystone]: Dependency Service[mysqld] has failures: true
  825. Warning: /Stage[main]/Keystone/Service[keystone]: Skipping because of failed dependencies
  826. Notice: /Stage[main]/Keystone/Service[keystone]: Triggered 'refresh' from 19 events
  827. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[_member_]: Dependency Service[mysqld] has failures: true
  828. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[_member_]: Skipping because of failed dependencies
  829. Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Dependency Service[mysqld] has failures: true
  830. Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_service[neutron]: Skipping because of failed dependencies
  831. Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_service[ceilometer]: Dependency Service[mysqld] has failures: true
  832. Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_service[ceilometer]: Skipping because of failed dependencies
  833. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Dependency Service[mysqld] has failures: true
  834. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[admin]: Skipping because of failed dependencies
  835. Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_role[ResellerAdmin]: Dependency Service[mysqld] has failures: true
  836. Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_role[ResellerAdmin]: Skipping because of failed dependencies
  837. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[Member]: Dependency Service[mysqld] has failures: true
  838. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[Member]: Skipping because of failed dependencies
  839. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Dependency Service[mysqld] has failures: true
  840. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova_ec2]: Skipping because of failed dependencies
  841. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_role[SwiftOperator]: Dependency Service[mysqld] has failures: true
  842. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_role[SwiftOperator]: Skipping because of failed dependencies
  843. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat]: Dependency Service[mysqld] has failures: true
  844. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat]: Skipping because of failed dependencies
  845. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat]: Dependency Service[mysqld] has failures: true
  846. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat]: Skipping because of failed dependencies
  847. Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_endpoint[RegionOne/ceilometer]: Dependency Service[mysqld] has failures: true
  848. Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_endpoint[RegionOne/ceilometer]: Skipping because of failed dependencies
  849. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Dependency Service[mysqld] has failures: true
  850. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_tenant[services]: Skipping because of failed dependencies
  851. Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Dependency Service[mysqld] has failures: true
  852. Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user[neutron]: Skipping because of failed dependencies
  853. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_user[heat]: Dependency Service[mysqld] has failures: true
  854. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_user[heat]: Skipping because of failed dependencies
  855. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Dependency Service[mysqld] has failures: true
  856. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user[nova]: Skipping because of failed dependencies
  857. Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Dependency Service[mysqld] has failures: true
  858. Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user[glance]: Skipping because of failed dependencies
  859. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Dependency Service[mysqld] has failures: true
  860. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_role[admin]: Skipping because of failed dependencies
  861. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_user_role[heat@services]: Dependency Service[mysqld] has failures: true
  862. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_user_role[heat@services]: Skipping because of failed dependencies
  863. Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Dependency Service[mysqld] has failures: true
  864. Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_user_role[glance@services]: Skipping because of failed dependencies
  865. Notice: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Dependency Service[mysqld] has failures: true
  866. Warning: /Stage[main]/Keystone::Endpoint/Keystone_service[keystone]: Skipping because of failed dependencies
  867. Notice: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Dependency Service[mysqld] has failures: true
  868. Warning: /Stage[main]/Keystone::Endpoint/Keystone_endpoint[RegionOne/keystone]: Skipping because of failed dependencies
  869. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_role[heat_stack_user]: Dependency Service[mysqld] has failures: true
  870. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_role[heat_stack_user]: Skipping because of failed dependencies
  871. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat-cfn]: Dependency Service[mysqld] has failures: true
  872. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_service[heat-cfn]: Skipping because of failed dependencies
  873. Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user[ceilometer]: Dependency Service[mysqld] has failures: true
  874. Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user[ceilometer]: Skipping because of failed dependencies
  875. Notice: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user_role[ceilometer@services]: Dependency Service[mysqld] has failures: true
  876. Warning: /Stage[main]/Ceilometer::Keystone::Auth/Keystone_user_role[ceilometer@services]: Skipping because of failed dependencies
  877. Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Dependency Service[mysqld] has failures: true
  878. Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_service[cinder]: Skipping because of failed dependencies
  879. Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Dependency Service[mysqld] has failures: true
  880. Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_endpoint[RegionOne/cinder]: Skipping because of failed dependencies
  881. Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Dependency Service[mysqld] has failures: true
  882. Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_service[glance]: Skipping because of failed dependencies
  883. Notice: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Dependency Service[mysqld] has failures: true
  884. Warning: /Stage[main]/Glance::Keystone::Auth/Keystone_endpoint[RegionOne/glance]: Skipping because of failed dependencies
  885. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Dependency Service[mysqld] has failures: true
  886. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_user_role[nova@services]: Skipping because of failed dependencies
  887. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Dependency Service[mysqld] has failures: true
  888. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user[admin]: Skipping because of failed dependencies
  889. Notice: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Dependency Service[mysqld] has failures: true
  890. Warning: /Stage[main]/Keystone::Roles::Admin/Keystone_user_role[admin@admin]: Skipping because of failed dependencies
  891. Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Dependency Service[mysqld] has failures: true
  892. Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user[cinder]: Skipping because of failed dependencies
  893. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Dependency Service[mysqld] has failures: true
  894. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova_ec2]: Skipping because of failed dependencies
  895. Notice: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat-cfn]: Dependency Service[mysqld] has failures: true
  896. Warning: /Stage[main]/Heat::Keystone::Auth/Keystone_endpoint[RegionOne/heat-cfn]: Skipping because of failed dependencies
  897. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift_s3]: Dependency Service[mysqld] has failures: true
  898. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift_s3]: Skipping because of failed dependencies
  899. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift_s3]: Dependency Service[mysqld] has failures: true
  900. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift_s3]: Skipping because of failed dependencies
  901. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Dependency Service[mysqld] has failures: true
  902. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_service[nova]: Skipping because of failed dependencies
  903. Notice: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Dependency Service[mysqld] has failures: true
  904. Warning: /Stage[main]/Nova::Keystone::Auth/Keystone_endpoint[RegionOne/nova]: Skipping because of failed dependencies
  905. Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Dependency Service[mysqld] has failures: true
  906. Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_user_role[neutron@services]: Skipping because of failed dependencies
  907. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift]: Dependency Service[mysqld] has failures: true
  908. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_service[swift]: Skipping because of failed dependencies
  909. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift]: Dependency Service[mysqld] has failures: true
  910. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_endpoint[RegionOne/swift]: Skipping because of failed dependencies
  911. Notice: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Dependency Service[mysqld] has failures: true
  912. Warning: /Stage[main]/Neutron::Keystone::Auth/Keystone_endpoint[RegionOne/neutron]: Skipping because of failed dependencies
  913. Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Dependency Service[mysqld] has failures: true
  914. Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Dependency Exec[neutron-db-manage upgrade] has failures: true
  915. Warning: /Stage[main]/Neutron::Server/Service[neutron-server]: Skipping because of failed dependencies
  916. Notice: /Stage[main]/Neutron::Server/Service[neutron-server]: Triggered 'refresh' from 53 events
  917. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_user[swift]: Dependency Service[mysqld] has failures: true
  918. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_user[swift]: Skipping because of failed dependencies
  919. Notice: /Stage[main]/Swift::Keystone::Auth/Keystone_user_role[swift@services]: Dependency Service[mysqld] has failures: true
  920. Warning: /Stage[main]/Swift::Keystone::Auth/Keystone_user_role[swift@services]: Skipping because of failed dependencies
  921. Notice: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Dependency Service[mysqld] has failures: true
  922. Warning: /Stage[main]/Cinder::Keystone::Auth/Keystone_user_role[cinder@services]: Skipping because of failed dependencies
  923. Notice: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]/ensure: created
  924. Info: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]: Scheduling refresh of Exec[glance-manage db_sync]
  925. Info: /Stage[main]/Glance::Api/Glance_cache_config[DEFAULT/auth_url]: Scheduling refresh of Service[glance-api]
  926. Notice: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: Dependency Service[mysqld] has failures: true
  927. Warning: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: Skipping because of failed dependencies
  928. 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
  929. 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]
  930. Error: /Stage[main]/Glance::Registry/Exec[glance-manage db_sync]: glance-manage db_sync returned 1 instead of one of [0]
  931. Notice: /Stage[main]/Glance::Registry/Service[glance-registry]: Dependency Service[mysqld] has failures: true
  932. Warning: /Stage[main]/Glance::Registry/Service[glance-registry]: Skipping because of failed dependencies
  933. Notice: /Stage[main]/Glance::Registry/Service[glance-registry]: Triggered 'refresh' from 15 events
  934. Notice: /Stage[main]/Glance::Api/Service[glance-api]: Dependency Service[mysqld] has failures: true
  935. Warning: /Stage[main]/Glance::Api/Service[glance-api]: Skipping because of failed dependencies
  936. Notice: /Stage[main]/Glance::Api/Service[glance-api]: Triggered 'refresh' from 24 events
  937. Notice: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]/ensure: created
  938. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-collector]
  939. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-agent-central]
  940. Info: /Stage[main]/Ceilometer::Agent::Auth/Ceilometer_config[DEFAULT/os_auth_region]: Scheduling refresh of Service[ceilometer-api]
  941. Notice: /Stage[main]/Ceilometer::Collector/Service[ceilometer-collector]/ensure: ensure changed 'stopped' to 'running'
  942. Info: /Stage[main]/Ceilometer::Collector/Service[ceilometer-collector]: Unscheduling refresh on Service[ceilometer-collector]
  943. Notice: /Stage[main]/Ceilometer::Agent::Central/Service[ceilometer-agent-central]/ensure: ensure changed 'stopped' to 'running'
  944. Info: /Stage[main]/Ceilometer::Agent::Central/Service[ceilometer-agent-central]: Unscheduling refresh on Service[ceilometer-agent-central]
  945. Notice: /Stage[main]/Ceilometer::Api/Service[ceilometer-api]/ensure: ensure changed 'stopped' to 'running'
  946. Info: /Stage[main]/Ceilometer::Api/Service[ceilometer-api]: Unscheduling refresh on Service[ceilometer-api]
  947. Notice: /Stage[main]/Apache::Mod::Cgi/Apache::Mod[cgi]/A2mod[cgi]/ensure: created
  948. Info: /Stage[main]/Apache::Mod::Cgi/Apache::Mod[cgi]/A2mod[cgi]: Scheduling refresh of Service[httpd]
  949. Notice: /Stage[main]/Heat/User[heat]/groups: groups changed '' to 'heat'
  950. 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.
  951. 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.
  952. 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.
  953. 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.
  954. 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.
  955. 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.
  956. 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.
  957. 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.
  958. 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.
  959. 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.
  960. 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
  961. 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]
  962. 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]
  963. Notice: /Stage[main]/Heat::Api_cfn/Service[heat-api-cfn]: Triggered 'refresh' from 38 events
  964. Notice: /Stage[main]/Heat::Api/Service[heat-api]/ensure: ensure changed 'stopped' to 'running'
  965. Info: /Stage[main]/Heat::Api/Service[heat-api]: Unscheduling refresh on Service[heat-api]
  966. Notice: /Stage[main]/Heat/File[/etc/heat/]/group: group changed 'root' to 'heat'
  967. Notice: /Stage[main]/Heat/File[/etc/heat/]/mode: mode changed '0755' to '0750'
  968. Notice: /Stage[main]/Heat/File[/etc/heat/heat.conf]/owner: owner changed 'root' to 'heat'
  969. Notice: /Stage[main]/Heat::Engine/Exec[heat-encryption-key-replacement]/returns: executed successfully
  970. Notice: /Stage[main]/Heat::Engine/Service[heat-engine]/ensure: ensure changed 'stopped' to 'running'
  971. Info: /Stage[main]/Heat::Engine/Service[heat-engine]: Unscheduling refresh on Service[heat-engine]
  972. Notice: /Stage[main]/Heat::Api_cloudwatch/Service[heat-api-cloudwatch]: Triggered 'refresh' from 38 events
  973. Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Package[nova-cert]/ensure: created
  974. Info: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Package[nova-cert]: Scheduling refresh of Service[nova-cert]
  975. Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Dependency Service[mysqld] has failures: true
  976. Warning: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Skipping because of failed dependencies
  977. Notice: /Stage[main]/Nova::Cert/Nova::Generic_service[cert]/Service[nova-cert]: Triggered 'refresh' from 1 events
  978. Notice: /Stage[main]/Apache::Mod::Default/Apache::Mod[usertrack]/A2mod[usertrack]/ensure: created
  979. Info: /Stage[main]/Apache::Mod::Default/Apache::Mod[usertrack]/A2mod[usertrack]: Scheduling refresh of Service[httpd]
  980. Notice: /Stage[main]/Apache/Service[httpd]/ensure: ensure changed 'stopped' to 'running'
  981. Info: /Stage[main]/Apache/Service[httpd]: Unscheduling refresh on Service[httpd]
  982. Notice: Finished catalog run in 1148.99 seconds
Advertisement
Add Comment
Please, Sign In to add comment