Open Master-cai opened 1 year ago
UPDATE
I use docker inspect
to find the wandb docker are mount at /var/lib/docker/volumes/7906fcb0.../_data
. I copy it to my own dir e.g. wandb_data
and use chmod -R 777 wandb_data
. The wandb_data
dir includes env
, minio
and mysql
dir, which is same as _data
. Then I start a new wandb docker and use -v
opt to mount /vol
to wandb_data
.
Now I can open the wandb web page and login. However, I can only see my project name. When I click into a project, it shows There was a problem rendering these panels.
:
And i click into a specific run, and the web crashed: InternalServerError (500): Internal Server Error (original: %!s(<nil>))
what should I do?
WandB Internal User commented: Master-cai commented: UPDATE
I use
docker inspect
to find the wandb docker are mount at/var/lib/docker/volumes/7906fcb0.../_data
. I copy it to my own dir e.g.wandb_data
and usechmod -R 777 wandb_data
. Thewandb_data
dir includesenv
,minio
andmysql
dir, which is same as_data
. Then I start a new wandb docker and use-v
opt to mount/vol
towandb_data
.Now I can open the wandb web page and login. However, I can only see my project name. When I click into a project, it shows
There was a problem rendering these panels.
:And i click into a specific run, and the web crashed:
InternalServerError (500): Internal Server Error (original: %!s(<nil>))
what should I do?
have you commented anything? I can not see it.
Hi @Master-cai ! Apologies you are running into this, what version of the server are you running this on? Also could you send me minimal reproduction code for this issue?
Also, could you send me your browser logs after refreshing your page and running into those errors again?
Hi @Master-cai ! Apologies you are running into this, what version of the server are you running this on? Also could you send me minimal reproduction code for this issue?
Also, could you send me your browser logs after refreshing your page and running into those errors again?
Thanks for your reply! how to check the version of the server? I use docker inspect
and get "Image": "sha256:03b0c120304a4ee2857e24ed09a3e91d33306ceff00b4ac761b59a8d27a70c67"
. May be this can help you to determine the version.
There is no code involved here, it just happens when I open the web page, I haven't tried to see if it can record new records.
Also, I do not know how to get the browser logs, can you give me some directions ?
Thanks!
Thank you for your timely response as well!
Off of the logs you sent me, it looks like you are running into issues with your instance's SQL database:
2023-07-03T12:02:22.225261Z 0 [ERROR] Unable to setup unix socket lock file.
2023-07-03T12:02:23.856311Z 0 [Note] mysqld: Shutdown complete
Seems like a file was improperly closed/corrupted.
Could you please try restarting your machine, as well as the docker container you are running wandb on?
To get your browser logs, please right-click anywhere on wandb webpage and select "inspect", there(usually a new window opens on the right hand side of your screen), select the console option
and refresh your page and get the error to show up one more time.
WandB Internal User commented: ArtsiomWB commented: Thank you for your timely response as well!
Off of the logs you sent me, it looks like you are running into issues with your instance's SQL database:
2023-07-03T12:02:22.225261Z 0 [ERROR] Unable to setup unix socket lock file.
2023-07-03T12:02:23.856311Z 0 [Note] mysqld: Shutdown complete
Seems like a file was improperly closed/corrupted.
Could you please try restarting your machine, as well as the docker container you are running wandb on?
To get your browser logs, please right-click anywhere on wandb webpage and select "inspect", there(usually a new window opens on the right hand side of your screen), select the console option
and refresh your page and get the error to show up one more time.
Artsiom Skarakhod commented: Hi there, I wanted to follow up on this request. Please let us know if we can be of further assistance or if your issue has been resolved.
Artsiom Skarakhod commented: Hi, since we have not heard back from you we are going to close this request. If you would like to re-open the conversation, please let us know!
I have used docker(20.10.21) to run wandb in a Ubuntu18.04 server. When I restarted the server and wandb, it doesn't work properly anymore:
I checked some related issues and tried to get some log:
docker logs wandb-local
:with
docker exec -it wandb-local bash; cat /var/log/mysql.log
, I got:what happened? Because there is important data, so I dare not operate casually. Is there anyone can help me to fix it? Thanks very much!