英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论