How-to: Zurücksetzen eines Helion OpenStack Seed-Hosts für eine weitere virtuelle Installation

2015-02-20

How-to: Zurücksetzen eines Helion OpenStack Seed-Hosts für eine weitere virtuelle Installation

Machine-translated — the English original is authoritative.

Dies ist eine kurze Anleitung für OpenStack-Neulinge und alle, die die wunderbare Welt des Linux entdecken möchten, wie man einen Seed-Host zurücksetzt, um eine neue virtuelle Installation zu akzeptieren.

Diese Schritte sollten auf dem Seed-Host durchgeführt werden.

# Remove the baremetal.csv.vm and previous installation log files
sudo su -
cd /root
rm *.log *.vm

# Remove any of the previously created virtual machines
# Note: you may see errors if the VMs are not running, these errors can be ignored
for vm in `virsh list --all |grep -e seed -e baremetal | cut -c 7-32` ; do sudo virsh destroy $vm ; sudo virsh undefine $vm ; done

# Remove the original virtual machine images used for the build
rm /var/lib/libvirt/images/*

# That's it! The Seed Host is now ready for another virtual installation

Zum Sprungziel:

Originally published on allthingscloud.eu (2015-02-20).

← All posts