首页 > 其他分享 >磁盘阵列查看命令 RAID

磁盘阵列查看命令 RAID

时间:2022-12-12 16:13:47浏览次数:39  
标签:opt RAID aALL 查看 MegaCli MegaRAID MegaCli64 磁盘阵列

#/opt/MegaRAID/MegaCli/MegaCli64  -LDInfo -Lall -aALL 查raid级别

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpAllInfo -aALL 查raid卡信息

#/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aALL 查看硬盘信息

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -aAll 查看电池信息

#/opt/MegaRAID/MegaCli/MegaCli64 -FwTermLog -Dsply -aALL 查看raid卡日志

#/opt/MegaRAID/MegaCli/MegaCli64 -adpCount 【显示适配器个数】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpGetTime –aALL 【显示适配器时间】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpAllInfo -aAll    【显示所有适配器信息】

#/opt/MegaRAID/MegaCli/MegaCli64 -LDInfo -LALL -aAll    【显示所有逻辑磁盘组信息】

#/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aAll    【显示所有的物理信息】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -GetBbuStatus -aALL |grep ‘Charger Status’ 【查看充电状态】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -GetBbuStatus -aALL【显示BBU状态信息】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -GetBbuCapacityInfo -aALL【显示BBU容量信息】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -GetBbuDesignInfo -aALL    【显示BBU设计参数】

#/opt/MegaRAID/MegaCli/MegaCli64 -AdpBbuCmd -GetBbuProperties -aALL    【显示当前BBU属性】

#/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aAll|grep 'Inquiry Data'       【查看磁盘型号】


#dmidecode | grep "Product" 查看服务器厂家

-----------------------------------------------------------------------------------

#RAID Level对应关系:

RAID Level : Primary-1, Secondary-0, RAID Level Qualifier-0       RAID 1

RAID Level : Primary-0, Secondary-0, RAID Level Qualifier-0       RAID 0

RAID Level : Primary-5, Secondary-0, RAID Level Qualifier-3       RAID 5

RAID Level : Primary-1, Secondary-3, RAID Level Qualifier-0       RAID 10

-----------------------------------------------------------------------------------

以上使用命令:/opt/MegaRAID/MegaCli/MegaCli64 -PDList -aAll|grep 'Inquiry Data' 

 

 

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/9606353/viewspace-2168452/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/9606353/viewspace-2168452/

标签:opt,RAID,aALL,查看,MegaCli,MegaRAID,MegaCli64,磁盘阵列
From: https://www.cnblogs.com/CS-ComputerScience/p/16976328.html

相关文章

  • Centos7 查看磁盘i/o, 定位占用i/o读写高的进程
     Centos7查看磁盘i/o,定位占用i/o读写高的进程概要:1、iostat用法2、先用iostat查看磁盘io是否读写负载很高3、找出使用io高的进程的工具iotop4、lsof查......
  • dremio 查看外部profile 信息
    dremiowebserver基于了jersey实际包含了比较完备的配置支持(类似springboot强大的配置支持一样)同时dremio也包含了一些测试api但是默认是关闭的,我们可以通过配置,或......
  • 【转】查看、分析memcached使用状态
    ​   访问量上升,数据库压力大,怎么办?好办法是在中间挡一层缓存!这个缓存要求高效,不能比数据库慢,否则服务质量受影响;如果能把数据用hash打散存储到硬盘,也是可以的,不过在内......
  • PMC相关RAID卡信息查看方法
    PMC相关RAID卡信息查看方法摘要昨天简单整理了LSI相关设备的信息今天计划学习下PMC相关的RAID卡信息.也就是偶昨天storcli查看controller为0的情况.感觉部分服务......
  • 查看Oracle某时刻的客户端IP连接情况
    1、查看每个oracle帐户的连接总数Sql代码 selectusername,count(username)fromv$sessionwhereusernameisnotnullgroupbyusername 2、缺省从v$session中不能......
  • Pytorch0.4.0环境搭建之详细教程、查看当前 Cuda和Cudnn版本
    版权:本文由【墨理学AI】原创、各位大佬、一文读懂、敬请查阅声明:作为全网AI领域干货最多的博主之一,❤️不负光阴不负卿❤️基础信息????查看系统信息cat/etc/issu......
  • 如何查看服务器的Raid缓存等配置的情况
    摘要最近总遇到同一批机器的IO不一样的情况.感觉可能跟硬件设备和Raid卡的设置不一样有关系.所以今天学习研究了下storcli的命令.希望能够进行一些数据的收集.Storc......
  • python中数据库查看
    数据读取:1、使用fetchone()方法获取单条数据data=cursor.fetchone()print(data)2、使用fetchall()方法获取多条数据rows=cur.fetchall()forrowinrows:pr......
  • lightdb for pg查看锁
    selectd.datname,c.relname,c.reltype,a.*frompg_locksa,pg_catalog.pg_databased,pg_catalog.pg_classcwhered.oid=a.databaseandc.oid=a.relation;当前数......
  • lightdb/PostgreSQL查看数据库,索引,表,表空间大小,事务和LSN(管理函数)
    postgresql/lightdb和mysql、oracle不一样,通过一堆表函数提供查看各个对象的大小。如查看每个表的物理位置、所属表空间和数据库:​​pg_relation_filepath(​​rela......