hba

hp raid配置

二次信任 提交于 2020-02-29 23:23:54
http://www.cnblogs.com/zhangxinglong/p/5585139.html [root@192e168e100e27 ~]# fdisk -l Disk /dev/nvme0n1: 1601.2 GB, 1601183940608 bytes, 3127312384 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/nvme1n1: 1601.2 GB, 1601183940608 bytes, 3127312384 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/sdm: 480.1 GB, 480070426624 bytes, 937637552 sectors Units = sectors of 1 *

ESXi主机RAID卡_HBA卡_网卡 型号_固件_驱动查询

蹲街弑〆低调 提交于 2020-02-19 17:56:06
一、RAID卡/HBA卡 型号_固件_驱动查询 1. 查询所有SCSI设备列表 # esxcfg-scsidevs -a vmhba0 lsi_msgpt3 link-n/a sas.5d0946607159c000 (0000:02:00.0) Avago (LSI Logic) Dell HBA330 Mini vmhba1 vmw_ahci link-n/a sata.vmhba1 (0000:00:11.4) Intel Corporation Wellsburg AHCI Controller vmhba2 vmw_ahci link-n/a sata.vmhba2 (0000:00:1f.2) Intel Corporation Wellsburg AHCI Controller 2. 查询指定设备驱动版本 # vmkload_mod -s lsi_msgpt3 | grep Version Version: 16.00.01.00-1vmw.650.2.50.8294253 3. 查询指定SCSI设备型号 # vmkchdev -l | grep vmhba0 0000:02:00.0 1000:0097 1028:1f53 vmkernel vmhba0 VID = 1000 DID = 0097 SVID = 1028 SDID = 1f53 二、网卡 型号_固件

HBase -- javaAPI 基础篇(创建hbase表,添加数据,查询)

心不动则不痛 提交于 2019-12-20 19:49:49
pom文件配置: <repositories> <repository> <id>cloudera</id> <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-client</artifactId> <version>2.6.0-mr1-cdh5.14.0</version> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-client</artifactId> <version>1.2.0-cdh5.14.0</version> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> <version>1.2.0-cdh5.14.0</version> </dependency> <dependency>

HBase0.96.x开发使用(二) -- hbase shell命令

人盡茶涼 提交于 2019-12-06 08:11:18
hbase shell命令 1、进入hbase shell环境: [hbase@hadoop230 ~]$ ./hbase shell HBase Shell; enter 'help<RETURN>' for list of supported commands. Type "exit<RETURN>" to leave the HBase Shell Version 0.96.0-hadoop1, r1531434, Fri Oct 11 15:11:29 PDT 2013 2、查找帮助 hbase(main):003:0> help 列表所有帮助信息 hbase(main):069:0> help 'alter' 列出指定命令的帮助信息 3、创建表,创建一个名为 test 的表,这个表只有一个列族为cf,创建表的时候不需要创建列族。可以列出所有的表来检查创建情况,然后插入些值。 hbase(main):003:0>create 'test', 'cf'; 4、列出所有表 hbase(main):087:0> list TABLE test 1 row(s) in 0.0320 seconds 5、查看表是否存在 hbase(main):088:0> exists 'test' Table test does exist 0 row(s) in 0.0630 seconds 6