0

我正在尝试在 JMeter 的帮助下监控我的 Web 服务器的性能。我按照这里给出的配置 JMeter 的规则来测试 Web 服务器。

即使按照这些步骤操作,我也会收到 401 Unauthorized 错误: You are not authorized to view this page. If you have not changed any configuration files, please examine the file conf/tomcat-users.xml in your installation. That file must contain the credentials to let you use this webapp

我编辑了 tomcat-users.xml 以添加以下行:

<role rolename="manager-status"/>
<user username="tomcat" password="s3cret" roles="manager-status"/>

请指教。

4

1 回答 1

4

您需要在您的 JMeter 脚本中包含一个“ HTTP 授权管理器”。在那里您指定您的凭据以访问该站点

于 2012-04-30T11:15:06.177 回答