Windows IT Pro is the leading independent community for IT professionals deploying Microsoft Windows server and client applications and technologies.
  
  
  Advanced Search 


 

VIRTUALIZATION TECHNOLOGY BLOG
A COMMUNITY FORUM FOR VIRTUAL MACHINE TECHNOLOGY USERS    

[11/21/2008]  
The Standalone Hyper-V 2008 Server
(2 Comments)
POST A COMMENT

Microsoft first released its Hyper-V virtualization platform with Windows Server 2008, leading many people to assume that Hyper-V required the Server 2008 OS—essentially equating the product with Virtual Server 2005 and out of the ESX Server class. However, that has never been the case. Following the initial release of Hyper-V with Server 2008, Microsoft announced a standalone version of Hyper-V called Hyper-V Server 2008. Hyper-V Server 2008 is a free download (http://www.microsoft.com/downloads/details.aspx?FamilyId=6067CB24-06CC-483A-AF92-B919F699C3A0&displaylang=en) that doesn’t require Server 2008.

Table A summarizes the primary differences between Hyper-V Server 2008 and the version of Hyper-V that ships with Server 2008. Essentially, Hyper-V Server 2008 is oriented toward smaller businesses that haven’t adopted Server 2008. It provides the same levels of performance and the same guest support but is more limited in that it doesn’t provide support for more than four CPUs or more than 32GB of RAM. Also, it lacks enterprise-oriented features such as support for Failover Cluster and Quick Migration.

After reading about how the Hyper-V architecture uses the parent partition for device drivers, you might wonder how Hyper-V Server 2008 supports devices. Hyper-V Server still uses a minimal Windows Server installation in the parent partition that contains device drivers and a bare minimum of functionality, such as the capability to network and create a domain connection. But you can’t use it to create VMs because there’s no GUI and no commands for creating a VM. Although it might be theoretically possible to create VMs with WMI, in practice you must use a remote instance of the Hyper-V Manager to do so.


- posted by Michael Otey

[11/21/2008]  
ESXi vs. ESX Server
POST A COMMENT

Just as there are two versions of Hyper-V, there are two versions of ESX Server: ESX Server 3.5 and the free ESXi. You can download ESXi from https://www.vmware.com/tryvmware/login.php?eval=esxi&t=1, but ESX Server is available only as part of VMware’s VI3 suite. Both products share the same hypervisor architecture, both offer the same level of performance, and both support exactly the same guest OSs. However, ESXi lacks the Linux-based service console that the full ESX Server product offers. ESXi, therefore, is quite small at 32MB in size. (In fact, at the most recent VMworld conference, VMware distributed copies of ESXi on USB keys.) This small footprint makes ESXi easy to install and deploy, and reduces the host’s attack surface and patching requirements. You use the VI3 client to manage ESXi remotely. A detailed comparison of ESXi and ESX Server is available at http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1006543.
- posted by Michael Otey

[10/31/2007]  
Essential Virtual Machine Additions
POST A COMMENT

An often-overlooked task after the initial setup of a virtual machine (VM) running the Windows guest OS is installing the optional Virtual Machine Additions. This indispensable package provides several key benefits, including improved performance of the guest OS, integrated use of the mouse, optimized video drivers, and time synchronization with the host. For Virtual PC, shared folders, drag-and-drop capabilities, and clipboard sharing are additional productivity enhancements available.

All these features aren't native to the guest OS, however. For better integration and optimal performance, installing Virtual Machine Additions is essential. Setup is a manual process and can only be executed when the guest OS is powered up and running. For Virtual Server, locate the desired VM, then click Virtual Machine Additions under the Configuration section, followed by Install Virtual Machine Additions. To do this with Virtual PC, choose Action, then Install, or Update Virtual Machine Additions from the drop-down menu. Under Windows, the setup program will start automatically; follow the on-screen instructions to complete the installation.

With the release of Virtual PC 2007, Virtual Machine Additions has also been upgraded to version 13.883. Virtual Machine Additions is binary compatible on both Virtual PC and Virtual Server, and it's always best to install the latest version on all guest OSs. Doing so ensures the best possible experience when a VM is executed on either platform. Note that installation of Virtual Machine Additions on the host OS isn't required and will actually degrade overall system performance if applied.

To retrieve version information for Virtual Machine Additions in Virtual PC, highlight a running VM on the main console, choose Action, Properties, and review the General tab. For Virtual Server, simply go to the VM status page and locate Virtual Machine Additions under the configuration section.

Within a guest OS, use the Add/Remove Programs applet, navigate to the Virtual Machine Additions entry, and select Click here for support information--another method that works under both platforms.


- posted by Desmond Lee

[2/26/2007]  
Backing Up Virtual Server Guests
(1 Comment)
POST A COMMENT

Backing Up Virtual Server Guests Creating backups of virtual server guests creates some challenges for virtualization in a production environment. If you’re running an enterprise-class virtualization product such as VMware’s ESX Server with the Infrastructure bundle, you have some options like VMware Consolidated Backup or Vizioncore’s ESXRanger that let you back up a virtual server guest while it’s still running. However, if you’re running one of the free virtualization products, such as Microsoft Virtual Server 2005 or VMware Server, you must shut down the virtual server guest to get a clean image backup of the virtual server guest files stored on the host. Shutting down the virtual server host can be problematic, especially if the server must run 24x7. In light of this problem, here’s a backup solution I developed to back up some of my clients' virtual server guests that are running in a production environment. It uses a combination of traditional backup methods along with a backup of the virtual server files that are stored on the host. This gives clients a lot of restore/recovery flexibility in case they have to restore individual files to the virtual server guest, perform a full backup, or move the virtual server guest to a different host in the event of a host server failure. Backup of Virtual Server Files on the Host Server Over the weekend, I run a script that shuts down the virtual server guest(s) running on the host. I install a backup agent on the host server and use VERITAS Software's Backup Exec to perform a full backup on the host. With the virtual server guest shut down, I can get a clean backup of all the virtual server guest files. This allows me to perform an image restore to a different host server if the original host crashes. In this example, the virtual server guest is called vs1 and the virtual server configuration file is called vs1.vmx. All of the virtual server guest files reside on the d: drive in Virtual Machines Folder. The batch file that stops the virtual server guest(s) contains this line:

  call vmware-cmd "d:\Virtual Machines\vs1\vs1.vmx" stop trysoft  
This batch file calls the vmware-cmd batch file that shuts down the virtual server guest based on the configuration stored on the vs1.vmx file. The batch file assumes that you’ve added the folder where the virtual server vmware-cmd.bat file resides to the path environment variable on the host server; otherwise you will have to enter the full path name to the vmware-cmd.bat file. If you have multiple virtual server guests running on the host, you could add additional lines to the batch file to shut them down as well. If you want to minimize the downtime for each virtual server guest and have extra disk space, you could create a batch file that shuts down the virtual server guest, copies all the virtual server guest files to a different folder or server, then starts up the virtual server guest. You could then move the next virtual server guest until the entire virtual server guest files are copied to a different folder or server. Then you can back up these files by using your regular backup software. After the virtual server guest files are backed up, you can restart the guest with a second batch file that contains this line:
  call vmware-cmd "D:\Virtual Machines\vs1\vs1.vmx" start  
This command will start the virtual server called vs1. You can schedule these batch files using the Windows Scheduler utility, which is included with Windows Server 2003. The scheduler tool, combined with a scheduled backup in Backup Exec, allows you to automate this backup process. Full and Differential Backups using a Backup Agent On each virtual server guest, I installed a backup agent, just like on a physical server. On Monday through Wednesday, I run a differential backup on the virtual server guest using Backup Exec. On Thursday night, I use Backup Exec to run a full backup. After a week of backups, I have the following files: 1. Image files of all of your virtual server guests. These files are from the backup that runs over the weekend. This image backup of the virtual server guest files allows you to move the virtual server guests to a different host in the event of a host failure or major disaster. You can even prestage the images by restoring the images onto a different virtual server host for disaster recovery purposes. 2. Three differential backups that were run on Monday through Wednesday. These differential backups allow you to restore files that were modified since the last backup and prevent you from having to restore multiple incremental restore jobs. The differentials let you restore the server as of Wednesday night with one full restore and one differential restore. 3. One full backup of each server that was run on Thursday. A full backup is necessary using a “traditional” backup method to reset the archive bit that the differential backups use to determine which files have been modified. If you don't run a full backup, the differential backup would eventually grow quite large. Alternatively, you could use the modified date of the file, but in my experience the archive bit is more reliable. If a host server crashes, you would run the image restore job and the latest differential backup (or full backup depending on when the server crashed) to fully recover the virtual server guest. This backup approach gives you the flexibility of being able to move the virtual server guests to a different host and retain the ability to restore a single modified file, without having to restore the entire server.
- posted by Alan Sugano

[1/10/2005]  
Virtualization Hero Contest Results Are In
(1 Comment)
POST A COMMENT

The Virtualization Hero Contest results are in. See the winners and read all the entries here.
- posted by Ward Ralston

[11/16/2004]  
Only Two Weeks Left
(4 Comments)
POST A COMMENT

Thank you again for sharing your ideas about the ways you use (and benefit from) virtualization technology, and for taking the time to ask questions. This feedback is very helpful, and we hope that those of you who are new to virtualization have received valuable information from this blog.

As for the contest, there are only two weeks left! If you haven't entered your personalized virtualization scenario, now's your chance. You could win a copy of Virtual Server 2005!

- posted by Ward Ralston

[11/5/2004]  
Check out the VirtualServer Migration Toolkit (VSMT)
(6 Comments)
POST A COMMENT

I have been looking over the first round of entries for the Virtualization Hero contest, and I am absolutely impressed by the cleverness of these Virtual Server 2005 real-world implementations. At Microsoft, we love to see our customers using this product in ways that we have never thought of. We want to see more!
 
I also want to take a moment to let everyone know that the VirtualServer Migration Toolkit (VSMT) was released to the web as free download for Virtual Server. You can download this tool here.

This tool will simplify the migration of a physical server into a virtual environment managed by Virtual Server 2005.

We are looking forward to reading through the next set of entries - Keep them coming in!!

Thank you on behalf of the Virtual Server Team,
Ward Ralston
Technical Product Manager
Microsoft Corporation


- posted by Ward Ralston

[10/26/2004]  
How do you use Virtualization Technology?
(10 Comments)
POST A COMMENT

On behalf of the Microsoft Virtual Server Team I would like to express our thanks to you, the reader, and Windows IT Pro for allowing us the opportunity to understand how real-world IT Professionals are using (and benefiting from) virtual machine technology.



Through our initial beta and partner programs for Virtual Server 2005, we have seen some very insightful uses for Virtual Server 2005. For example, one company is using Virtual Server 2005 to create and maintain an Offline Root CA. Another company is using Virtual Server 2005 as a way to test patches on their critical servers before deploying the patch in a production environment.

Customers have told us that they commonly use virtual machines for server consolidation, application re-hosting, and test and development, and we'd love to know how those scenarios are working for you. And, if you have other valuable uses for Virtual Server 2005, we want to hear your ideas!



We are very excited about this opportunity to connect with you about Virtual Server 2005, so please take a moment to share your experiences in this blog - and enter your virtual machine solution in the corresponding contest. You could win a copy of Microsoft Virtual Server 2005 Enterprise Edition or Standard Edition!



Thank you on behalf of the Virtual Server Team,
Ward Ralston
Technical Product Manager
Microsoft Corporation


- posted by Ward Ralston

Search Virtualization Technology Blog
 
Virtualization Technology Blog
NOVEMBER 2009
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30      
or

 Recently in Virtualization Technology Blog
The Standalone Hyper-V 2008 Server

Last Comment
Thanks for pointing out the missing table link. We'll get it fixed asap....
(2 Comments)
ESXi vs. ESX Server
Make a Comment
Essential Virtual Machine Additions
Make a Comment
Backing Up Virtual Server Guests

Last Comment
This article is not very usefull for those of us using Microsoft Virtual Server 2005 R2. What about...
(1 Comments)
Virtualization Hero Contest Results Are In

Last Comment
f...
(1 Comments)

More blogs about technology,
software, and Windows.
Windows IT Pro Home Register FAQ for Windows WinInfo News
Europe Edition About Us Contact Us/Customer Service Media Kit Affiliates / Licensing  
SQL Server Magazine Office & SharePoint Pro DevProConnections IT Job Hound
Left-Brain.com Technology Resource Directory asp.netPRO ITTV Windows SuperSite 
 
 Windows IT Pro is a Division of Penton Media Inc.
 © 2009 Penton Media, Inc. Terms of Use | Privacy Statement