http 성능 테스트 도구-apache ab
1939 단어 시스템 운영 과 안전http 성능 테스트
sudo apachectl -v
sudo apachectl status
-n1000 1000 , 1
-c10 10, 1
http://127.0.0.1:3000/ , /
/n,/c,
-t
-p post
-w html
\#\#\#\#효과\#\#\#\#
Server Software: web
Server Hostname: url ,
Server Port:
Document Path: url
Document Length:
Concurrency Level: ,
Time taken for tests:
Complete requests: ,
Failed requests: , , , ,
Total transferred: , , http
HTML transferred: html ,
Requests per second: ,
Time per request: ,
Time per request: ,
Transfer rate: , , ,
Connection Times: , , ,
Percentage of the requests served within a certain time:
eg
90% 4: 90% 4ms
\#\#NodeJs 가 구축 한 http 서버 테스트 로 컬 테스트,주 소 는 로 컬 루프 주소 입 니 다.Nodejs 서버 구축 코드 http-test.js 는 다음 과 같 습 니 다.
var http = require('http')
http
.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'})
res.write('Hello Nodejs')
res.end()
})
.listen(3000)
http 서버 시작:
ab -n1000 -c10 http://hyperdai.com/
입력 명령:node http-test.js
후기apache jmeter 기억 학습