CentOS6/7下不关机识别新添加的scsi硬盘

1)需求说明

在虚拟机中,我们在服务器开机的状态下添加新的磁盘或者说从存储上映射某个LUN区域给服务器,不重启系统的情况下,往往不能够直接识别到磁盘,在遇到这种情况的时候,我们可以让系统重新扫描让服务器重新识别到磁盘。

2)处理步骤

下面看一下在系统不重启的情况,如何让系统认识新的磁盘,并能对其分区与格式化

1、在开机状态下新增磁盘

2、执行下面的命令

echo "- – -" >  /sys/class/scsi_host/host0/scan

特别注意

① “- – -” 这三个-之间是有空格的

② 假如 fdisk -l 还是未发现新硬盘,则将上面命令中的host0,替换为host1,host2,….看看

我们再查看系统日志/var/log/messages,发现对SCSI设备进行了一次重新扫描,用fdisk -l也看到了新增加的磁盘了。上面的命令主要的目的就是scan the SCSI bus。


3)操作步骤

a、查看磁盘分区信息(这里我们在虚拟机中已经添加了磁盘)

[root@localhost ~]# fdisk -l
磁盘 /dev/sda:107.4 GB, 107374182400 字节,209715200 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x00039749
   设备 Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1026047      512000   83  Linux
/dev/sda2         1026048   105883647    52428800   83  Linux
/dev/sda3       105883648   114010111     4063232   82  Linux swap / Solaris
/dev/sda4       114010112   209715199    47852544    5  Extended
/dev/sda5       114012160   134983679    10485760   83  Linux

disk-01.png

b、执行操作指令

[root@localhost ~]# cd /sys/class/scsi_host/
[root@localhost scsi_host]# ls
host0  host1  host2
[root@localhost scsi_host]# echo "- - -" >  /sys/class/scsi_host/host0/scan

c、再次查看磁盘的分区信息

[root@localhost scsi_host]# fdisk -l
磁盘 /dev/sda:107.4 GB, 107374182400 字节,209715200 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘标签类型:dos
磁盘标识符:0x00039749
   设备 Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1026047      512000   83  Linux
/dev/sda2         1026048   105883647    52428800   83  Linux
/dev/sda3       105883648   114010111     4063232   82  Linux swap / Solaris
/dev/sda4       114010112   209715199    47852544    5  Extended
/dev/sda5       114012160   134983679    10485760   83  Linux
磁盘 /dev/sdb:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘 /dev/sdc:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘 /dev/sdd:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节
磁盘 /dev/sde:21.5 GB, 21474836480 字节,41943040 个扇区
Units = 扇区 of 1 * 512 = 512 bytes
扇区大小(逻辑/物理):512 字节 / 512 字节
I/O 大小(最小/最佳):512 字节 / 512 字节

经过对比,可以发现,磁盘已经被识别了!

d、查看日志相关的信息

