gpt4 book ai didi

python - 无法访问Locust WebInterface "ERR_CONNECTION_REFUSED"

转载 作者:行者123 更新时间:2023-12-01 07:52:48 42 4
gpt4 key购买 nike

我想在 Windows 10 上使用 Locust 测试我的项目。

脚本似乎运行正常(CMD 中没有错误),但我无法连接到 Web 界面 http://127.0.0.1:8089 (ERR_CONNECTION_REFUSED)。

我猜测,这与浏览器/Windows 配置有关,但我找不到问题所在。我在 LAN 设置中没有设置代理,我从 DNS 获取 IP,并且主机文件中没有任何更改。

locustfile.py:

python
from locust import HttpLocust, TaskSet, task

class UserBehavior(TaskSet):
def on_start(self):
""" on_start is called when a Locust start before any task is scheduled """
self.login()

def on_stop(self):
""" on_stop is called when the TaskSet is stopping """
self.logout()

def login(self):
self.client.post("/login", {"username":"tester", "password":"abcd1234"})

def logout(self):
self.client.post("/logout", {"username":"ellen_key", "password":"education"})

@task(2)
def index(self):
self.client.get("/")

@task(1)
def profile(self):
self.client.get("/profile")

class WebsiteUser(HttpLocust):
task_set = UserBehavior
min_wait = 5000
max_wait = 9000
host="http://google.com"

CMD:

D:\workspace\WebTesting>locust

CMD 结果:

[2019-05-13 09:49:45,069] LB6-001-DTMH/INFO/locust.main: Starting web monitor at *:8089
[2019-05-13 09:49:45,070] LB6-001-DTMH/INFO/locust.main: Starting Locust 0.11.0

当我在命令行中中断脚本时,我收到 KeyboardInterrupt 消息和一些没有数据的统计信息。

python -m http.server 8089 似乎可以工作。

最佳答案

尝试访问http://localhost:8089/

我不太清楚为什么,但我无法通过 http://127.0.0.1 访问 Locust 网络界面要么(其他网络服务器使用此地址在本地运行良好),但转到本地主机对我来说确实有效。

关于python - 无法访问Locust WebInterface "ERR_CONNECTION_REFUSED",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56108650/

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com