- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- problem spliting /var mirror
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
04-25-2007 09:49 AM
04-25-2007 09:49 AM
A disk failed in my server. I'm trying to split all the mirrors but I can not remove the mirror from /var it says that the file system is busy, what should I do?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2007 09:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2007 09:56 AM
04-25-2007 09:56 AM
Re: problem spliting /var mirror
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2007 10:05 AM
04-25-2007 10:05 AM
Re: problem spliting /var mirror
Lvsplit should never be a part of your disk replacement strategy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2007 01:52 PM
04-25-2007 01:52 PM
Re: problem spliting /var mirror
The system is slow because, may be the system is trying to access a part of disk and waiting for the disk to process that request. I agree with the above responses which says "spliting should not be a part of disk replacement strategy".
Though, At this stage you have 2 options,
Option 1) recreate the mirrors of already split lvol's, and issue the following commands,
pvchange -a n /dev/dsk/c#t#d# (this command will tell the system, not to access this device path anymore, there by your system might respond faster for rest of the activities)
remove the disk out of the system physically and replace with the new one.
vgcfgrestore -n vg00 /dev/rdsk/c#t#d#
.
.
Rest of the steps can be found in "what if good disk goes bad document", I will try to find or attach the doc here later.
option 2) If the system is too slow to respond to any commands, then, try spliting the var lvol with "-k" option to lvreduce command.
lvreduce -k -m 1 /dev/vg00/lvol# (-k specifies the system to ignore the disk that is causing the issue, just telling the system to assume the disk is not available anymore)
Quite strange though why it should complain that FS is busy, unless you were trying to umount. Usually slitting should not give such a message and you do not require to unmount a FS for mirror split....
Senthil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2007 01:57 PM
04-25-2007 01:57 PM
Re: problem spliting /var mirror
Try choosing one the options i have given you in my previous response. For option 1, I promised a doc. I'm attaching the pdf.
Senthil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2007 10:01 AM
04-27-2007 10:01 AM
Re: problem spliting /var mirror
I really appreciate your help because I'm very new in HPUX