0

我正在尝试构建 kubeflow 管道

元数据部署

在 Kubeflow 连接数据时,出现以下问题。我需要做什么操作?我现在已经建立了数据库并且确认用户密码是正确的

这是官方的⬇️

apiVersion: v1
data:
  password: aG05WGJCb2s3ZEdUNDR0eQ==
  username: YWRtaW4=
kind: Secret
metadata:
  name: mysql-credential
  namespace: kubeflow
type: Opaque

------------------
env:
- name: DBCONFIG_USER
  valueFrom:
    secretKeyRef:
      key: username
      name: mysql-credential
- name: DBCONFIG_PASSWORD
  valueFrom:
    secretKeyRef:
      key: password
      name: mysql-credential

我的配置也是

日志错误

2020-09-27 10:16:51.065292: F ml_metadata/metadata_store/metadata_store_server_main.cc:178] Non-OK-status: ml_metadata::CreateMetadataStore(connection_config, &metadata_store) status: Internal: mysql_real_connect failed: errno: 1045, error: Access denied for user 'admin'@'10.22.0.185' (using password: YES)MetadataStore cannot be created with the given connection config.
4

1 回答 1

0

尝试:

  • 检查拼写错误:用户名或密码。
  • 检查主机名并与 mysql.user 表主机名进行比较
  • 检查用户是否存在。
  • 检查主机是否包含IP地址或主机名。
  • 检查 mysql 数据库是否工作。
    运行: mysql -D ${MYSQL_DATABASE} -u root -p${MYSQL_ROOT_PASSWORD} -e 'SELECT 1'mysql 吊舱上
  • 检查 PVC 是否正确界定: kubectl get pvc mysql -n kubeflow
  • 检查你为 mysql PV 使用的卷 - 如果是本地 hostPath,请尝试删除 k8s 集群节点上的目录

查看更多:mysql-errno-1045

看一下:access-denied-mysqlkubeflow-mysql-pipelinekubeflow-mysql

于 2020-09-29T12:54:38.163 回答