忘记本地 wandb 邮箱

huangapple go评论86阅读模式
英文:

Forgot local wandb email

问题

我已经在wandb上本地记录和浏览了一段时间,但在一些更新后,我被登出了,无法记得我在本地使用的电子邮件。如何恢复本地凭据?

英文:

I have been logging and browsing locally on wandb, but after some time and updates I got logged out and can't remember the email I used locally. How can I recover my local credentials?

答案1

得分: 0

你可以通过连接到Docker容器并访问MySQL数据库来检索与您的本地WandB实例关联的电子邮件地址。按照以下步骤操作:

通过运行以下命令连接到WandB本地Docker容器:

docker exec -ti wandb-local bash

使用以下命令访问MySQL数据库:

mysql -u wandb_local -p

在提示时,输入默认密码:wandb_local。

在MySQL控制台中运行以下命令:

use wandb_local;
select id,email,auth_id,name,username from users;

这将显示一个包含WandB本地实例中用户的电子邮件、用户名和其他信息的表格。

英文:

You can retrieve the email address associated with your local WandB instance by connecting to the Docker container and accessing the MySQL database. Follow these steps:

Connect to the WandB local Docker container by running:

docker exec -ti wandb-local bash

Access the MySQL database with the following command:

mysql -u wandb_local -p

When prompted, enter the default password: wandb_local.

Run the following commands in the MySQL console:

use wandb_local;
select id,email,auth_id,name,username from users;

This will display a table containing the email, username, and other information about the users in the WandB local instance.

huangapple
  • 本文由 发表于 2023年4月13日 15:55:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/76002982.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定