-
Notifications
You must be signed in to change notification settings - Fork 0
ElastAlert 설치
5gyungjae edited this page Sep 6, 2019
·
3 revisions
- ElastAlert 0.2.0 부터 python3.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
# python -m pip install elastalert
- CentOS 7 epel repository에 python 3.6 버전이 있음
# yum install epel-release
# yum install python36
# yum install python36-devel
# yum install python36-pip
# python3.6 -m pip install elastalert