云服务器 linux文件系统异常an error occurren during the file system check导致服务器启动失败



文件系统宕机,重启后报错,无法启动



处理流程:

1.编辑/etc/fstab将文件系统挂载去掉

# vim /etc/fstab 



#/dev/xvdb /data ext3 defaults 1 2

#/dev/xvdc  /data1 ext3    defaults    0  0



2.重启进入系统,对两个分区进行fsck修复检测(建议使用screen,避免中途被打断)

# screen -S xvdc



# fsck -y /dev/xvdc

fsck from util-linux-ng 2.17.2

e2fsck 1.41.12 (17-May-2010)

/dev/xvdc: recovering journal

/dev/xvdc has gone 510 days without being checked, check forced.

Pass 1: Checking inodes, blocks, and sizes

Pass 2: Checking directory structure

Pass 3: Checking directory connectivity

Pass 4: Checking reference counts

Pass 5: Checking group summary information



/dev/xvdc: ***** FILE SYSTEM WAS MODIFIED *****

/dev/xvdc: 425/32768000 files (68.5% non-contiguous), 4265913/131072000 blocks



# fsck -y /dev/xvdb

fsck from util-linux-ng 2.17.2

e2fsck 1.41.12 (17-May-2010)

/dev/xvdb contains a file system with errors, check forced.

Pass 1: Checking inodes, blocks, and sizes

Free blocks count wrong for group #2637 (10474, counted=14592).

Fix? yes



Free blocks count wrong for group #2638 (9318, counted=10345).

Fix? yes



Free blocks count wrong for group #2639 (11172, counted=12429).

Fix? yes



Free blocks count wrong for group #2640 (8375, counted=8887).

Fix? yes



Free blocks count wrong (22177812, counted=22268375).

Fix? yes



Inode bitmap differences:  -19694041 -19709957 -19718159

Fix? yes



Free inodes count wrong for group #2404 (7638, counted=7639).

Fix? yes



Free inodes count wrong for group #2406 (8104, counted=8105).

Fix? yes





Free inodes count wrong for group #2407 (8088, counted=8089).

Fix? yes



Free inodes count wrong (32383813, counted=32383816).

Fix? yes



/dev/xvdb: ***** FILE SYSTEM WAS MODIFIED *****

/dev/xvdb: 384184/32768000 files (63.4% non-contiguous), 108803625/131072000 blocks



3.检测完磁盘以后打开挂载,并重新挂载,重启系统

# cat /etc/fstab 



#

# /etc/fstab

# Created by anaconda on Thu Aug 14 21:16:42 2014

#

# Accessible filesystems, by reference, are maintained under '/dev/disk'

# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info

#

UUID=94e4e384-0ace-437f-bc96-057dd64f42ee / ext4 defaults,barrier=0 1 1

tmpfs                   /dev/shm                tmpfs   defaults        0 0

devpts                  /dev/pts                devpts  gid=5,mode=620  0 0

sysfs                   /sys                    sysfs   defaults        0 0

proc                    /proc                   proc    defaults        0 0

/dev/xvdb /data ext3 defaults 1 2

/dev/xvdc  /data1 ext3    defaults    0  0



# ll /data

total 0

# ll /data1

total 0



# mount /dev/xvdb /data

# mount /dev/xvdc /data1



重启系统

# reboot

