Tuesday, May 28, 2013

Mount USB disk on Xen Server

How to mount a USB disk on Xen Server
  1. Insert the USB stick or disk
  2. Check the device name with FDISK -l
  3. Make a mount point directory: mkdir /mnt/usbdisk
  4. 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.
  5. When done, use umount /mnt/usbdisk
  6. Then remove the drive.

Wednesday, May 22, 2013

Procedure to restore a SpamTitan appliance from a backup


Restore procedures.
  1. Install the VM, give it the original IP address, DNS, and domain name.
  2. Install the Original License File, or a new license, the backup does not contain the license.
  3. Update the SpamTitan appliance to the same version as the last backup.
  4. Restore the backup.
  5. If the network address was not set to be the same you must do so, the backup does not contain the network interface information.
  6. Replace the branding and report images, the backup does not contain any of the branding images.
 So the take away from this:
  1. Make regular automated backups to an FTP server.
  2. Keep a copy of the license key file.
  3. 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

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:

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.