Hbase eclipse下遠端除錯Hbase

2021-08-05 20:45:04 字數 659 閱讀 6631

1.準備工作,安裝好habse之後,執行hbase shell

create 『表名稱』, 『列名稱1』,『列名稱2』,『列名稱n』

create 『表名稱』,『列族名稱』

在hbase中列是可以動態新增的,只需要有個列族就可以了

create 'test_lcc_person','lcc_liezu'
然後新增一些資料key相同的是一條資料,一共有6條資料

put 『表名稱』, 『rowkey(相當於關係資料的id,必須唯一)』, 『列族名稱:列名稱:』, 『值』

put 'test_lcc_person','1','lcc_liezu:name:','梁川川1'

put 'test_lcc_person','1','lcc_liezu:***:','男'

put 'test_lcc_person','1','lcc_liezu:age:','12'

put 'test_lcc_person','2','lcc_liezu:name:','梁川川2'

put 'test_lcc_person',

Linux下遠端公升級指令碼

remote update.sh bin sh 此指令碼放在dcu資料夾的外面 殺掉正在執行的dcu程序 pidlist ps ef grep dcu.bin grep v grep awk echo id list pidlist if pidlist then else for pid in d...

windows下 遠端DLL注入

核心函式 createtoolhelp32snapshot createtoolhelp32snapshot函式為指定的程序 程序使用的堆 heap 模組 module 執行緒 thread 建立乙個快照 snapshot handle winapi createtoolhelp32snapshot...

ubuntu下ssh遠端登入

實現兩台ubuntu14.04電腦的免金鑰ssh登入 首先準備兩台電腦 一台也行,可以使用兩個賬號 電腦a和電腦b。現配置a免密登入電腦b的root使用者。1.在兩台電腦上都安裝ssh 使用sudo apt get install openssh server指令安裝ssh。使用ps e grep ...