基础设施

HP DL380 Gen8 服务器 System:Centos_6.3

HP Smart Array P431/2G Controller

HP D6000 盘柜

P431卡插入服务器PCI-E插槽,通过 SAS线 把盘柜与服务器连接

配置RAID6

重启服务器,按F5进入P431卡配置界面

开始配置,配置RAID6

缓存配置10%:90% 读写

服务器配置

下载驱动

http://h20566.www2.hpe.com/hpsc/swd/public/readIndex?sp4ts.oid=5404574&swLangOid=2&swEnvOid=4103

kmod-hpsa-3.4.12-110.rhel6u3.x86_64.rpm
rhel6U3代表6.3

安装驱动:

root@pts/0 # rpm -ivh kmod-hpsa-3.4.12-110.rhel6u3.x86_64.rpm
Preparing...                ########################################### [100%]1:kmod-hpsa              ########################################### [100%]
安装完重启:
root@pts/0 # reboot Broadcast message from root@192.168.2.145(/dev/pts/0) at 13:07 ...The system is going down for reboot NOW!
重启后识别/dev/sdb:
192.168.2.145 [~] 2015-12-23 13:12:05
root@pts/0 # fdisk -lWARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.Disk /dev/sda: 2400.4 GB, 2400374185984 bytes
255 heads, 63 sectors/track, 291828 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 262144 bytes / 1048576 bytes
Disk identifier: 0x00000000Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1      267350  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.Disk /dev/sdb: 198037.7 GB, 198037652201472 bytes
255 heads, 63 sectors/track, 24076706 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 262144 bytes / 8650752 bytes
Disk identifier: 0x5b6077a7
分区:
192.168.2.145 [~] 2015-12-23 13:20:17
root@pts/0 # parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) mklabel gpt
(parted) mkpart primary 0% 100%
(parted) print
Model: HP LOGICAL VOLUME (scsi)
Disk /dev/sdb: 198TB
Sector size (logical/physical): 512B/512B
Partition Table: gptNumber  Start   End    Size   File system  Name     Flags1      8651kB  198TB  198TB               primary(parted) quit
Information: You may need to update /etc/fstab.                           
格式化:
root@pts/0 # yum install xfsprogs kmod-xfs
Loaded plugins: fastestmirror, security
Determining fastest mirrors
epel/metalink                                                                                                     | 4.6 kB     00:00     * base: mirrors.yun-idc.com* epel: mirrors.yun-idc.com* extras: mirrors.yun-idc.com* updates: mirrors.btte.net
base                                                                                                              | 3.7 kB     00:00
base/primary_db                                                                                                   | 4.6 MB     00:00
dell-omsa-indep                                                                                                   | 1.9 kB     00:00
dell-omsa-specific                                                                                                | 1.9 kB     00:00
epel                                                                                                              | 4.3 kB     00:00
epel/primary_db                                                                                                   | 5.7 MB     00:00
extras                                                                                                            | 2.9 kB     00:00
extras/primary_db                                                                                                 |  33 kB     00:00
updates                                                                                                           | 3.4 kB     00:00
updates/primary_db                                                                                                | 3.3 MB     00:00
Setting up Install Process
No package kmod-xfs available.
Resolving Dependencies
--> Running transaction check
---> Package xfsprogs.x86_64 0:3.1.1-16.el6 will be installed
--> Finished Dependency ResolutionDependencies Resolved=========================================================================================================================================Package                          Arch                           Version                              Repository                    Size
=========================================================================================================================================
Installing:xfsprogs                         x86_64                         3.1.1-16.el6                         base                         724 kTransaction Summary
=========================================================================================================================================
Install       1 Package(s)Total download size: 724 k
Installed size: 3.2 M
Is this ok [y/N]: y
Downloading Packages:
xfsprogs-3.1.1-16.el6.x86_64.rpm                                                                                  | 724 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Warning: RPMDB altered outside of yum.
** Found 4 pre-existing rpmdb problem(s), 'yum check' output follows:
iproute-2.6.32-17.el6.x86_64 has missing requires of iptables >= ('0', '1.4.5', None)
iproute-2.6.32-17.el6.x86_64 has missing requires of libxtables.so.4()(64bit)
system-config-firewall-base-1.2.27-5.el6.noarch has missing requires of iptables >= ('0', '1.2.8', None)
system-config-firewall-base-1.2.27-5.el6.noarch has missing requires of iptables-ipv6Installing : xfsprogs-3.1.1-16.el6.x86_64                                                                                          1/1 Installed:xfsprogs.x86_64 0:3.1.1-16.el6                                                                                                         Complete!
192.168.2.145 [~] 2015-12-23 13:26:56
root@pts/0 # mkfs.xfs /dev/sdb1
meta-data=/dev/sdb1              isize=256    agcount=181, agsize=268435392 blks=                       sectsz=512   attr=2, projid32bit=0
data     =                       bsize=4096   blocks=48349033920, imaxpct=1=                       sunit=64     swidth=2112 blks
naming   =version 2              bsize=4096   ascii-ci=0
log      =internal log           bsize=4096   blocks=521728, version=2=                       sectsz=512   sunit=64 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
挂载:
192.168.2.145 [~] 2015-12-23 13:28:57
root@pts/0 # mkdir /back
192.168.2.145 [~] 2015-12-23 13:29:09
root@pts/0 # mount -t xfs /dev/sdb1 /back/
192.168.2.145 [~] 2015-12-23 13:29:33
root@pts/0 # df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2             2.2T  2.9G  2.1T   1% /
tmpfs                  32G     0   32G   0% /dev/shm
/dev/sda1             485M   36M  424M   8% /boot
/dev/sda3             2.0G   35M  1.8G   2% /swap
192.168.0.71:/vol/vol22.0T  368G  1.6T  19% /share
/dev/sdb1             181T   38M  181T   1% /back
测试:
192.168.2.145 [~] 2015-12-23 13:29:34
root@pts/0 # cd /back/
192.168.2.145 [/back] 2015-12-23 13:29:52
root@pts/0 # ll
total 0
192.168.2.145 [/back] 2015-12-23 13:29:53
root@pts/0 # touch chai
192.168.2.145 [/back] 2015-12-23 13:30:14
root@pts/0 # ll
total 0
-rw-r--r-- 1 root root 0 Dec 23 13:30 chai
192.168.2.145 [/back] 2015-12-23 13:30:15
root@pts/0 # rm chai
192.168.2.145 [/back] 2015-12-23 13:30:23
root@pts/0 # ll
total 0
查看raid信息:
/usr/sbin/hpacucli ctrl all show config detail
查看磁盘信息:
/usr/sbin/hpacucli ctrl slot=0 pd all show 

