강의

멘토링

커뮤니티

Inflearn Community Q&A

lhjun950763's profile image
lhjun950763

asked

The Trend is Kubernetes (Beginner to Intermediate Edition)

Kubernetes Cluster Installation

Dashboard에 접근이 안됩니다.

Written on

·

408

2

모든 설정이 정상적으로 완료 된 상태에서 

마지막 데시보드 접근 시 

이렇게 나오고 있습니다.

 

 master node의 현황입니다.

 

kubernetesdocker

Answer 1

0

lhjun950763님의 프로필 이미지
lhjun950763
Questioner

QnA에 해결방법이 있네요 

감사합니다.

1pro님의 프로필 이미지
1pro
Instructor

답변이 늦었습니다.

해결되셨다니 다행이네요!

 

Dashboard 관련

  • Master Node 재기동시 Dashboard에 접속하기 위해선 아래 명령어를 실행해서 Proxy 오픈하기
[root@k8s-master ~]# nohup kubectl proxy --port=8001 --address=192.168.56.30 --accept-hosts='^*$' >/dev/null 2>&1 &
  • Dashboard 접근시 ServiceUnavailable 에러 발생시 아래 명령을 통해 기동안된 Pod 확인
[root@k8s-master ~]# kubectl get pods -A
lhjun950763's profile image
lhjun950763

asked

Ask a question