Skip to content
5gyungjae edited this page Sep 6, 2019 · 3 revisions

ElastAlert 설치

  • ElastAlert 0.2.0 부터 python3.6 이상 필요

CentOS 6 기준

Python 3.6 설치

  • 설치된 python의 버전 확인
# python --version
  • 설치되지 않은 경우 python 3.6 설치
  • python 3.6은 추가 repository를 설치해야 함.
# yum install https://centos6.iuscommunity.org/ius-release.rpm
# yum install python36u
# yum install python36u-pip
# yum install python36u-devel
  • python 실행파일 교체
# mv /usr/bin/python /usr/bin/python_backup
# ln -s /usr/bin/python3.6 /usr/bin/python

ElastAlert 설치

# python -m pip install elastalert

CentOS 7 기준

python 3.6 설치

  • CentOS 7 epel repository에 python 3.6 버전이 있음
# yum install epel-release
# yum install python36
# yum install python36-devel
# yum install python36-pip

ElastAlert 설치

# python3.6 -m pip install elastalert
Clone this wiki locally