From Fedora Project Wiki

No edit summary
(Added capp1 rebuild howto)
Line 21: Line 21:


== Description ==
== Description ==
blabalbalablab<BR>
blablablabal
== Rebuild capp1 ==
Log into cnode1<BR>
Check that no capp1 domain is running
sudo virsh list
<BR>
If there is a capp1 running, proceed as follow
sudo virsh destroy capp1
sudo virsh undefine capp1
<BR>
Format capp1 disk for a better new virtual install
sudo /sbin/mkfs.ext3 -j /dev/VolGroup00/appliance1
<BR>
You can now start install a new fresh capp1 virtual system
sudo virt-install -n capp1 -r 1024 --vcpus=2 --os-variant fedora10 --os-type linux \
-l http://mirrors.kernel.org/fedora/releases/10/Fedora/x86_64/os//images/ \
--disk="path=/dev/VolGroup00/appliance1" --nographics --noacpi --hvm --network=bridge:br2 \
-x "console=ttyS0 http://mirrors.kernel.org/fedora/releases/10/Fedora/x86_64/os/images/ \
--ip=209.132.178.19 netmask=255.255.254.0 gateway=209.132.179.254 dns=4.2.2.2"
Note : ''If the netowrk messes up during the prompt install, just configure it manually. NM will takes care of it then.''
=== Network configuration ===
capp1 network interfaces will need to be setup manually in order to work against physical one.
<BR>
Here is how to proceed, create your network interface
sudo vi /etc/sysconfig/network-scripts/ifcfg-eth1
<BR>
Then add this following configuration to the file
DEVICE=eth1
BOOTPROTO=static
ONBOOT=yes
PEERNTP=yes
IPADDR=$physical_br_IP
NETMASK=$physical_br_NETMASK
HWADDR=$random_mac_addr
<BR>
Reproduce the above for eth3 against br3<BR>
You can get br? IP and netmask on cnode1 with <ifconfig> cd-line.
<BR>




[[Category:Infrastructure SOPs]]
[[Category:Infrastructure SOPs]]

Revision as of 00:14, 16 June 2009

Shortcuts:
ISOP:FEDORACLOUD
ISOP:OVIRT


Note.png
We are still working on the Fedora cloud setup, the content of this page will grow up at the same time we work and troubleshout all services.

Fedora Cloud computing

Contact Information

Owner: Fedora Infrastructure Team

Contact: #fedora-admin, sysadmin-cloud group

Persons: mmcgrath, SmootherFrOgZ, G

Location: Phoenix ?

Servers: capp1.fedoraproject.org, cnode[1-5].fedoraproject.org, store[1-4]

Purpose: Provide Virtual Machine for Fedora contributors.

Description

blabalbalablab
blablablabal

Rebuild capp1

Log into cnode1
Check that no capp1 domain is running

sudo virsh list


If there is a capp1 running, proceed as follow

sudo virsh destroy capp1
sudo virsh undefine capp1


Format capp1 disk for a better new virtual install

sudo /sbin/mkfs.ext3 -j /dev/VolGroup00/appliance1


You can now start install a new fresh capp1 virtual system

sudo virt-install -n capp1 -r 1024 --vcpus=2 --os-variant fedora10 --os-type linux \
-l http://mirrors.kernel.org/fedora/releases/10/Fedora/x86_64/os//images/ \
--disk="path=/dev/VolGroup00/appliance1" --nographics --noacpi --hvm --network=bridge:br2 \
-x "console=ttyS0 http://mirrors.kernel.org/fedora/releases/10/Fedora/x86_64/os/images/ \
--ip=209.132.178.19 netmask=255.255.254.0 gateway=209.132.179.254 dns=4.2.2.2"

Note : If the netowrk messes up during the prompt install, just configure it manually. NM will takes care of it then.

Network configuration

capp1 network interfaces will need to be setup manually in order to work against physical one.
Here is how to proceed, create your network interface

sudo vi /etc/sysconfig/network-scripts/ifcfg-eth1


Then add this following configuration to the file

DEVICE=eth1
BOOTPROTO=static
ONBOOT=yes
PEERNTP=yes
IPADDR=$physical_br_IP
NETMASK=$physical_br_NETMASK
HWADDR=$random_mac_addr


Reproduce the above for eth3 against br3
You can get br? IP and netmask on cnode1 with <ifconfig> cd-line.