ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 초단위 cron 설정 ( nodeJS )
    개발/javascript 2018. 11. 9. 17:41

    환경체크 (노드와 npm 설치 진행)

    node -v
    v8.9.3
    
    npm -v
    6.4.0

    crontab 설치 (https://www.npmjs.com/package/cron)

    cd /home/crontab
    npm install cron

    vim test.js

     

    var CronJob = require('cron').CronJob;
    new CronJob('* * * * * *', function() {
      console.log('You will see this message every second');
    }, null, true, 'America/Los_Angeles');
    
    node test.js
    
    You will see this message every second
    You will see this message every second
    You will see this message every second
    ....

    표현식 ( 리눅스 cron 설정보다 * 이 한개 더 많다. 초단위 설정은 설정안할시 분단위로 동작함)

    * Seconds: 0-59
    * Minutes: 0-59
    * Hours: 0-23
    * Day of Month: 1-31
    * Months: 0-11 (Jan-Dec)
    * Day of Week: 0-6 (Sun-Sat)

    이제 해당 크론탭 데몬이 죽었을때 다시 살려줄수있는 데몬도 활용해보자.

    #https://www.npmjs.com/package/forever
    #전체적으로 유용하게 쓰일것같아 글로벌인스톨 설치하였다.
    npm install forever -g
    
    forever -l /home/logs/forever/test.log -a start test.js
    
    cat /home/logs/forever/test.log
    You will see this message every second
    You will see this message every second
    You will see this message every second

    내가자주 쓰는 옵션이다

    -l 로그파일 위치
    -a 로그파일 append
    list (forever list) 현재목록
    stop index (ex: stop 0) list 로 조회하여 해당 index 를 종료시킴
    stopall 전체 종료
    start 실행
    restartall 전체 재실행
    restart index (ex : restart 0) list 로 조회하여 해당 index 를 재시작시킴
    -c (ex forever start -c “php” test.php (default 값은 node 이다)

     

    '개발 > javascript' 카테고리의 다른 글

    Vue Dev Https 실행방법  (0) 2020.10.16
    ECMAScript vs JavaScript  (0) 2018.11.09
    JavaScript Transcompile 을 진행해보자  (0) 2018.11.09
    Google 주소록 가져오기 API  (0) 2016.02.11
    특정영역인쇄하기 ( printThis )  (0) 2016.02.03
Designed by Tistory.