- Create database
mysql -uroot -pWelcome123
CREATE DATABASE gnocchi;
GRANT ALL PRIVILEGES ON gnocchi.* TO 'gnocchi'@'localhost' IDENTIFIED BY 'Welcome123' WITH GRANT OPTION ;
| #!/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 | |
| # |