hadoop錯誤各種原因
阿新 • • 發佈:2018-05-31
集群 str tp服務器 Go set 設置 token tput oop
NoRouteToHostException
錯誤描述:
INFO hdfs.DFSClient: Exception in createBlockOutputStream
java.net.NoRouteToHostException: No route to host
- 1
- 2
- 3
解決辦法:是防火墻的問題
關閉systemctl stop firewalld.service(所有集群中的防火墻都要關閉)
Check system time and time zones
錯誤描述:
Got exception: org.apache.hadoop.yarn.exceptions.YarnException: Unauthorized request to start container. This token is expired. current time is 1468846669832 found 1468814870801 Note: System times on machines may be out of sync. Check system time and time zones.
- 1
- 2
- 3
- 4
解決辦法:
date -s ‘2016-07-18 12:07:00‘
- 1
- 2
centos7時間設置補充:
查看時間狀態:timedatectl
設 置 時 間:timedatectl set-time “YYYY-MM-DD HH:MM:SS”
列 出 時 區:timedatectl list-timezones
設 置 時 區:timedatectl set-timezone Asia/Shanghai
是否NTP服務器同步:timedatectl set-ntp yes
將硬件時鐘調整為與本地時鐘一致:timedatectl set-local-rtc 1
hadoop錯誤各種原因