0

以下は、私が従った手順です。

$> neutron port-create int-net --mac-address  00:11:22:01:01:01 --name 1_eth0

$> cinder create --display-name disk1 100

$> nova boot --flavor iso_flavor --image iso --security-groups default --nic port-id=$(neutron port-list | grep  1_eth0 | awk '{print $2}') --block-device source=volume,dest=volume,id=$(cinder list | grep disk1 | awk '{print $2}'),bus=virtio,bootindex=1,type=disk ISO_VM

$> nova delete ISO_VM

$> neutron port-create int-net --mac-address  00:11:22:01:01:01 --name 1_eth0

$> nova boot --flavor iso_flavor --security-groups default --nic port-id=$(neutron port-list | grep  1_eth0 | awk '{print $2}')  --block-device-mapping vda=$(cinder list | grep disk1 | awk '{print $2}') ISO_FROM_VOLUME

VM を起動した後、ファイルにアクセスして再起動すると、変更が反映されません。それらは失われました。

4

1 に答える 1

0

変更を保持したい場合は、「スナップショットから起動」を選択することをお勧めします。

1) OS のインストールと構成。

2)を使用してスナップショットを作成します

nova image-create --poll myInstance myInstanceSnapshot

3) による検証

nova image-list

4) によってスナップショットから起動できます。

nova boot --flavor m1.tiny --image myInstanceSnapshot myNewInstance

于 2014-11-26T12:28:57.987 に答える