转载于:https://blog.51cto.com/chaichuan/2073883

HP D6000 盘柜配置相关推荐

  1. HP小型机操作系统安装配置指导书

    HP小型机操作系统安装配置指导书 在HP Integrity Server开机后,可能屏幕没有任何显示,请使用串口线登陆系统的MP,进行管理.下面将分为MP的管理.HP-UX的安装.HP的卷组操作和M ...

  2. 戴尔刀片服务器盘柜型号,戴尔PowerEdge 4220 42U 机架式盘柜

    [IT168 资讯]适用于所有数据中心的42U盘柜 本产品暂不支持网上下单订购. 查询最新价格及配置 请致电 13718183718 或13260064688 Dell™ PowerEdge™ 422 ...

  3. hp服务器ilo批量配置脚本

    hp 服务器ilo批量配置脚本 hp的ilo是一个非常方便的带外管理工具,在平时使用的时候,经常有大量的hp服务器需要配置ilo,下面是我下的一个脚本,可以批量的完成hp服务器ilo配置. 脚本功能: ...

  4. HP Unix vsftp服务配置

    HP Unix vsftp 服务配置: /opt/ssh/utils/ssh_chroot_setup.sh 运行脚本,会提示输入要建立的vsftp账号和要限制的家目录, 比如要限制的家目录为/Jia ...

  5. 惠普c7000服务器装系统,HP BladeSystem c7000 安装配置手册

    HP BladeSystem c7000 安装配置手册 Installing interconnect modules NOTE: For information on the location of ...

  6. NT Server无盘站配置技术详解

    NT Server无盘站配置技术详解    无盘工作站(简称无盘站)即不使用本地磁盘的计算机工作站.由于无盘站具有低配置.低价格.安全性好.易于管理等特点,所以它在我国应用很广.目前,无盘工作站对于学 ...

  7. 联合循环——23(屋顶防雷,盘柜中性点地排)

    一.屋顶防雷 (1)放电类型: 90%云对地放电是负极性,总的来说,放电开始于云端的负电荷而扩展到正电荷的地面.然而,大量的放电现象发生在云层之间. (2)雷电波幅: 80%雷击不超过40kA GB ...

  8. 戴尔服务器盘柜盘故障分析

    背景 盘柜没有管理网络,盘柜的盘通过raid卡连接到服务器上 分析思路 查看raid卡 lspci | grep -i raid 查看逻辑卷,有raid1的盘应该就是服务器 MegaCli -LDIn ...

  9. 网众无盘多服务器,网众无盘多配置建立方案

    在网众无盘多配置建立方案开展之前,我们首先要知道要建立网众无盘多配置需要客户端版本必需230以上以及服务端版本必需3.011.0198以上. 5636网吧无盘就以NF,VIA和INTEL865芯片为例 ...

最新文章

  1. 23、OSPF配置实验之特殊区域Totally NSSA
  2. HTML5-WebSocket实现聊天室
  3. 解决php获取不到Authorization问题
  4. wxpython视频教程-单片机C语言入门_单片机教程_单片机编程语言 - C语言网
  5. Hadoop Yarn任务优先级(作业优先级、应用优先级)设置
  6. 江门农商银行引入阿里云AnalyticDB,实现数据自助分析平台升级
  7. linux vg lv pv
  8. halcon控制算子Control,持续更新
  9. 1分钟看懂:java 项目中 VO 、DTO、Entity,各自是在什么情况下应用的
  10. pxe自动部署Linux,Kickstart+PXE自动部署CentOS6.6
  11. Java中String类中compareTo( )方法
  12. 【李宏毅机器学习】Transformer(p23) 学习笔记
  13. 22. 二叉树的层次遍历
  14. SQL 被当成代码?谷歌的理由绝了!
  15. Linux系统中文件的访问权限
  16. 手把手教你在Android中使用bsdiff实现文件增量更新 (超详细)
  17. matlab的四个取整函数!
  18. 关于eclipse工作空间打不开问题
  19. 2023首届大学生算法大赛 - 逆序对
  20. 机器人运动学仿真笔记

热门文章

  1. eHR系统和OA系统有什么不同?
  2. 关于Oracle的ORA 12505错误 ORA-12505, TNS:listener does not currently know of SID given in connect descrip
  3. redis常用命令,HSET,XADD,XREAD,DEL等
  4. keil调试串口的软件仿真方法
  5. 深兰科技携手蓝源资本打造人工智能产业平台
  6. 黑苹果固态硬盘_写给小白的黑苹果入门指南
  7. 统计遥感成果展示平台-第三次农业普查成果
  8. matlab中精确求零点,matlab求零点
  9. 怎样把pdf转换为jpg
  10. 中国医用全脸面膜行业市场供需与战略研究报告