5

I have a problem with ext3 filesystem. It's not writable and I can't remount it.

# echo 1 > /file -bash: /file: Read-only file system # mount /dev/mapper/VolGroup00-LogVol00 on / type ext3 (rw) # mount -o remount,rw / mount: block device /dev/VolGroup00/LogVol00 is write-protected, mounting read-only 

Can I fix it without server restart?

2
  • Anything in the logs about LVM problems? Commented Jul 8, 2009 at 13:08
  • Can you post output of cat /proc/mounts? Commented Jul 8, 2009 at 13:15

3 Answers 3

7

If this happened since the machine booted, check dmesg or other system logs for reports of anything terrifying going wrong with the hardware (e.g IO errors reported when accessing the underlying disks) such errors can trigger the kernel to put things into read-only mode until someone (you!) comes along to make a more informed decision.

7

It's probably dropped into read-only mode at the LVM level (lvs will lack a 'w' in the second caracter of the Attr column), so you might be able to flick it back with an lvchange --ignorelockingfailure -p w VolGroup00/LogVol00. Alternately, the VG may have dropped write access (typically caused by a hardware failure), in this case indicated by a lack of w in the first character of the Attr column in the output of vgs. That can't be changed at runtime, by the look of it.

If LVM has dropped write perms on either the LV or VG, it's probably for a very, very good reason, and unless you care not for your data, I'd be looking into the root cause rather than trying to bludgeon LVM into allowing writes again.

2
  • 1
    Attr for this volume: -wi-ao, lvchange command returns "Locking type 1 initialisation failed." Commented Jul 8, 2009 at 11:28
  • Answer extended. Commented Jul 9, 2009 at 2:50
2

There is probably filesystem error. Run fsck after umount. This wont require reboot. Try to fsck without using -a or -p.

2
  • Yes, it will require a reboot: it is his root filesystem :P Commented Jul 8, 2009 at 13:13
  • My bad. Should have read question properly. :'( Commented Jul 8, 2009 at 18:47

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.