真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用supervisor啟動(dòng)hbase

管理進(jìn)程是一件麻煩的事情,有時(shí)候進(jìn)程因?yàn)閮?nèi)存被其他進(jìn)程搶占,導(dǎo)致程序崩潰,又沒(méi)有好的辦法來(lái)解決,那么就涉及到如何讓它掛了自動(dòng)啟動(dòng)的問(wèn)題,supervisor就是一款這樣的軟件,在做之前,請(qǐng)確保你需要讓進(jìn)程自動(dòng)啟動(dòng),否則可能重啟機(jī)器也無(wú)法解決進(jìn)程占用IO等導(dǎo)致ssh無(wú)法連接的問(wèn)題。下面介紹如何安裝與配置,以及如何查看頁(yè)面狀態(tài)。

郫都網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)于2013年成立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)

  1. 安裝supervisor

    yum install supervisor -y

  2. ambari按照pid文件來(lái)檢測(cè)進(jìn)程是否啟動(dòng),為了使ambari檢測(cè)進(jìn)程狀態(tài),要保證進(jìn)程號(hào)的文件名稱一樣,HBASE_IDENT_STRING會(huì)在進(jìn)程啟動(dòng)文件中用作變量去命名進(jìn)程pid文件

    echo 'export HBASE_IDENT_STRING=hbase'>>/etc/init.d/supervisord

  3. 編輯/etc/supervisord.conf

    [unix_http_server]

    file=/tmp/supervisor.sock;

    [supervisord]

    http_port=/var/tmp/supervisor.sock;

    http_port=0.0.0.0:9001  ; (alternately, ip_address:port specifies AF_INET)

    logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)

    logfile_maxbytes=50MB        ; (max main logfile bytes b4 rotation;default 50MB)

    logfile_backups=10           ; (num of main logfile rotation backups;default 10)

    loglevel=info                ; (log level;default info; others: debug,warn,trace)

    pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)

    nodaemon=false               ; (start in foreground if true;default false)

    minfds=1024                  ; (min. avail startup file descriptors;default 1024)

    minprocs=200                 ; (min. avail process descriptors;default 200)

    [rpcinterface:supervisor]

    supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

    [supervisorctl]

    serverurl=unix:///var/tmp/supervisor.sock ; use a unix:// URL  for a unix socket

    [program:regionserver]

    command=bash /usr/hdp/current/hbase-regionserver/bin/hbase-daemon.sh --config /usr/hdp/current/hbase-regionserver/conf foreground_start regionserver

    process_name=%(program_name)s

    numprocs=1

    ;directory=/usr/hdp/current/hbase-regionserver/bin/

    autostart=true

    autorestart=true

    startretries=3

    exitcodes=0,2

    stopsignal=INT

    user=hbase

    stdout_logfile=regionserver_out.log

    stdout_logfile_maxbytes=1MB

    stdout_logfile_backups=10

    stdout_capture_maxbytes=1MB

    stderr_logfile=test_err.log

    stderr_logfile_maxbytes=1MB

    stderr_logfile_backups=10

    stderr_capture_maxbytes=1MB

  4. 如果還要啟動(dòng)其他程序直接在最后面一行添加即可,比如

    [program:wpiweibo]

    command=/usr/jdk64/jdk1.8.0_40/bin/java -jar /home/luoweimin/wpiindex/WPIIndex-1.0-SNAPSHOT.jar

    numprocs=1

    user=luoweimin

    stdout_logfile=wpiweibo.out

    stderr_logfile=wpiweibo.err

  5. 啟動(dòng)

    /etc/init.d/superversiord start

  6. 由于我監(jiān)聽了9001端口,你可以使用ip:9001去監(jiān)控頁(yè)面查看狀態(tài),啟停服務(wù)

    使用supervisor啟動(dòng)hbase


網(wǎng)頁(yè)標(biāo)題:使用supervisor啟動(dòng)hbase
鏈接分享:http://weahome.cn/article/jgcdcd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部