导航:首页 > IDC知识 > hp服务器硬盘托架

hp服务器硬盘托架

发布时间:2020-12-30 06:45:26

1、如何在HP服务器上增加新的硬盘

目前HP服务器的背板是支持热插拔的,也就是说你可以在服务器运行的时候将硬盘插入服务器背板(插硬盘的接口),可以避免服务器关闭导致不必要的损失
要增加硬盘首先要了解你的服务器背板当前支持的硬盘接口类型,有的背板支持SATA接口的硬盘确不支持SAS接口的硬盘,但是支持SAS接口的背板肯定支持SATA接口的硬盘,遵循向下兼容的原则;还有就是当前连接背板的Storage congtroller支持什么接口的硬盘,同样遵循向下兼容的原则
增加硬盘还要取决于你当前RAID的级别

2、HP服务器,硬盘镜像的详细操作流程(简单易懂的)

windows2003 你可以用一种叫Ghost的软件做备份 就是通过那个软件将你的电脑的某个盘回 或者某几个盘 做成镜像保存答到一个地方 当服务器 出现问题的时候就可以通过镜像 还原到原来的盘符

ghost的用法也蛮简单 不够就是英文版的 你可以试试
如果还有不懂或者其他问题可以Q我
我的是273987353

3、HP服务器如何增加硬盘?

目前HP服务器的背板是支持热插拔的,也就是说你可以在服务器运行的时候将硬盘插入服务器背板(插硬盘的接口),可以避免服务器关闭导致不必要的损失

要增加硬盘首先要了解你的服务器背板当前支持的硬盘接口类型,有的背板支持SATA接口的硬盘确不支持SAS接口的硬盘,但是支持SAS接口的背板肯定支持SATA接口的硬盘,遵循向下兼容的原则;还有就是当前连接背板的Storage congtroller支持什么接口的硬盘,同样遵循向下兼容的原则

增加硬盘还要取决于你当前RAID的级别

4、hp服务器硬盘是否通用

HP服务器硬盘当然只能是上HP的机器卅。因为托架不一样嘛。还分2.5 和3.5的 不同机型用不同的盘。同尺寸盘位的机型是通用的。。
所以:既通用 又不通用。。。

5、HP服务器linux 操作系统如何添加硬盘

我们可以这个在系统加载,难度不大。但是此过程大概要20分钟左右,因为需要同时服务器服务要停止。

在 Linux 下设备文件放在 /dev 目录下。

IDE 硬盘 第一块 /dev/hda 、第二块硬盘 /dev/hdb 、第三块 /dev/hdc.

SCSI 硬盘 第一块 /dev/sda 、第二块硬盘 /dev/sdb 、第三块 /dev/sdc

Hp raid or cpq array ( 这一点要注意 ).

第一个 logic driver /dev/cciss/c0d0

第二个 logic driver /dev/cciss/c0d1

以添加 SCSI 硬盘为例:

[root@linux /]# fdisk /dev/sdb 用 fdisk 工具来创建新的分区

Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel

Building a new DOS disklabel. Changes will remain in memory only,

until you decide to write them. After that, of course, the previous

content won"t be recoverable.

The number of cylinders for this disk is set to 17366.

There is nothing wrong with that, but this is larger than 1024,

and could in certain setups cause problems with:

1) software that runs at boot time (e.g., old versions of LILO)

2) booting and partitioning software from other OSs

(e.g., DOS FDISK, OS/2 FDISK)

Command (m for help): m 显示主菜单

Command action

a toggle a bootable flag

b edit bsd disklabel

c toggle the dos compatibility flag

d delete a partition

l list known partition types

m print this menu

n add a new partition

o create a new empty DOS partition table

p print the partition table

q quit without saving changes

s create a new empty Sun disklabel

t change a partition"s system id

u change display/entry units

v verify the partition table

w write table to disk and exit

x extra functionality (experts only)

Command (m for help): n 创建新分区

Command action

e extended 扩展的分区

p primary partition (1-4) 主分区

p 创建主分区

Partition number (1-4): 1

First cylinder (1-17366, default 1): 1

Last cylinder or +size or +sizeM or +sizeK (1-17366, default 17366): +10000M 选择分区大小

Command (m for help): w 保存退出

The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.

The kernel still uses the old table.

The new table will be used at the next reboot.

Syncing disks.

[root@linux /]# mkfs -t ext3 /dev/sdb1 将我创建的第一个分区 sdb1 格式化

mke2fs 1.27 ( 8-Mar-2002 )

Filesystem label=

OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

1281696 inodes, 2560252 blocks

128012 blocks (5.00%) reserved for the super user

First data block=0

79 block groups

32768 blocks per group, 32768 fragments per group

16224 inodes per group

