- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Redhat Linux crash
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
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
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-04-2009 01:44 AM
тАО02-04-2009 01:44 AM
Redhat Linux crash
fsck 1.35 (28-Feb-2004)
e2fsck 1.35 (28-Feb-2004)
/dev/cciss/c0d0p5 is mounted.
WARNING!!! Running e2fsck on a mounted filesystem may cause
SEVERE filesystem damage.
Do you really want to continue (y/n)? yes
/: recovering journal
fsck.ext3: Bad magic number in super-block while trying to re-open /
EXT3-fs error: ext3_get_inode_block: bad inode number: 129
4601
EXT3-fs error (device cciss/c0d0p5) in ext3_reserve_inode_write: IO failure
EXT3-fs error (device cciss/c0d0p5) in ext3_dirty_inode: IO failure
Warning... fsck.ext3 for device /dev/cciss/c0d0p5 exited with signal 11.
(Repair filesystem) 2 # fsck -y
ext3_abort called.
EXT3-fs error: ext3_journal_start_sb: Detected aborted jou
rnal
Remounting filesystem read-only
fsck
Please tell me how to recover my server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2009 05:05 AM
тАО02-04-2009 05:05 AM
Re: Redhat Linux crash
>>> WARNING!!! Running e2fsck on a mounted filesystem may cause
SEVERE filesystem damage.
You never should run fsck on a mounted file system, worst yet the root file system.
>>> /dev/cciss/c0d0p5 is mounted.
If the system crash was caused by any cause, now, that you executed fsck on a mounted file system, for sure the system is corrupted.
You probably need to reinstall the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2009 06:12 PM
тАО02-04-2009 06:12 PM
Re: Redhat Linux crash
Thank you. If next time comes same issue what shall i do to recovery OS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-04-2009 08:15 PM
тАО02-04-2009 08:15 PM
Re: Redhat Linux crash
As the message say dont run it on mounted FS
use umount command and unmount all the file systems on /etc/fstab
then run fsck.ext3 on each file system you unmounted.
Good luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2009 04:58 AM
тАО02-05-2009 04:58 AM
Re: Redhat Linux crash
There you can run fsck for the root file system.
In case of a power failure, you normally won't need to run fsck unless it's asked by the operating system on boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-12-2009 03:21 PM
тАО11-12-2009 03:21 PM
Re: Redhat Linux crash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-13-2009 03:52 AM
тАО11-13-2009 03:52 AM
Re: Redhat Linux crash
If you have a problem with the root filesystem, you cannot unmount it: unmounting the root filesystem would make it impossible to access any commands.
Instead, the correct procedure for fsck'ing the root filesystem is to re-mount it read-only before running a fsck on it:
mount -o remount,ro /
When the system has crashed and stops early in the boot sequence because of filesystem errors, the /etc/mtab file may be "stale" (= describing the situation before the crash, not the current situation). That may confuse the "mount" command... and the unwary sysadmin, too.
/proc/mounts is another list of currently-mounted filesystems. Because it is managed by the kernel in the virtual /proc filesystem, it is always up to date.
If the system stops early in the boot sequence, it is possible that /proc is not mounted yet: fortunately, this is simple to fix.
mount /proc
Because /proc is a virtual filesystem, it does not need fsck'ing and is always safe to mount.
In your case, the system apparently had already successfully checked the root filesystem and mounted it read/write, as part of the normal boot sequence.
After that, the system checks any other configured filesystems... but apparently your system encountered a filesystem error that it cannot fix without asking an explicit permission from the sysadmin (because the fix may require truncating a file or something).
Then the system dropped to a shell prompt, and you told it to run fsck on the root filesystem that already was checked and mounted read/write.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-17-2009 05:19 PM
тАО11-17-2009 05:19 PM
Re: Redhat Linux crash
Ask HP if you have support, else renew your support contract.