云服务器 linux文件系统异常an error occurren during the file system check导致服务器启动失败的更多相关文章

  1. redhat系统服务器重启后提示An error occurred during the file system check.

    问题描述 浪潮一台NF8480M3外观红灯报警,鉴于无法登陆带外,只能对服务器进行断电重启操作 问题现象 重启后进入开机过程并报错,报错如下内容及图片如下所示,正常来说进入此界面后直接输入root密码 ...

  2. linux系统重启后提示An error occurred during the file system check.

    一.问题描述 生产环境中一台浪潮NF8480M3外观红灯报警,鉴于无法登陆带外管理口,只能对服务器进行断电重启操作 二.问题现象 重启后进入开机过程并报错,正常来说进入此界面后直接输入root密码即可 ...

  3. an error occurred during the file system check错误的解决

    [root@GIT ~]# fsck -A /dev/mapper/VolGroup-lv_root 下面的选择,一路Y就行了,最后reboot,问题解决!

  4. an error occured during the file system check

    打开虚拟机的时候,报错: 出错原因: 我之前修改了/etc/fstab文件, 原先/etc/fstab文件中有一行是这样的: LABEL=/i01              /u01          ...

  5. error occurred during the file system check

    fsck -c 然后一路:y reboot 问题解决!!!

  6. VMware中CentOS6.5启动出现An error occurred during the file system check

     

  7. Error:/etc/fstab:Read-only file system错误的解决办法

    1.挂载60T存储,设置开机自动挂载,UUID编号配置错误导致系统无法启动 2.根据提示进入维护状态,输入root密码,进入fstab删除UUID等内容,结果报错     Error:/etc/fst ...

  8. 解决 docker 报错: Error starting daemon: error initializing graphdriver: backing file system is unsupported for this graph driver

    CentOS 7.5 x64下 sudo yum install docker -y systemctl enable docker systemctl start docker 发现启动失败 jou ...

  9. 报错解决——linux下执行sh出现异常"syntax error: unexpected end of file"

    有时我们在linux下执行一个sh文件,会报错“SYNTAX ERROR:UNEXPECTED END OF FILE”,这个现象主要是工作的系统环境改变造成的. 若最初脚本中是在windows下,使 ...

随机推荐

  1. c++纯虚函数在父类中调用的规避

    构造和析构函数不允许调用纯虚函数,可以先调用虚函数,里面再调用纯虚函数实现. class Base{public:    virtual void foo()=0;    Base() { call_ ...

  2. bzoj1345 序列问题

    题意: 给你一个序列,长度为n.你需要进行n - 1次操作,每次合并两个相邻的数,代价是max,合并后成为max,求最小代价. n <= 1e6 解: 有个显然的做法是nlogn的,显然不行.. ...

  3. zookeeper安装和使用(Windows环境)

    zookeeper安装和使用(Windows环境) 2017年11月27日 10:36:07 董昊炘的博客 阅读数:14785 标签: zookeeperwindows   zookeeper 一.简 ...

  4. Nginx的特性与核心类别及配置文件和模块详解

    1.root path 设置web资源路径,用于指定请求的根文档目录,从根开始匹配 root:root/URI 2.alias path 指定路径别名,只能用于location中,从最后一个/开始匹配 ...

  5. 20190312 Windows上Kafka集群

    1. 复制config/server.properties为server1.properties和server2.properties 2. 以server1.properties为例,修改配置 br ...

  6. Nginx负载均衡中后端节点服务器健康检查的一种简单方式

    摘自:https://cloud.tencent.com/developer/article/1027287 一.利用nginx自带模块ngx_http_proxy_module和ngx_http_u ...

  7. IOS绘图的核心步骤

    在view上绘制一个图形的方式有很多种,表现形式可能不一样,但其实质步骤都是一样的: 1)获取上下文 2)绘制路径 3)添加路径到上下文 4)修改图形状态参数 5)渲染上下文 下面我们以画一个圆形来演 ...

  8. pyppeteer 报错-无法连接到浏览器

    问题 程序报错: Failed to connect to browser port: http://127.0.0.1:57899/json/version 原因 虽然pyppeteer在首次启动时 ...

  9. liunx必知必会(2)

    一.SSH免密登陆配置 1.相关概念 SSH 为 Secure Shell(安全外壳协议) 的缩写. 很多ftp.pop和telnet在本质上都是不安全的,因为它们在网络上用明文传送口令和数据,别有用 ...

  10. UVALive - 3266 Tian Ji -- The Horse Racing(贪心)

    题目链接 题意 两人赛马,每居获胜得200,平局无事发生,输了也输200.求最优的策略使赢的钱最多. 分析 排序,从最快的开始比,若比不过,则用最弱的消耗最强的.模拟即可. #include<i ...