首页 > Web开发 > 详细

apache-jmeter对网站压力测试

时间:2014-11-25 07:06:53      阅读:276      评论:0      收藏:0      [点我收藏+]

(1)测试的网址的代码是

webapp10.html

<!DOCTYPE html>
<html>
	<head>
		<title>
			Web App
		</title>
	</head>
	<body>
		<header>Square root query page</header>
		<form action="webapp10.php" method="POST">
<label>What is the square root of <input type="number" value="2" name="n"></label>
<button type="submit">Find out!</button>
</form>
	</body>
 
</html>

webapp10.html

<!DOCTYPE html>
<html>
	<head>
		<title>
			Web App
		</title>
	</head>
	<body>
		<?php
		echo "the result is".sqrt($_POST['n']);
		?>
	</body>
 
</html>




传入的参数是n=2;

(2)

bubuko.com,布布扣


点击该文件 按文章的要求配置

bubuko.com,布布扣

bubuko.com,布布扣

step one:

bubuko.com,布布扣

setp two:


bubuko.com,布布扣

step 3

click the start button and see the result

bubuko.com,布布扣

step 4

you can use distribution run, control several computer to test website

1.  run   jmeter-server.bat  in /bin to open the server side

2. to edit  jmeter.properties(make sure the file is visiable)

edit this sentence 

bubuko.com,布布扣

to add the slave host ip adress;

3. make sure turn off the firewall

4. open the panel  to control it, you can control the slave compuer 192.136.1.2 to test the website.

usually the server is on one computer. the master host is on one computer. the slaves hosts are one other computers;

bubuko.com,布布扣

bubuko.com,布布扣


jmeter usermanual


apache-jmeter对网站压力测试

原文:http://blog.csdn.net/worldmakewayfordream/article/details/41466589

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!