Skip to content

Instantly share code, notes, and snippets.

@mzealey
mzealey / migrate_live_ssh
Last active May 16, 2024 09:57 — forked from gersilex/migrate_live_ssh
OpenNebula Live Migration Examples
#!/usr/bin/env bash
#
# Live migration-over-SSH script for use with OpenNebula.
# Set the 'migrate' action to run this script in /etc/one/oned.conf
# for your respective virtualization type. Only KVM is supported right now.
#
# Author: Leroy Förster <leroy.foerster@immonet.de>
# Contributor: Paul Jost <paul.jost.immonet.de>
# Contributor: Mark Zealey - port to ONE 5.10
#

Install Ceilometer + Gnocchi with backend Ceph

In Controller node

  • Create database
mysql -uroot -pWelcome123

CREATE DATABASE gnocchi;
GRANT ALL PRIVILEGES ON gnocchi.* TO 'gnocchi'@'localhost' IDENTIFIED BY 'Welcome123' WITH GRANT OPTION ;