Hbase開機自啟動實現

2021-10-10 23:01:19 字數 850 閱讀 7075

1.在/etc/init.d路徑下面建立乙個名為hbase的檔案

新增如下內容,儲存退出。

這裡的hbase_home寫自己的hbase的安裝路徑

#!/bin/bash

# chkconfig: 345 63 37

hbase_home=/opt/bigdata/hbase-2.0.5

case "$1" in

start)

$hbase_home/bin/start-hbase.sh

;;stop)

$hbase_home/bin/stop-hbase.sh

;;restart)

$hbase_home/bin/start-hbase.sh

sleep 1

$hbase_home/bin/stop-hbase.sh

;;*)

echo "usage: $0 "

;;esac

exit 0

對hbase檔案進行授權

chmod 777 hbase
啟動、關閉、重啟hbase服務

service hbase start   // 啟動hbase服務

service hbase stop // 關閉hbase服務

service hbase restart // 重啟hbase服務

設定開啟啟動或不啟動hbase服務

chkconfig hbase on    // 設定開機啟動

chkconfig hbase off // 關閉開機啟動

如何實現開機自啟動?

其實很簡單,加個廣播接收器就好,但是太流氓了會被使用者刪的!首先寫乙個receiver import android.content.broadcastreceiver import android.content.context import android.content.intent publ...

開機自啟動

1.建立uid3.rss uid3 是mmp 中的 uid 0x100039ce 0xeb32ada7 0xeb32ada7 需要建立的檔案名字是 eb32ada7.rss 建立到工程名下的 data 目錄下 該檔案的內容格式如下 include resource startup item info...

開機自啟動

使程式可以隨windows自啟動的方式有 1.啟動資料夾 將程式或程式的快捷方式放置到啟動資料夾 xp 系統路徑 documents and settings administrator 開始 選單 程式 啟動 win7 2.登錄檔 當前使用者 1 hkey current user softwar...