Running on Local URL : http://0.0.0.0:7860 ? #7558
-
anyone else getting |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
do you have in general, when you see '0.0.0.0', that means that its bound to all IPs present on the system. vs when you see whats the point of |
Beta Was this translation helpful? Give feedback.
-
./webui.sh --server-name=0.0.0.0 |
Beta Was this translation helpful? Give feedback.
-
If you’re running LlamaFactory on a server, you obviously can’t just type in the local URL http://0.0.0.0:7860/ on your own computer. Instead, you’ll need to use the shared link. If you see instructions saying files are missing, make sure to follow those instructions and download the necessary files. If no such instructions appear, you can skip this step. Here’s the key step that had me stuck for a while: At this point, you should see the shared link. 😊 如果你是用服务器跑的llamafactory,那当然不能在自己的电脑里面输入 local URL: http://0.0.0.0:7860/,但可以用shared link。 然后就应该能看到shared link了 如果你在AutoDL中想打开local URL: http://0.0.0.0:7860/ ,可以参考 https://blog.csdn.net/weixin_72977159/article/details/140614273 |
Beta Was this translation helpful? Give feedback.
do you have
--listen
cmdline param?in general, when you see '0.0.0.0', that means that its bound to all IPs present on the system.
of course, that doesn't resolve by magic and you need to specify IP to use.
vs when you see
127.0.0.1
which is loopback adapter - meaning thats the address that points back to yourself.whats the point of
0.0.0.0
? if you wanted to connect toWebUI
over network, not just on your local system - then you could use the IP of the target system to connect to it.with
127.0.0.1
, you can only connect from a local system - more secure, but less flexible.