Problem with the "invalid url to installer files" error while attempting a rolling pool upgrade. The web server was IIS 8. The problem was that a mime type for the empty extension was not defined. Solved by creating a new mime type of "." [actually type a period and nothing else into the text box] with type "application/octet-stream". You also need to have a mime type for bz2 and possibly more. I simply created a mime type of "application/octet-stream" for extensions ".*" to include all corner cases. This resolved the 404 error and Xen Center could now see the install files on the website.
Wednesday, November 20, 2013
Sunday, September 1, 2013
Xenserver: Deleting VDIs locked by the control domain
You can run into a situation where during a canceled move, a
VDI is created on a SR that is locked by the control domain, even after a
reboot.
- Find the UUID of the VDI: xe vdi-list name-label = <Name of the VDI>
- Find the UUID of the block device that the VDI is mounted with: xe vbd-list vdi-uuid=<UUID of the VDI>
- Unplug the block device, this will corrupt the VDI: xe vbd-unplug uuid=<UUID of the block device>
- Make the control domain forget the vdi: xe vdi-forget uuid=<UUID of the VDI>
- Rescan the SR: xe vdi-scan sr-uuid=<UUID of the SR>
- Destroy the VDI file: xe vdi-destroy uuid=<UUID of the VDI>
Monday, August 5, 2013
Journey into the Microsoft Private Cloud
The HP c7000 blade server chassis arrived today. Join me as I construct our Private Cloud, leveraging Microsoft System Center over the next month.
Update: Hardware installed, but the migration project has been put on hold until I can carve out budget for HP Virtual Connect modules.
Tuesday, May 28, 2013
Mount USB disk on Xen Server
How to mount a USB disk on Xen Server
- Insert the USB stick or disk
- Check the device name with FDISK -l
- Make a mount point directory: mkdir /mnt/usbdisk
- Mount the disk (assuming FAT file system with mount -t vfat -o rw,users /dev/DEVNAME /mnt/usbdisk the DEVNAME is contained in the results of step 2.
- When done, use umount /mnt/usbdisk
- Then remove the drive.
Wednesday, May 22, 2013
Procedure to restore a SpamTitan appliance from a backup
Restore procedures.
- Install the VM, give it the original IP address, DNS, and domain name.
- Install the Original License File, or a new license, the backup does not contain the license.
- Update the SpamTitan appliance to the same version as the last backup.
- Restore the backup.
- If the network address was not set to be the same you must do so, the backup does not contain the network interface information.
- Replace the branding and report images, the backup does not contain any of the branding images.
- Make regular automated backups to an FTP server.
- Keep a copy of the license key file.
- Keep copies of corporate branding.
Could not create a VHD file in Hyper V, "A Virtual Disk Provider for the specified file was not found"
Issue:
Could not create a VHD file in Hyper V, "A Virtual Disk Provider for the specified file was not found"
Cause:
Backup Exec 2010 R3 drivers for tape library modify registry settings.
Resolution:
http://support.microsoft.com/kb/2013544
Could not create a VHD file in Hyper V, "A Virtual Disk Provider for the specified file was not found"
Cause:
Backup Exec 2010 R3 drivers for tape library modify registry settings.
Resolution:
http://support.microsoft.com/kb/2013544
Hyper V role fails installation, requires multiple reboots.
Issue description:
Hyper V role installation fails, during start up and message shows up which states the role installation failed, and a rollback is occurring.
Cause:
For me this was being caused by the system reserved partition (SRP). The SRP was in an offline state.
Resolution:
I used DISKPART to bring the volume online, and to assign it a drive letter to hold it online. Also I turned Automount back on, it was previously disabled because it was causing the Dell DRAC firmware upgrade to fail. The role addition succeeded this time.
Thursday, May 16, 2013
Use IPMI tool to change HP ILO 100 password from Xen Server
List all the users
# ipmitool user list
output:
# ipmitool user list
output:
ID
Name
Enabled Callin Link Auth IPMI Msg Channel Priv Limit
1
true
true false
true ADMINISTRATOR
2
Operator true
true false
true ADMINISTRATOR
3
admin
true true
false true
ADMINISTRATOR
4
OEM
true true false
true
ADMINISTRATOR
5
Operator true
true false
true ADMINISTRATOR
6
admin
true true
false true
ADMINISTRATOR
7
OEM
true true
false true
ADMINISTRATOR
8
Operator true
true false
true ADMINISTRATOR
Change the password for user 3
# ipmitool user
set password 3 <PUT THE PASSWORD FOR USER#3 HERE>
Enable user 3.
# ipmitool user
enable 3
Set user 3 to administrator rights
# ipmitool user
priv 3 4
Now log in from the web console.
Monday, May 13, 2013
Backup - AOFO: Initialization failure on: "System?State". Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS). V-79-10000-11226 - VSS Snapshot error
Backup - AOFO: Initialization failure on: "System?State". Advanced Open File Option used: Microsoft Volume Shadow Copy Service (VSS).
V-79-10000-11226 - VSS Snapshot error. The Microsoft Volume Shadow Copy Service (VSS) snapshot provider selected returned: "Unexpected provider error". Ensure that all provider services are enabled and can be started. Check the Windows Event Viewer for details.
Had this error start occurring with BUE 2010 R3 on my backup execution server itself. When I ran "vssadmin list writers" several writers were in an error & timed out [7] state. Issue was caused by there not being enough free space on the system volume to include a VSS snapshot of itself because the feature set of this server has grown so large including WDS, and iSCSI target.
Solution was to move the storage location for snapshots for the system volume to the C: drive.
Subscribe to:
Posts (Atom)