[root@localhost scsi_host]# tail -20 /var/log/messages
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Write Protect is off
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Cache data unavailable
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Assuming drive cache: write through
Jul 18 15:49:19 localhost kernel: sdb: unknown partition table
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: Domain Validation skipping write tests
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: Ending Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
Jul 18 15:49:19 localhost kernel: sd 0:0:1:0: [sdb] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Write Protect is off
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Cache data unavailable
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Assuming drive cache: write through
Jul 18 15:49:19 localhost kernel: sdd: unknown partition table
Jul 18 15:49:19 localhost kernel: sde: unknown partition table
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Attached SCSI disk
Jul 18 15:50:01 localhost systemd: Starting Session 132 of user root.
Jul 18 15:50:01 localhost systemd: Started Session 132 of user root.
[root@localhost scsi_host]# tail -40 /var/log/messages
Jul 18 15:49:18 localhost kernel: sd 0:0:1:0: [sdb] Write Protect is off
Jul 18 15:49:18 localhost kernel: sd 0:0:1:0: [sdb] Cache data unavailable
Jul 18 15:49:18 localhost kernel: sd 0:0:1:0: [sdb] Assuming drive cache: write through
Jul 18 15:49:18 localhost kernel: scsi 0:0:2:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
Jul 18 15:49:18 localhost kernel: scsi target0:0:2: Beginning Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:2: Domain Validation skipping write tests
Jul 18 15:49:19 localhost kernel: scsi target0:0:2: Ending Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:2: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
Jul 18 15:49:19 localhost kernel: scsi 0:0:3:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
Jul 18 15:49:19 localhost kernel: scsi target0:0:3: Beginning Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:3: Domain Validation skipping write tests
Jul 18 15:49:19 localhost kernel: scsi target0:0:3: Ending Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:3: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
Jul 18 15:49:19 localhost kernel: scsi 0:0:4:0: Direct-Access     VMware,  VMware Virtual S 1.0  PQ: 0 ANSI: 2
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: Beginning Domain Validation
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] Write Protect is off
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] Cache data unavailable
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] Assuming drive cache: write through
Jul 18 15:49:19 localhost kernel: sdc: unknown partition table
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Write Protect is off
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Cache data unavailable
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Assuming drive cache: write through
Jul 18 15:49:19 localhost kernel: sdb: unknown partition table
Jul 18 15:49:19 localhost kernel: sd 0:0:2:0: [sdc] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: Domain Validation skipping write tests
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: Ending Domain Validation
Jul 18 15:49:19 localhost kernel: scsi target0:0:4: FAST-40 WIDE SCSI 80.0 MB/s ST (25 ns, offset 127)
Jul 18 15:49:19 localhost kernel: sd 0:0:1:0: [sdb] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] 41943040 512-byte logical blocks: (21.4 GB/20.0 GiB)
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Write Protect is off
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Cache data unavailable
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Assuming drive cache: write through
Jul 18 15:49:19 localhost kernel: sdd: unknown partition table
Jul 18 15:49:19 localhost kernel: sde: unknown partition table
Jul 18 15:49:19 localhost kernel: sd 0:0:3:0: [sdd] Attached SCSI disk
Jul 18 15:49:19 localhost kernel: sd 0:0:4:0: [sde] Attached SCSI disk
Jul 18 15:50:01 localhost systemd: Starting Session 132 of user root.
Jul 18 15:50:01 localhost systemd: Started Session 132 of user root.

原创文章,作者:Net21-冰冻vs西瓜,如若转载,请注明出处:http://www.178linux.com/24759

(4)
Net21-冰冻vs西瓜Net21-冰冻vs西瓜
上一篇 2016-07-22
下一篇 2016-07-22

相关推荐

  • corosync+pacemaker+pcs 使用ansible配置高可用LAMP构架

    前言: 这篇博客的实验主要是配置两个节点基于corosync + pacemaker的高考用lamp, 是我搞得最痛苦的一次,并且结果还不稳定。主要问题是corosync 1.x + pacemaker 时,如果把pacemaker当成插件使用,尝试很多次都不成功,后来把pacemaker当成半独立的服务进行配置。 但是如此一来crm就没办法进行资源配置,只…

    Linux干货 2016-01-27
  • rpm程序包管理器使用详解

    rpm程序包管理器的使用详解   说到程序包管理器,就会想到基于CentOS系统上的rpm命令与其对应的前端处理器yum。所谓程序包,是将源代码转换为二进制格式,再组织成一个或者多个包文件供用户安装使用。rpm程序包的命名格式如下:   name-VERSION-release.arch.rpm   软件名-版本号(分为主版本m…

    Linux干货 2016-08-21
  • find—查找条件

    find—查找条件    目 录 一、根据时间戳查找: 二、根据权限查找 三、根据文件所属人owner,文件所属组group查找 四、根据搜索层级查找 五、根据文件名查找 六、根据文件类型查找    find实时查找工具,通过遍历指定路径完成文件查找 (1)工作特点: 查找速度略慢 精确查找 实时查找 可以只…

    Linux干货 2017-08-13
  • 马哥教育网络班22期+第三周课程练习

    1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。  ~]# who |sort -nu root     pts/0        2016-08-…

    Linux干货 2016-08-29
  • LVS 工作模型和调度算法

    简介   LVS是Linux Virtual Server的简写,意即Linux虚拟服务器,是一个虚拟的服务器集群系统。本项目在1998年5月由章文嵩博士成立,是中国国内最早出现的自由软件项目之一。 LVS是四层负载均衡,也就是说建立在OSI模型的第四层——传输层之上,传输层上有我们熟悉的TCP/UDP,LVS支持TCP/UDP的负载均衡 &nbs…

    Linux干货 2016-12-19
  • 第三周 用户和组管理

    1、列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。 [root@localhost ~]# who root     pts/0        2017-12-16 22:46 (192.168.43.233) root     pts/1        2017-12-16 22:46 (192.168.43.233…

    2017-12-16

评论列表(1条)

  • Aleen
    Aleen 2016-07-26 08:00

    兄弟,我转账了