2020. 2. 3. 17:11

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

카테고리 없음2019. 7. 12. 17:22

iptables stop, iptables start and iptables reload fail

 

modpobe cpu 100%

 

방화벽(iptables)을 중지, 시작, 재시작시 실패 하고 modprobe 프로세스가 cpu 100% 증상일때

다음과 같이 iptables 실행 파일에서 modprobe -r 줄을 찾아 주석 처리 하고 재시작하면 정상화 된다

 

 

Centos6

 

Vi /etc/init.d/iptables

# 설치 제거 모듈의 줄을 찾으십시오. / modprobe -r

# 사용 #이 줄 또는이 단락을 주석으로 처리하십시오.

 

Centos7, Debian, Ubuntu

# 특정 환경 설치가 동일하지 않을 수도 있습니다.

즉, iptables 실행 스크립트를 찾아서 수정하십시오.

vi /usr/libexec/iptables/iptables.init

# 설치 제거 모듈의 줄을 찾으십시오.

/ modprobe -r

# 사용 #이 줄 또는이 단락을 주석으로 처리하십시오.

Posted by 배움나눔
카테고리 없음2019. 4. 12. 17:06

[출처] ELK 설치 초스피드 설치! - 10분만에 Ubuntu 로그들 모니터링하는 방법!|작성자 일선스

 

 

1. 자바 설치를 위한 레파지토리 등록

sudo add-apt-repository ppa:webupd8team/java

sudo apt-get update

 

 

2. 자바 설치

sudo apt-get install oracle-java8-installer

 

3. ELK 다운로드

sudo wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.7.1.deb
sudo wget https://artifacts.elastic.co/downloads/logstash/logstash-6.7.1.deb
sudo wget https://artifacts.elastic.co/downloads/kibana/kibana-6.7.1-amd64.deb

* ELK 최신 버전 확인은 아래 경로를 통해 진행해주세요

https://www.elastic.co/kr/downloads/elasticsearch

https://www.elastic.co/kr/downloads/kibana

https://www.elastic.co/kr/downloads/logstash

 

4. ELK 설치

sudo dpkg -i elasticsearch-6.7.1.deb
sudo dpkg -i logstash-6.7.1.deb
sudo dpkg -i kibana-6.7.1-amd64.deb

 

 

5. ELK 시작

sudo service logstash start

sudo service elasticsearch start

sudo service kibana start

 

 

 

 

Posted by 배움나눔