基础设施

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. Load和Initialize往死了问是一种怎样的体验?
  2. ARTS打卡计划第二周-Share-使用java注解对方法计时
  3. 提取文件出错_提取中文、英文和数字,其实很简单
  4. SpringBoot 配置 generator代码生成+knife4j接口文档(2种模板设置、逻辑删除、字段填充 含代码粘贴可用)保姆级教程(注意事项+建表SQL+代码生成类封装+测试类)
  5. linux下面把png文件转化为背景透明
  6. 看奥运之二:现场看男子体操团体决赛
  7. ubuntu 16.04 安装mysql
  8. c# mvvm模式获取当前窗口_AWTK-MVVM 介绍
  9. oracle复合字段,复合索引 选择频繁的字段,还是选择选择性低的字段 放在前面?...
  10. 【机器学习】监督学习--(回归)多元线性回归
  11. mysql数据索引失效_MySQL索引失效的几种情况
  12. python--之Python内存监控模块memory_profiler测试
  13. 中南大学 09 MATLAB 矩阵的处理
  14. 基于jq的别踩白块儿小游戏
  15. Windows驱动程序开发 - 初识驱动
  16. 你会换掉Postman吗?我正在用HTTP Client...
  17. Seurat | 强烈建议收藏的单细胞分析标准流程(SCTransform normalization)(四)
  18. CSS3的2D转换和3D转换,你了解了嘛?
  19. 如何反编译 cocos creator 生成 的jsc文件/反编译jsc文件(一)
  20. Docker容器化实战第二课 镜像、容器、仓库详解

热门文章

  1. CMOS摄像头硬件原理
  2. 角蜂鸟AI视觉套件:(三)ROS案例
  3. 拨叉零件加工工艺及钻18孔夹具设计(说明书+CAD图纸+solidworks三维图+工序卡+过程卡)
  4. 时隔一年,AMD交出了一份怎样的答卷?
  5. 用safari免费看playboy杂志
  6. 如今传统企业如何做数字化转型?
  7. MyEclipse破解 注册机“System id无法生成” 解决方法:出现com.jniwrapper.util.ProcessorInfo
  8. iOS 10 的坑:新机首次安装 app,请求网络权限“是否允许使用数据”_前进的火车_新浪博客...
  9. PIC 使能485/422_Part2.1使能485_Tx_Only
  10. append appendTo after