系统故障 FAQ
账号登录不了,报 504
- Zadig 系统账号无法登录
查看当前 pd-web 服务的状态和日志,确认和数据库服务连接是否存在异常。命令如下:
kubectl get pod -n < koderover 所在的 namespace > |grep <pd-web>
#找到对应的 Pod 后可以查看下具体的 Pod 的日志
kubectl logs -f <pod/podName> -n <koderover 所在的 namespace >
- 集成 AD/LDAP/SSO 后,系统账号无法登录
这是因为 AD/LDAP/SSO 连接不上导致的,请确认集群内的网络是否可以正常连接 AD/LDAP/SSO 系统
Mongodb 和 Minio 处于 Pending 状态,安装失败?
Zadig 系统安装的时候,不会介入到集群的存储细节中来,因此,在没有默认 storage class 或是没有指定 storage class 的时候, 需要实现创建 PV 来让 MinIO 和 Mongodb 正确运行。 以下是一个可以运行的 PV yaml 示例
点击查看
apiVersion: v1
kind: PersistentVolume
metadata:
name: zadig-reserved-pv
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/zadig/data"
type: Directory
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: task-pv-volume
spec:
capacity:
storage: 20Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/zadig/data2"
type: Directory