Error code 모음/2. Hadoop errors

프로젝트 주의 사항4: cloudera 설치 후 발생할 수 있는 문제들 정리2 - 서버연결문제 / NTP clock offset 문제

쟈누이 2020. 3. 18. 16:45
반응형

서버 연결 문제

 

보통 클라우데라의 경우에는 5~10분정도 기다려야 로그인 창이 뜨긴한다..

왜 그런지는 모르겠지만..

하지만 10분이 지났는데도 안되면.. 리눅스 서버 내에 깔려 있는 클라우데라가 문제가 있을 수 있으므로

다시 시작해 주는 것이 좋다

 

1. systemctl stop cloudera-scm-agent

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

2. pscp -h ~/hosts.txt systemctl stop cloudera-scm-agent

-> 여기서 pscp 는 연결된 다른 가상환경의 노드들에게 같은 명령어를 뿌리게 해주는 리눅스만의 명령어

-> 모든 서버의 cloudera-scm-agent 들을 전부 꺼준다

 

3. systemctl stop cloudera-scm-server

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

4. systemctl stop cloudera-scm-server-db

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

5. pscp -h ~/hosts.txt reboot  그 후 reboot 

-> pscp 를 이용해 전 서버를 재시작해주고

-> 그 이후 node1 서버를 reboot 해준다

 

6. systemctl restart cloudera-scm-agent

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

7. pscp -h ~/hosts.txt systemctl restart cloudera-scm-agent

-> 모든 서버의 cloudera-scm-agent 들을 전부 ektl zuwnsek

8. systemctl restart cloudera-scm-server

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

9. systemctl restart cloudera-scm-server-db

- 노드 1에서 실행(cloudera 가 깔려 있는 노드!!)

 

--> 위 9가지 과정을 통해 다시 서버를 다시 시작한 후에 클라우데라 서버에 다시 재접속하면 접속이 된다...

 

NTP (clock offset) 문제

ntp 설정을 확인했으면.. 크게 문제는 없다.

ntp를 재시작 해주면 된다.

ntp설정 변경이 리눅스 서버에 반영되지 않아 발생하는 문제이다.

 

하단 링크 참고

https://stackoverflow.com/questions/32702077/why-does-clock-offset-error-in-the-host-keeps-occurring-again-and-again-cloude

 

Why does clock offset error in the host keeps occurring again and again : cloudera

I have stopped the ntpd and restarted it again. Have done a ntpdate pool.ntp.org. the error went once and the hosts were healthy but after sometime again got a clock offset error. Also I observed ...

stackoverflow.com

 

반응형