Superblock backups stored on blocks:

32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632

Writing inode tables: done

Creating journal (8192 blocks): done

Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 21 mounts or

180 days, whichever comes first. Use tune2fs -c or -i to override.

[root@linux /]# mkdir /new 创建一个根目录

[root@linux /]# mount /dev/sdb1 /new 将 sdb1 分区 mount to /new

[root@linux /]# fdisk -l 查看分区信息

Disk /dev/sda: 64 heads, 32 sectors, 17366 cylinders

Units = cylinders of 2048 * 512 bytes

Device Boot Start End Blocks Id System

/dev/sda1 * 1 100 102384 83 Linux

/dev/sda2 101 12100 12288000 83 Linux

/dev/sda3 12101 16100 4096000 83 Linux

/dev/sda4 16101 17366 1296384 f Win95 Ext"d (LBA)

/dev/sda5 16101 16866 784368 82 Linux swap

/dev/sda6 16867 17366 511984 83 Linux

Disk /dev/sdb: 64 heads, 32 sectors, 17366 cylinders

Units = cylinders of 2048 * 512 bytes

Device Boot Start End Blocks Id System

/dev/sdb1 1 10001 10241008 83 Linux

[root@linux /]# df 查看分区信息

Filesystem 1K-blocks Used Available Use% Mounted on

/dev/sda2 12095032 2919684 8560948 26% /

/dev/sda1 99134 17861 76154 19% /boot

/dev/sda3 4031680 32968 3793912 1% /home

none 127688 0 127688 0% /dev/shm

/dev/sda6 495828 153957 316272 33% /var

/dev/sdb1 10080092 32828 9535216 1% /new

[root@linux /]#

6、HP服务器怎么设置硬盘

您好,感谢您选择惠普产品。


 按您提供的链接查看,您使用的是惠普z220sff工作站设备,这款设备使用的是SATA串口硬盘,winPE软件需要使用支持串口硬盘模式的版本才可以识别到硬盘,或者开机按F10进入BIOS中,修改硬盘模式为IDE后,再操作试试看。

进入后BIOS后,选中storage栏目下storage options中,SATA emulation右侧修改为IDE mode选项,完成后按F10确认设置,再次按F10后选择yes保存设置退出,工作站会自动重启。

  

 很抱歉,百度知道企业平台暂时没有HP服务器产品相应的技术支持。关于服务器产品问题,建议您可以直接拨打支持热线800-810-2058(不支持手机拨打,请使用固话或小灵通拨打)或400-610-2058(可手机拨打)进行咨询。

 如果不方便拨打电话,惠普服务器方面的问题您也可以尝试打开下面的网址,选择所使用的产品类型(服务器及存储设备)然后点击相应的产品前的+号,再点击选择【登录聊天室】进行咨询即可,http://www.hp.com.cn/chat


希望以上回复能够对您有所帮助。

7、如何挽救我的HP服务器硬盘上的数据

一、看阵列级别有三种方法,
1,在自检时,检到阵列卡时按F8,应该是红色的字,写专的P400i。进去之后选管理属ARRAY,然后看到一个阵列,阵列级别。

2。用SMART START光盘引导,使用ACU工具选中阵列,可以看阵列级别。

3。如果系统没down,可以在开始-程序-system tools-ACU里看。

二、三块硬盘最常见的是RAID5,但是raid5坏一块系统不能down。
我估计是之前已经有一块硬盘预报错,然后你又拔出去一块没报错的盘,所以系统down了。

三、如果确实是RAID5,你说的方法可以试试.就是把这三块盘顺序不要乱。插到另外一台服务器上后面的槽位。看能认到不?如果能认到,那你幸运,赶紧拷数据,估计可能靠不完全。

四、你的机器序列号是多少告诉我、帮你看看是不是已经出保修了。可能硬盘得自己买了,或者你备份完数据,我再帮你想想别的办法看还能不能补救。

数据如果是太重要就去做数据恢复吧,有需要再留言

8、HP 服务器硬盘如何安装?

开机后要重做raid,因为raid卡里没有新加的硬盘信息,需要初始化一下,我用的dell服务器就是这样,详情请询问hp客服。

9、惠普服务器硬盘怎么接pc

惠普服务或其它品牌的服务器都采用了具有速度快、安全性和可靠性高的高速SCSI接口硬盘,这种接口均支持热插拔,以方便在线更换硬盘。

下图是支持热插拔的SCSI硬盘。


如果普通PC机上没有SCSI接口,则需要加装一块具有SCSI接口的转接卡。


下图是:

雅德特 adaptec 29160 160M SCSI卡,内置2个68针接口,50针一个。

临时性使用也可以购买一条USB转SCSI的电缆。

与hp服务器硬盘托架相关的知识