- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disk and file system integrity check
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
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
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
тАО02-23-2006 11:49 AM
тАО02-23-2006 11:49 AM
disk and file system integrity check
1)Is there any need to run "fsck" regularly on filesystem to make sure filesystem is not corrupted and to avoid future problems ?
For some reason or other we are rebooting our development server regularly(once a month). I believe HP-UX dies "fsck" check on all filesystems during booting. Is this enough to avoid potential file/disk problems.
2) Are there any other procedures/checks to be done regularly to avoid potential file/disk problems.
Thanks
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-23-2006 11:57 AM
тАО02-23-2006 11:57 AM
Re: disk and file system integrity check
2. The MOST important thing to do is to mirror ALL of your disks. Disk failures will occur due to hardware problems...that has never changed although the frequency is much less than a decade or two ago.
The other part for protecting your disks and files is to severely limit the number of people with the root password and do not allow untrained administrators or consultants to have the root password.
2.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-23-2006 02:57 PM
тАО02-23-2006 02:57 PM
Re: disk and file system integrity check
Hi Raj,
As long as there is no improper shutdown or improper unmounting there is no need to run fsck.
May be to maintain optimal performance on busy file systems,
To defragment a JFS file system using fsadm, execute the following to perform both directory and extent reorganization and to generate reports before and after reorganization:
fsadm -d -D -e -E /mount_point
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-23-2006 03:01 PM
тАО02-23-2006 03:01 PM
Re: disk and file system integrity check
Hi,
you can also schedule a regular check by adding a cron job.
For example, to defragment every evening at 9 p.m. all the extents and directories within the file system mounted at /home, include the following entry in a file used by cron
0 21 * * * fsadm -d -e /home
Regards,
Siva.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-23-2006 03:55 PM
тАО02-23-2006 03:55 PM
Re: disk and file system integrity check
i think it will be wiser to spend more time on the following:
- Redundancy
- Backup and test Recovery
Frequent reboots hinder uptime.
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-23-2006 04:17 PM
тАО02-23-2006 04:17 PM
Re: disk and file system integrity check
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2006 08:53 AM
тАО02-24-2006 08:53 AM
Re: disk and file system integrity check
Other good options in a mirrored environment would be do write scripts that would look for any discrepancies between "Cur PV " and "Act PV ". You may also look at lvdisplay outputs to ensure there are no " stale " extents.
rgds....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2006 07:30 AM
тАО03-03-2006 07:30 AM
Re: disk and file system integrity check
Waht type of scripts you are looking at to check mirror disks. Can you upload them.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-03-2006 07:42 AM
тАО03-03-2006 07:42 AM
Re: disk and file system integrity check
Peace and Clean Air!
Normally, you do not need to run fsck or any other filesystem integrity checks. This is because ('cept ofr /stand on 11.11), all filesystems are "journalled" via JFS (a.k.a. VxFs).
If you mean maintenance like defragmentation - it depends on the filesystem use. For fileshare use and filesystems with very dynamic content (lots of deletes/creates,etc - like a dev/build environment) - you may occasionally run a defrag via fsadm as a previous post suggested.
But as far as regular fsck's (via reboots0 -- no need.
IMHO.