- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Reinstalling OS with EMC disks
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 07:48 AM
03-24-2003 07:48 AM
What steps are involved in saving the customer data on the EMC disks. I was told just exporting a mapfile would do. Is this correct and how would I do this? This is my first time reinstalling an OS with EMC already configured. All replies will be welcomed and appreciated.?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 07:53 AM
03-24-2003 07:53 AM
Re: Reinstalling OS with EMC disks
What kind of problems is PeoplePuke having? The first thing I would do is to bring the machine up to date with all of the HP recommended patches using the Custom Patch Manager under the "Maintenance and Support" area (then look under "patching").
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 07:54 AM
03-24-2003 07:54 AM
Re: Reinstalling OS with EMC disks
Take a good full backup. Then vgexport -p -m mapfile /dev/vgblahblah -s.
Regards,
RZ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 07:58 AM
03-24-2003 07:58 AM
SolutionRe-installing OS is a very bad idea. I would be the last one to attempt doing it just because the application is having issues. What kind of issues are you facing anyway?.
But I am aware of the politics at the work place.
There are two ways you can install.
1. Re-installing the same OS you have now. You can simply use make_tape_recovery to achieve this task.
2. Re-installing the OS from the latest CDs. This is tedious as you will have to reconfigure it to match the current OS configuration. This includes but not limited to, network, password/group, additional softwares, drivers, patches, kernel tuning etc.,
In either the case, I would suggest you to export the map files of your volume groups with various options and copy them to another server.
#vgexport -p -v -s -m /tmp/vgxx.s.map vgxx
#vgexport -p -v -m /tmp/vgxx.map -f /tmp/vgxx.disks vgxx
Repeat the above for all the VGs and copy /tmp/*.map files to another system. Once you reinstalled the OS, you would then copy them back and import the VGs.
#mkdir /dev/vgxx
#mknod /dev/vgxx/group c 64 0x0?0000 (? should be a unique number, ll /dev/*/group will list all the group files)
#vgimport -v -s /tmp/vgxx.s.map vgxx
The above will scan all the disks and then import the ones that correspond to vgxx.
#vgchange -a y vgxx
#mount -a (provided you synchronized the old /etc/fstab)
However, another way which is my choice would be to use vgxx.disks with vgxx.map file. You will need to modify vgxx.disks to match the disks on the new OS. You may have to change just "cx" entries. Once it is done.
#vgimport -v -m /tmp/vgxx.map -f /tmp/vgxx.disks vgxx
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:02 AM
03-24-2003 08:02 AM
Re: Reinstalling OS with EMC disks
I guess they mean fresh install rather than and ignite restore. You will also have to reinstall additional file sets e.g. Mirror/UX or Adv JFS, OS patches as well as the application.
Anyway here is the vgexport commands.
#vgexport -v -m vgXX.map -p vgXX
#mkdir /dev/vgXX
#mknod /dev/vgXX/group c 64 0x0?0000
#vgimport -v -m XX.map vgXX /dev/dsk.cXtXdX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:13 AM
03-24-2003 08:13 AM
Re: Reinstalling OS with EMC disks
Rememember your talking rebuilding loading the O/S in between, and thus addresses will change, you may need that vgid info.
I use:
vgexport -pvs -m /etc/lvmconf/
Then I get import with:
vgimport -vs -m /etc/lvmconf/
Just a thought,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:15 AM
03-24-2003 08:15 AM
Re: Reinstalling OS with EMC disks
Just my 2cents,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:17 AM
03-24-2003 08:17 AM
Re: Reinstalling OS with EMC disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:33 AM
03-24-2003 08:33 AM
Re: Reinstalling OS with EMC disks
Are the kernel parameters the same between the two machines?
Are the logical volumes the same sizes? Even /tmp and /var/tmp.
Is the peoplesoft task scheduler executing scripts that someone wrote? It's the first place to look.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 08:37 AM
03-24-2003 08:37 AM
Re: Reinstalling OS with EMC disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2003 09:03 AM
03-24-2003 09:03 AM