LoadRunner 安装方法与系统环境初始化过程
原文:http://hi.baidu.com/higkoo/blog/item/454c5901db9551037aec2c3a.html
了解过性能测试的朋友,想必对LoadRunner一定不陌生。
不错,LoadRunner很强大。但你是否能发挥LoadRunner的强大功能呢?
本文介绍笔者在实践过程中批量安装LoadRunner和初始化环境的过程:
1、 安装.net framwork 3.5
2、 安装LoadRunner(安装包路径和程序安装路径中不要有中文)
3、 安装JDK(下载官方最新安装包,所有机器安装目录建议相同)
4、 安装C++运行库
Microsoft Visual C++ 2005 Redistributable + sp1
Microsoft Visual C++ 2008 Redistributable + sp1
5、 将系统临时文件存在在空间最大的磁盘上。譬如执行批处理如下:
wmic ENVIRONMENT where "name='temp' or name='tmp'" set VariableValue='D:\temp'
6、 修改系统注册表,增加系统最大吞吐能力。批处理如下:
echo Yes | reg add HKLM\System\CurrentControlSet\Services\tcpip\Parameters /v MaxUserPort /t reg_Dword /d 65534 /f
echo Yes | reg add HKLM\System\CurrentControlSet\Services\tcpip\Parameters /v TcpTimedWaitDelay /t reg_Dword /d 5 /f
7、 保证RemoteRegistry服务自动启动,资源监控时需要用到:
sc config RemoteRegistry start= auto
8、 将LoadRunner的Agent添加到服务并自动启动:
"%LoadRunner%\LAUNCH_SERVICE\bin\magentservice.exe" –install
9、 各测试机时间同步,可使用Windows的时间同步或第三方软件实现。笔者使用Linux的NTP服务。
10、 如果安装有防火墙,注意给LoadRunner放行。
11、 如果要进行Oracle的测试,还需要安装Oracle客户端。
12、 开启自动登录,运行`control userpasswords2`取消勾选“要使用本机,用户必须输入用户名和密码”(配合第13点,防止系统更新完成后自动重启)
13、 禁止系统更新自动重启功能:
echo Yes | reg add HKLM\Software\Policies\Microsoft\Windows\WindowsUpdate\AU /v NoAutoRebootWithLoggedOnUsers /t reg_Dword /d 1 /f
测试环境:
Microsoft Windows Server 2003 R2 Enterprise Edition Service Pack 2 _ cn _ i386 (v5.2.3790)
HP LoadRunner Software 9.50.0.0 Build 3210
还以为是linux平台的安装呢
Linux也有呀:
http://hi.baidu.com/higkoo/blog/item/2aa37d9534544b027bf480bb.html
页:
[1]