全文検索:
- 01 lvmをマウント
- ==== 01 lvmをマウント ====== ===== ①スナップショット作成 ===== <code console> # lvcreate -s -n snapshot -L 5G /dev/dis... set to 256 Block device 253:47 </code> ===== ②マウント ===== ==== 普通にマウントしようとすると、エラーがでます。 ==== <code console> # mount /dev/dg7tv18txypm17/snapshot /mnt/ mount: you must specify the filesystem type </code> ==== ①mapperを作成 ==== <code console> # kpartx -p
- 05 Xen Guestインストール
- == 05 Xen Guestインストール ====== ===== ①LVM用意 ===== <code console> # lvcreate testvg -L50G -n test-lvm # mkfs.ext3 /dev/testvg/test-lvm </code> ===== ②virt-installでインストール ===== <code console> # virt-install -n testvm -r 2048 --nographics \ --fi... --network=bridge:xenbr0 --network=bridge:xenbr1 </code> ===== Bridgeの追加 xenbr1の作り方 ===== HV上で作業 [[htt
- 02 Xen マイグレーション
- ====== 02 Xen マイグレーション ====== ===== 構成 ===== <code> Xen Dom-0 Xen Dom-0 (192.168.10.1... +---------+ Storage Server </code> ===== Xendの設定変更 ===== <code console> # cat /etc/xen/xend-config.sxp (xend-relocation-server yes) (xen... ion-hosts-allow '') # /etc/init.d/xend restart </code> ===== マイグレーション ===== Xen01からXen02へ testvmをマイグレー
- 04 Xen - Memory確認
- ====== 04 Xen - Memory確認 ====== <code console> # xentop xentop - 11:57:05 Xen 3.4.4 20 domains: 1 run... 0 0 2 2918 54103 331503 0 </code> <code console> # xm list Name ID Mem VCPUs State Time... 18 4096 1 -b---- 17559.2 </code> ^ 文字 ^状態 ^ 意味 ^ |r|runnning|CPUを使用して処理中| |b|blo
- 08 CPU割り当て率
- 8 CPU割り当て率 ====== ===== 仮想マシンのCPU割り当て率の確認 ===== <code console> # xm sched-credit -d 仮想マシン名 {'cap': 5, 'weight': 256} </code> ・weight: 全体の中での割り当て率設定。標準が256 ・cap: 実CPU単独で... 変更 ===== たとえば意図的に遅くしたい場合とかに使う === capの場合 === <code console> # xm sched-credit -d 仮想マシン名 -c 数値 </code> === weightの場合 === <code console> # xm sched-credit
- 03 Xenインバンドに制限をかける
- アウトバウンドとインバウンド、両方のトラフィックを制御するわけです。 インバウンドの計算方法 <code console> # xm list i3e6lqftov4csw --long (dev... ) (backend 0) ) ) ・ ・ ・ </code> rate '625000,50000' 625000bit * 8 = 5000000bi
- 06 Xen NTP(時間がずれる)
- 以下の内容をファイルに記述し反映することで、お客様の任意の設定で同期を行うことが可能です。 <code console> # echo "xen.independent_wallclock=1" >> /etc/sysctl.conf # sysctl -p </code> ===== Windows ===== 仕様でずれるので、定期的にNTPを実行する [[
- 10 Xen Memory割当
- ====== 10 Xen Memory割当 ====== 単位はMB <code> xm mem-set VMNAME 16384 </code> {{tag>Xen}}