IGOS Nusantara, OpenStack dan PackStack: Perbedaan revisi
Dari IGNwiki
Baris 8: | Baris 8: | ||
== Pasang == | == Pasang == | ||
− | === | + | === pasang paket === |
yum install @virtualization | yum install @virtualization | ||
atau | atau | ||
yum install kvm libvirt python-virtinst qemu-kvm | 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 | cat > openstackvms.xml <<EOF | ||
<network> | <network> | ||
Baris 21: | Baris 26: | ||
EOF | EOF | ||
− | === | + | === virsh === |
# virsh net-define openstackvms.xml | # virsh net-define openstackvms.xml | ||
Network openstackvms defined from openstackvms.xml | Network openstackvms defined from openstackvms.xml | ||
Baris 28: | Baris 33: | ||
Network openstackvms started | Network openstackvms started | ||
− | + | === Instalasi virtual === | |
− | + | ||
virt-install --name ign8_64a --ram 1000 --file /var/lib/libvirt/images/ign8_64a.img \ | virt-install --name ign8_64a --ram 1000 --file /var/lib/libvirt/images/ign8_64a.img \ | ||
--location http://192.168.228.5/ign/8/all/ \ | --location http://192.168.228.5/ign/8/all/ \ | ||
− | --noautoconsole --vnc --file-size 10 --os-variant | + | --noautoconsole --vnc --file-size 10 --os-variant fedora17 \ |
--network network:default --network network:openstackvms | --network network:default --network network:openstackvms | ||
== Rerensi == | == Rerensi == | ||
* 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/ |
Revisi per 10 April 2013 07.02
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