[Solved] Missing Auto-Generated Link for TensorBoard/ComfyUI in Gradient Notebook
I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like:
https://tensorboard-
This link no longer appears, and I’m unable to access the UI externally. all i get is something like :
Starting server
To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/
Has the auto-link generation feature been removed or changed? Any guidance would be appreciated.
Thanks!
I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like: https://tensorboard-.paperspacegradient.com/
This link no longer appears, and I’m unable to access the UI externally. all i get is something like :
Starting server
To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/
Has the auto-link generation feature been removed or changed? Any guidance would be appreciated.
Thanks!
this temporary solution worked for me:
https://github.com/TheLastBen/fast-stable-diffusion/issues/2820#issuecomment-2088283537
Basically, look at the link of your Jupyter Notebook, for example: https://abcd1234.efgh5678.paperspacegradient.com
Copy the letters and numbers before the first period (in this case, abcd1234.efgh5678)
To generate the link, use this format: https://tensorboard-abcd1234.efgh5678.paperspacegradient.com/
Man thanks for this.. this happens from time to time and such a freaking pain, nice workaround!
man paperspace support really sucks.. this has happened a few times.. anyone know why this may happen..
After carefully reviewing your request, we regret to inform you that the type of support you require falls outside the scope of our support team. A third party developed the tools you mentioned in your inquiry, and as such, we cannot provide direct assistance with them.
Reviewing previous tickets regarding this issue, we can confirm that no changes were made from our end.
After reviewing the repository provided, we noticed that a workaround was provided there, have you tried that already? We highly encourage you to contact them about your issue.
Hope this information is of help.```
I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like: https://tensorboard-.paperspacegradient.com/ This link no longer appears, and I’m unable to access the UI externally. all i get is something like : Starting server To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/ Has the auto-link generation feature been removed or changed? Any guidance would be appreciated. Thanks!
this temporary solution worked for me:
Basically, look at the link of your Jupyter Notebook, for example:
https://abcd1234.efgh5678.paperspacegradient.comCopy the letters and numbers before the first period (in this case,abcd1234.efgh5678) To generate the link, use this format:https://tensorboard-abcd1234.efgh5678.paperspacegradient.com/
got a better opimised solution :
1- Before starting ComfyUI, run the following code:
import os localurl = "https://tensorboard-" + os.environ.get('PAPERSPACE_FQDN') print(localurl)
This will generate the TensorBoard link.
2- Next, run the code cell that starts ComfyUI (the bottom one), and click on the generated TensorBoard link (generated by the previous one). Enjoy!