网页爬虫 - Python爬虫库pyspider,浏览器输入localhost:5000无法打开网页?这是怎么了?
PHP中文网
PHP中文网 2017-04-18 09:27:18
0
6
1535
PHP中文网
PHP中文网

认证0级讲师

reply all(6)
黄舟

localhost:23333, see the output

洪涛

The log shows the listening port 23333. Why did you access port 5000?

伊谢尔伦

Port problem, in the log: listening 172.0.0.1:23333 means that the listening port is 23333. You need to access port 23333 to display it. Accessing port 5000 will definitely have no content.

小葫芦

Maybe I read it wrong upstairs, 127.0.0.1:23333 is the port for scheduler communication; port 5000 is where webui displays the front-end control page.
The log on my machine:

[I 170328 08:51:16 scheduler:683] scheduler.xmlrpc listening on 127.0.0.1:23333
[I 170328 08:51:16 scheduler:68] project test updated, status:RUNNING, paused:False, 0 tasks
[I 170328 08:51:16 app:76] webui running on 0.0.0.0:5000

Looking at the question log, it should be a taskdb and projectdb configuration issue. It is recommended to remove the Chinese characters in the path and try again

Also: Why don’t you use the admin account when running on C drive? This time it’s typical: Microsoft teaches you how to be a good person

伊谢尔伦

I have also encountered this problem, because the 5000 port is not open,
iptables -I INPUT -p tcp --dport 5000 -j ACCEPT
service iptables save
service iptables restart
That’s it

洪涛

Has the poster’s problem been solved? I encountered it too

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template