'Cloud > KVM' 카테고리의 다른 글
Resize qcow2 image (0) | 2013.09.28 |
---|---|
KVM/QEMU - How to Migration(include LIve) (0) | 2012.05.13 |
[KVM] CentOS 5.x에서 qcow2 이미지파일 직접 마운트/접근 (with LVM) (1) | 2011.04.01 |
[IaaS] - CloudStack CE 2.1.7 설치 (1) | 2011.02.22 |
Resize qcow2 image (0) | 2013.09.28 |
---|---|
KVM/QEMU - How to Migration(include LIve) (0) | 2012.05.13 |
[KVM] CentOS 5.x에서 qcow2 이미지파일 직접 마운트/접근 (with LVM) (1) | 2011.04.01 |
[IaaS] - CloudStack CE 2.1.7 설치 (1) | 2011.02.22 |
대규모 데이터를 다루기 어려운 이유?? (0) | 2012.02.13 |
---|---|
[NoSQL] CAP이론, 그리고 좀더 명확히 해둬야할 Partition tolerance......... (0) | 2012.02.13 |
NoSQL vs RDB 에 대한 엉뚱한 생각.... (1) | 2012.02.12 |
KVM currently supports savevm/loadvm and offline or live migration Migration commands are given when in qemu-monitor (Alt-Ctrl-2). Upon successful completion, the migrated VM continues to run on the destination host.
You can migrate a guest between an AMD host to an Intel host and back. Naturally, a 64-bit guest can only be migrated to a 64-bit host, but a 32-bit guest can be migrated at will.
There are some older Intel processors which don't support NX (or XD), which may cause problems in a cluster which includes NX-supporting hosts. To disable NX for a given guest, start it with such a parameter: -cpu qemu64,-nx
Anchor(1) 1 These features are unique to KVM Live Migration as far as I know. If you know of other hypervisor that support any of them please update this page or let me (Uri) know.
The user interface is through the qemu monitor (alt-ctrl-2 on the SDL window)
migrate [-d] <URI> migrate_cancel
The '-d' will let you query the status of the migration.
With no '-d' the monitor prompt returns when the migration completes. URI can be one of 'exec:<command>' or tcp:<ip:port>
info migrate
migrate_set_speed <speed> set bandwidth control parameters (max transfer rate per second)
A is the source host, B is the destination host:
1. Start the VM on B with the exact same parameters as the VM on A, in migration-listen mode:
B: <qemu-command-line> -incoming tcp:0:4444 (or other PORT))
2. Start the migration (always on the source host):
A: migrate -d tcp:B:4444 (or other PORT)
3. Check the status (on A only):
A: (qemu) info migrate
1. unlimit bandwidth used for migration:
A: migrate_set_speed 1g
2. stop the guest:
A: stop
3. continue with either TCP or exec migration as described above.
stop migrate_set_speed 4095m migrate "exec:gzip -c > STATEFILE.gz"
gzip -c -d STATEFILE.gz | <qemu-command-line> -incoming "exec: cat" or <qemu-command-line> -incoming "exec: gzip -c -d STATEFILE.gz"
stop migrate_set_speed 4095m migrate "exec:gpg -q -e -r KEY -o STATFILE.gpg"
gpg -q -d -r KEY STATEFILE.gpg | <qemu-command-line> -incoming "exec:cat"
migrate "exec:gpg -q -e -r KEY | nc B 4444"
nc -l 4444 | gpg -q -d -r KEY | <qemu-command-line> -incoming "exec:cat"
1. Setup
2. Transfer Memory
3. Stop the guest
4. Transfer State
5. Continue the guest
Instructions for kvm-13 and below: MigrationQemu0.8.2.
Resize qcow2 image (0) | 2013.09.28 |
---|---|
KVM/QEMU Guide #1 (Intro & Basic) (0) | 2012.06.22 |
[KVM] CentOS 5.x에서 qcow2 이미지파일 직접 마운트/접근 (with LVM) (1) | 2011.04.01 |
[IaaS] - CloudStack CE 2.1.7 설치 (1) | 2011.02.22 |
AWS OpsWorks에서 Custom Chef Cookbook 사용하기 (0) | 2013.10.28 |
---|---|
[가상화&자동화] HDD Image :: Pre-Installed Template vs. OS-Only Template (with Chef/Puppet) (about AMI) (1) | 2013.02.24 |
[PDF] - MIgration Xen to KVM (0) | 2012.05.12 |
CloudStack 3.0 설치 후기.... (0) | 2012.05.06 |
왜!! Citrix는 CloudStack을 Apache재단으로 옮겼나?" (0) | 2012.05.05 |
[가상화&자동화] HDD Image :: Pre-Installed Template vs. OS-Only Template (with Chef/Puppet) (about AMI) (1) | 2013.02.24 |
---|---|
Virtualization - Full vs Para (Appendix Pass-Through : Full vs Para) (0) | 2012.05.13 |
CloudStack 3.0 설치 후기.... (0) | 2012.05.06 |
왜!! Citrix는 CloudStack을 Apache재단으로 옮겼나?" (0) | 2012.05.05 |
CloudStack + SDN (0) | 2012.05.01 |
후기랄것도 없다...
뭐가 이렇게 간단해??!!!!!!
2.x대의 그 애매모호성이 대폭 없어진 느낌... (물론 Zone이니, Pod니, Cluster, Host 등의 개념을 처음 접하면 역시나 난해함이 있을수도 있겠지만...)
그러나, 결론은 2.x에 비하자면 매우 만족!!!!!!!!!! 장비만 너끈하다면, 1시간이면 뚝딱 IaaS 인프라 구축이 완료될듯...
한마디로 요약하자면, Windows에서 프로그램 설치 하듯... 위자드(설치 마법사) 수준으로 쉬움~~ 강추~~!!
* 설치 메뉴얼은 따로 작성안한다... 왜? CloudStack공식 가이드 문서인 Quick-Installation 문서가 너무 잘 되어 있기때문에~ 굳이~ 사족달 필요 없다....
링크 : Quick Install Guide (English)
http://download.cloud.com/releases/3.0.0/CloudStack3.0QuickInstallGuide.pdf
Virtualization - Full vs Para (Appendix Pass-Through : Full vs Para) (0) | 2012.05.13 |
---|---|
[PDF] - MIgration Xen to KVM (0) | 2012.05.12 |
왜!! Citrix는 CloudStack을 Apache재단으로 옮겼나?" (0) | 2012.05.05 |
CloudStack + SDN (0) | 2012.05.01 |
Install OpenNebula-2.2-1 with Xen (0) | 2012.03.18 |
"Why Is Citrix Moving CloudStack to the Apache Foundation?"
"Why Align CloudStack with the AWS APIs?"
원문 : http://gevaperry.typepad.com/
Citrix is making a big announcement today. It has two parts. First, it's moving its CloudStack framework, which was owned by Citrix and distributed at CloudStack.org through a GPL license, to the Apache Foundation. Second, it is aligning CloudStack withAmazon Web Services' architecture and APIs.
This is big news that's sure to ruffle some feathers in the cloud computing space. So the questions I have are:
The move appears straightforward. Citrix acquired CloudStack through its $200 millionacquisition of Cloud.com in July 2011. From what I'm hearing, it has had good success with enterprise and provider adoption of the product, but it was far from being accepted as an industry de facto standard, which is what, I assume, they had hoped for. So it would make sense for them to move it to a respected open source foundation like Apache.
But wait. There was already a OpenStack vying for that de facto standard open source platform status, and Citrix announced its support for it two months before the Cloud.comacquisition. The company said it would continue to support both platforms after the acquisition, so what happened?
Citrix claims that the OpenStack foundation wasn't run well: it was dominated by Rackspace and had a "pay-to-play" model. The result was that the APIs were poorly designed and the product lacked stability and maturity (a claim I have heard from others). At the same time, while OpenStack is getting support from the likes of Cisco and HP, the community is somewhat fragmenting, with multiple distributions and extensions from the likes of startups Cloudscaling and Piston Cloud. This started creating a problem for enterprise customers and providers who were getting confused and having a bad experience with OpenStack.
In the meantime, Citrix is feeling competitive pressure from the company it views as its primary rival for actual customers (as opposed to winning the hearts and minds of the "community"): VMWare.
It simply couldn't wait and had to go on the attack with a bold move. This is it -- and it's a pretty good one.
The final piece in making CloudStack the de facto standard cloud platform is the API. By aligning with the Amazon APIs, CloudStack gains a hghly-adopted, proven API with a massive ecosystem of integrated tools and services around it. They tell me they will have 100% compatibility by the end of this year.
But the catch is this comes on the heels of Eucalyptus's announcement that it is aligning with the AWS APIs. Eucalyptus, just a reminder, is another open source cloud platform that has been vying for leadership among enterprise customers.
With this move complete, Citrix has a production-proven stable product, which is now an open source platform managed by the widely-respected Apache Foundation, using a popular API with a massive ecosystem around it. Pretty clever, I think.
On the other hand, CloudStack is fighting on three fronts now: its traditional arch-enemy VMWare, the OpenStack camp with the dozens of vendors -- large and small -- behind it, and Eucalyptus. A regular game of thrones. And to paraphrase Game of Thrones: In the Game of Clouds, you either win or you die.
[PDF] - MIgration Xen to KVM (0) | 2012.05.12 |
---|---|
CloudStack 3.0 설치 후기.... (0) | 2012.05.06 |
CloudStack + SDN (0) | 2012.05.01 |
Install OpenNebula-2.2-1 with Xen (0) | 2012.03.18 |
Install - CloudStack CE 2.1.x ManagementComputing Node (0) | 2012.03.18 |
이상, 간략히 훌터본 바로는 이상과 같다... 자세한 것은 실제로 테스트 정도는 해봐야 윤곽이 나올듯...
CloudStack 3.0 설치 후기.... (0) | 2012.05.06 |
---|---|
왜!! Citrix는 CloudStack을 Apache재단으로 옮겼나?" (0) | 2012.05.05 |
Install OpenNebula-2.2-1 with Xen (0) | 2012.03.18 |
Install - CloudStack CE 2.1.x ManagementComputing Node (0) | 2012.03.18 |
CloudStack 2.2.13 with XenServer (on ESXi) (0) | 2012.02.25 |