我正在尝试在 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"/>
请指教。