Kubernetes 클러스터 내에서 호스트 이름으로 MariaDB에 연결할 수 없음
도커 구성 내에서 공식 이미지 형식을 MariaDB로 설정하면 호스트 이름으로 액세스할 수 있습니다. 예를 들어 MariaDB 컨테이너 내의 bash 쉘에 있는 경우:
# host db
db has address 172.21.0.2
# curl telnet://db:3306
Warning: Binary output can mess up your terminal. Use "--output -" to tell
Warning: curl to output it to your terminal anyway, or consider "--output
Warning: <FILE>" to save to a file.
- 연결 거부 문제는 여기에 있습니다.
그러나 Kubernetes 클러스터 내의 공식 이미지(MicroK8과 GKE를 모두 테스트)에서 MariaDB를 도입하고 있는 경우 를 통해 접속할 수 있습니다.localhost
호스트명이 아닙니다.
# host db
db.my-namspace.svc.cluster.local has address 10.152.183.124
# curl telnet://db:3306
curl: (7) Failed to connect to db port 3306: Connection refused
# curl telnet://localhost:3306
Warning: Binary output can mess up your terminal. Use "--output -" to tell
Warning: curl to output it to your terminal anyway, or consider "--output
Warning: <FILE>" to save to a file.
- 서비스 호스트 이름에 대해 연결이 거부되었지만 localhost가 응답합니다.
포함된 것을 교체하려고 했습니다.my.cnf
다음과 같은 간단한 버전을 제공합니다.
[mysqld]
skip-grant-tables
skip-networking=0
#### Unix socket settings (making localhost work)
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
#### TCP Socket settings (making all remote logins work)
port = 3306
bind-address = *
- 운이 없어서
MariaDB Kubernetes의 전개는 다음과 같습니다.
apiVersion: apps/v1
kind: Deployment
metadata:
name: db
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
name: db
template:
metadata:
labels:
name: db
spec:
containers:
- env:
- name: MYSQL_PASSWORD
value: template
- name: MYSQL_ROOT_PASSWORD
value: root
- name: MYSQL_USER
value: template
image: mariadb:10.4
name: db
ports:
- containerPort: 3306
resources: {}
volumeMounts:
- mountPath: /var/lib/mysql
name: dbdata
restartPolicy: Always
volumes:
- name: dbdata
persistentVolumeClaim:
claimName: dbdata
status: {}
및 해당 영구 볼륨 클레임:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
io.kompose.service: dbdata
name: dbdata
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
Kubernetes 클러스터 내에서는 동일한 설정이 Docker Compose에서 동작하지 않는 것은 이해할 수 없습니다.
무슨 일인지 짐작 가는 거 없어?
업데이트 2020-03-18 데이터베이스에 대한 서비스 선언을 포함하고 여기에 추가하는 것을 잊었습니다.
apiVersion: v1
kind: Service
metadata:
labels:
app: db
name: db
spec:
ports:
- name: "3306"
port: 3306
targetPort: 3306
selector:
app: db
name: db
type: ClusterIP
status:
loadBalancer: {}
...둘 다 포함app
그리고.name
를 위해spec.selector
- 단점만 가지고 있는 것에 익숙합니다.name
그러나 @Al-walled Shihadeh의 예는 다음과 같습니다.app
만약을 위해 그것도 포함시키겠습니다만, 성공하지 못했습니다.
다음은 몇 가지 cubectl 목록 명령어의 출력을 나타냅니다.
$ sudo microk8s.kubectl get svc db -n my-namespace
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
db ClusterIP 10.152.183.246 <none> 3306/TCP 35m
$ sudo microk8s.kubectl get pods -owide -n my-namespace
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
db-77cbcf87b6-l44lm 1/1 Running 0 34m 10.1.48.118 microk8s-vm <none> <none>
해결책 효과가 입증된 KoopaKiller에 의해 게시된 서비스 선언문을 비교한 결과, 저는 마침내 이 설정이protocol
포트 선언에서 "TCP"에 대한 속성이 누락되었습니다. 이 부분:
spec:
ports:
- protocol: TCP
...
Kubernetes Deployment를 사용하고 있기 때문에 pod의 이름은 스펙파일로 지정한 이름에 따라 디너믹하게 생성됩니다.이 예에서는 pod는 그 이름으로 작성됩니다.db-xxxxxxxxxx-xxxxx
.
「고정」호스트명을 작성하려면 , 팟에 도달하기 위한 서비스를 작성할 필요가 있습니다.예:
apiVersion: v1
kind: Service
metadata:
name: db
spec:
selector:
name: db
ports:
- protocol: TCP
port: 3306
targetPort: 3306
type: ClusterIP
가 정상적으로 전개되었는지 확인하려면 다음 절차를 따릅니다.
$ kubectl get svc db
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
db ClusterIP 10.96.218.18 <none> 3306/TCP 89s
서비스 전체 이름은 다음과 같습니다.<name>.<namespace>.cluster.local
이 경우 를 사용하여default
네임스페이스는db.default.cluster.local
포인팅, IP10.96.218.18
위의 예시와 같이
서비스를 이용하려면 /etc/hosts에 정보를 설정해야 합니다.
echo -ne "10.96.218.18\tdb.default.cluster.local db db.default" >> /etc/hosts
그 후 dns를 통해 서비스에 도달할 수 있습니다.
$ dig +short db
10.96.218.18
$ mysql -h db -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.5.5-10.4.12-MariaDB-1:10.4.12+maria~bionic mariadb.org binary distribution
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
참고로 HELM 템플릿을 사용하여 복제를 포함한 mariadb를 설정할 수도 있습니다.이 기사를 참조해 주세요.
참고 자료:
https://kubernetes.io/docs/concepts/services-networking/service/
https://kubernetes.io/docs/concepts/workloads/controllers/deployment/
호스트 노드에서 서비스에 액세스하려면 Kubernetes에서 서비스 개체를 정의해야 합니다.
따라서 완전한 k8s 오브젝트는 아래 스니펫의 Persistent Volume Claim과 같아야 합니다.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: db-data
name: db-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
서비스
apiVersion: v1
kind: Service
metadata:
labels:
app: mysql
name: mysql
spec:
ports:
- port: 3306
targetPort: 3306
selector:
app: mysql
type: ClusterIP
도입
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: mysql
name: mysql
spec:
replicas: 1
template:
metadata:
creationTimestamp: null
labels:
app: mysql
spec:
containers:
- name: mysql
env:
- name: MYSQL_ROOT_PASSWORD
value: dummy
- name: MYSQL_DATABASE
value: community_db
resources: {}
volumeMounts:
- mountPath: /var/lib/mysql
name: db-data
image: mysql:5.7
ports:
- containerPort: 3306
volumes:
- name: db-data
persistentVolumeClaim:
claimName: db-data
restartPolicy: Always
언급URL : https://stackoverflow.com/questions/60729205/cant-connect-to-mariadb-by-hostname-within-a-kubernetes-cluster
'source' 카테고리의 다른 글
JavaScript에서 문자열을 대체하여 '9.61'을 '9:61'로 변환하려면 어떻게 해야 합니까? (0) | 2022.11.18 |
---|---|
mysql_real_escape_string 함수의 PDO는 무엇입니까? (0) | 2022.11.08 |
WELD-000072 수동화 범위를 선언하는 관리 빈은 수동화가 가능해야 합니다. (0) | 2022.11.08 |
MYSQL에서 모든 테이블과 필드를 utf-8-bin 대조로 변경하는 스크립트 (0) | 2022.11.08 |
속도 템플릿과 유사한 Java 문자열 치환 (0) | 2022.11.08 |