Quick Review: Boxee Box
December 27, 2011 – 12:22 am | 3 Comments

Some of the technical issues with Boxee Box could have been fixed if the dev team was paying more attention to addressing the bugs rather than adding “features” of dubious value. In the final analysis, for the price and ease of use, Boxee Box is the best in its class and price range. You just need to be mindful of its limitations and buy it in hope of future improvements to its usability.

Read the full story »
Networking

Unix and Linux network configuration. Multiple network interfaces. Bridged NICs. High-availability network configurations.

Applications

Reviews of latest Unix and Linux software. Helpful tips for application support admins. Automating application support.

Data

Disk partitioning, filesystems, directories, and files. Volume management, logical volumes, HA filesystems. Backups and disaster recovery.

Monitoring

Distributed server monitoring. Server performance and capacity planning. Monitoring applications, network status and user activity.

Commands & Shells

Cool Unix shell commands and options. Command-line tools and application. Things every Unix sysadmin needs to know.

Home » Applications, Disks and Volumes

Informix database migration on HP-UX

Submitted by on May 1, 2006 – 10:51 amNo Comment
Informix database migration on HP-UX

Rather than rebuilding an Informix database on the new HP-UX server, it possible to migrate the existing installation from the old server. The database resides on raw disks with transparent volumes that are not visible in /etc/fstab, or via bdf or df -k.

To view the database volumes on the old server:

cd /dev/vx/rdsk/dgxxx/dbvolxxx

Once there, you can view the size of the volumes, which will need to be re-created on the new server:

vxprint -rth  (volume_name)

On the new server create a disk group using VxVM or LVM. Then create database volumes using parameters shown by vxprint from the previous step. Do not create any file systems.

On the old server go to /dev/vx/rdsk/dgxxx/(volume_name) and note permissions and ownership for each directory level. Replicate these settings on the new server.

Use the dd command to copy each volume from the old server to the new server. You will need to add hostname and IP of the old server to the ~/.rhosts file on the new server to allow remsh operations under root account.

/usr/bin/dd if=/dev/vx/rdsk/dgxxx/(volume_name) bs=64k | remsh (newserver) -l root /usr/bin/dd of=/dev/vx/rdsk/dgxxx/(volume_name) bs=64k

Have the DBAs verify database integrity.

Popularity: 2% [?]

Related posts:

  1. Solaris boot disk copy
  2. Database operations with SQL and Korn shell

Leave a comment!

Add your comment below, or trackback from your own site. You can also subscribe to these comments via RSS.

Be nice. Keep it clean. Stay on topic. No spam.

You can use these tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">

This is a Gravatar-enabled weblog. To get your own globally-recognized-avatar, please register at Gravatar.