IGOS Nusantara, OpenStack dan PackStack: Perbedaan revisi
Dari IGNwiki
Baris 42: | Baris 42: | ||
== Rerensi == | == Rerensi == | ||
+ | * https://fedoraproject.org/wiki/Getting_started_with_virtualization | ||
* https://www.berrange.com/posts/2013/03/01/installing-a-4-node-fedora-18-openstack-folsom-cluster-with-packstack/ | * https://www.berrange.com/posts/2013/03/01/installing-a-4-node-fedora-18-openstack-folsom-cluster-with-packstack/ | ||
+ | * http://www.howtoforge.com/virtualization-with-kvm-on-a-fedora-17-server |
Revisi terkini pada 10 April 2013 07.28
Daftar isi
Skema Jaringan
- Skema ...
Persiapan
- Siapkan ...
Pasang
pasang paket
# yum install @virtualization
atau
# yum install kvm libvirt python-virtinst qemu-kvm
atau
# yum install kvm libvirt
service libvirtd
Jalankan service libvirtd
# service libvirtd restart
buat openstackvms.xml
# cat > openstackvms.xml <<EOF <network> <name>openstackvms</name> <bridge name='virbr1' stp='off' delay='0' /> </network> EOF
virsh
# virsh net-define openstackvms.xml Network openstackvms defined from openstackvms.xml
# virsh net-start openstackvms Network openstackvms started
Instalasi virtual
# virt-install --name ign8_64a --ram 1000 --file /var/lib/libvirt/images/ign8_64a.img \ --location http://192.168.228.5/ign/8/all/ \ --noautoconsole --vnc --file-size 10 --os-variant fedora17 \ --network network:default --network network:openstackvms