k8s 部署 postgresql 报错:initdb: error: directory "/var/lib/postgresql/data" exists but is not
2021/12/1 19:11:02
本文主要是介绍k8s 部署 postgresql 报错:initdb: error: directory "/var/lib/postgresql/data" exists but is not,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
最近在 k8s 上部署 gitlab 时,底层存储使用的是 ceph,结果 postgresql 遇到以下报错:
$ kubectl -n gitlab logs postgresql-76d969dd56-m79wm The files belonging to this database system will be owned by user "postgres". This user must also own the server process. The database cluster will be initialized with locale "en_US.utf8". The default database encoding has accordingly been set to "UTF8". The default text search configuration will be set to "english". Data page checksums are disabled. initdb: error: directory "/var/lib/postgresql/data" exists but is not empty It contains a lost+found directory, perhaps due to it being a mount point. Using a mount point directly as the data directory is not recommended. Create a subdirectory under the mount point.
postgresql yaml 文件:
# pv apiVersion: v1 kind: PersistentVolumeClaim metadata: name: postgresql-ceph-pvc namespace: gitlab spec: storageClassName: ceph-leffss accessModes: - ReadWriteOnce resources: requests: storage: 20Gi --- apiVersion: v1 kind: Service metadata: name: postgresql namespace: gitlab labels: app: gitlab tier: postgreSQL spec: ports: - port: 5432 selector: app: gitlab tier: postgreSQL --- apiVersion: apps/v1 kind: Deployment metadata: name: postgresql namespace: gitlab labels: app: gitlab tier: postgreSQL spec: replicas: 1 selector: matchLabels: app: gitlab tier: postgreSQL strategy: type: Recreate template: metadata: labels: app: gitlab tier: postgreSQL spec: #nodeSelector: # gee/disk: "500g" containers: - image: hub.leffss.com/library/postgres:12.6-alpine #- image: harbor.boge.com/library/postgres:12.6-alpine name: postgresql env: - name: POSTGRES_USER value: gitlab - name: POSTGRES_DB value: gitlabhq_production - name: POSTGRES_PASSWORD value: bogeusepg - name: TZ value: Asia/Shanghai ports: - containerPort: 5432 name: postgresql livenessProbe: exec: command: - sh - -c - exec pg_isready -U gitlab -h 127.0.0.1 -p 5432 -d gitlabhq_production initialDelaySeconds: 110 timeoutSeconds: 5 failureThreshold: 6 readinessProbe: exec: command: - sh - -c - exec pg_isready -U gitlab -h 127.0.0.1 -p 5432 -d gitlabhq_production initialDelaySeconds: 20 timeoutSeconds: 3 periodSeconds: 5 # resources: # requests: # cpu: 100m # memory: 512Mi # limits: # cpu: "1" # memory: 1Gi volumeMounts: - name: postgresql mountPath: /var/lib/postgresql/data volumes: - name: postgresql persistentVolumeClaim: claimName: postgresql-ceph-pvc
解决方法:volumeMounts 中新增 subPath 参数
volumeMounts: - name: postgresql mountPath: /var/lib/postgresql/data subPath: data
参考:postgresql - How to have data persist in GKE kubernetes StatefulSet with postgres? - Stack Overflow
这篇关于k8s 部署 postgresql 报错:initdb: error: directory "/var/lib/postgresql/data" exists but is not的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23云原生周刊:利用 eBPF 增强 K8s
- 2024-12-20/kubernetes 1.32版本更新解读:新特性和变化一目了然
- 2024-12-19拒绝 Helm? 如何在 K8s 上部署 KRaft 模式 Kafka 集群?
- 2024-12-16云原生周刊:Kubernetes v1.32 正式发布
- 2024-12-13Kubernetes上运行Minecraft:打造开发者平台的例子
- 2024-12-12深入 Kubernetes 的健康奥秘:探针(Probe)究竟有多强?
- 2024-12-10运维实战:K8s 上的 Doris 高可用集群最佳实践
- 2024-12-022024年最好用的十大Kubernetes工具
- 2024-12-02OPA守门人:Kubernetes集群策略编写指南
- 2024-11-26云原生周刊:K8s 严重漏洞