ControlNet
ControlNet copied to clipboard
Using a cloud server, how can I access the URL where the instance is running
I used the GPU cloud server to run the code. When running, the following is displayed: Running on local URL: http://0.0.0.0:7861
To create a public link, set share=True in launch().
This URL cannot be accessed from the public network. How can I see the running result of the instance
Change this last line of code block.launch(server_name='0.0.0.0') to block.launch(server_name='0.0.0.0', share=True) .
The other side's cloud server is accessed through a port, and on that port, the code runs on another port, and I'm denied access
The other side's cloud server is accessed through a port, and on that port, the code runs on another port, and I'm denied access
Did you solve it, I have the same problem
URL: http://0.0.0.0:7861
Hi, I have solved this problem. URL: 7861 in http://0.0.0.0:7861 is the port number, change 0.0.0.0 to the ip address of your remote server. Then open the modified URL locally