CentOS 루트 파일 시스템은 재부팅 후 읽기 전용으로 전환됩니다.

CentOS 루트 파일 시스템은 재부팅 후 읽기 전용으로 전환됩니다.

최근에 한 AWS 인스턴스에서 다른 인스턴스로 rsync를 수행했습니다. 이로 인해 루트 파일 시스템이 읽기 전용 모드로 전환되었습니다.

읽기-쓰기 권한으로 파일 시스템을 다시 마운트할 수 있지만 시스템을 재부팅하면 읽기 전용으로 되돌아갑니다.

mount
...
/dev/xvda1 on / type xfs (ro,relatime,attr2,inode64,noquota)
...
sudo mount -o remount,rw /dev/xvda1

mount
...
/dev/xvda1 on / type xfs (rw,relatime,attr2,inode64,noquota)
...

재부팅

mount
...
/dev/xvda1 on / type xfs (ro,relatime,attr2,inode64,noquota)
...

CentOS 인스턴스입니다.

유사한 게시물을 찾을 수 없습니다. 누락된 게시물이 있으면 리디렉션해 주세요. 도움을 주시면 감사하겠습니다.

업데이트

journalctl
...
Jul 23 11:48:36 ip-xxx.compute.internal systemd-remount-fs[1773]: mount: can't find LABEL=root
Jul 23 11:48:36 ip-xxx.compute.internal systemd-remount-fs[1773]: /bin/mount for / exited with exit status 1.
Jul 23 11:48:36 ip-xxx.compute.internal systemd[1]: systemd-remount-fs.service: main process exited, code=exited, status=1/FAILURE
Jul 23 11:48:36 ip-xxx.compute.internal systemd[1]: Failed to start Remount Root and Kernel File Systems.
Jul 23 11:48:36 ip-xxx.compute.internal systemd[1]: Unit systemd-remount-fs.service entered failed state.
Jul 23 11:48:36 ip-xxx.compute.internal systemd[1]: systemd-remount-fs.service failed.
...
cat /etc/fstab | head -n 1
LABEL=root /         xfs    defaults,relatime  1 1

해결책 nKn에서 허용되는 답변을 참조하세요. 그러나 내 경우에는 몇 가지 추가 단계를 수행해야 했습니다.

  • 이는 루트/부팅 파일 시스템이므로 볼륨을 다른 인스턴스에 연결한 다음 원래 인스턴스에 다시 연결하기 전에 파일 시스템에 레이블을 다시 지정해야 했습니다. 이는 AWS에 있었으며 두 인스턴스를 중지하고 볼륨, 작업 > 볼륨 연결 > 두 번째 인스턴스 선택으로 이동하여 수행할 수 있습니다.

  • 내 시스템은 xfs이므로 다음을 사용해야 합니다: xfs_admin -L "root" /dev/sdb (https://docs.oracle.com/cd/E37670_01/E37355/html/ol_admin_xfs.html) 두 번째 인스턴스에 연결되면

답변1

문제는 여기에 있는 것 같습니다. 다음과 같이 언급하셨을 수도 있습니다.

Jul 23 11:48:36 ip-xxx.compute.internal systemd-remount-fs[1773]: mount: can't find LABEL=root

파일 에서 /etc/fstab라벨이 붙은 장치를 마운트하려고 root하지만 어떤 이유로 더 이상 사용할 수 없습니다. 업데이트/업그레이드로 인해 레이블이 삭제되었을 수도 있습니다(일반적인 일은 아니지만). 문제를 해결하려면 장치에 레이블을 다시 지정하면 됩니다.

디렉터리 아래의 파일 시스템에서 장치를 찾은 /dev후 다음을 실행해야 합니다.

e2label /dev/your-device root

그런 다음 재부팅하면 파일 시스템을 rw모드로 마운트해야 합니다.

관련 정보