linux 安装loadrunner loadgenerator详细过程

说明:在实际安装中主要参考了“http://blog.sina.com.cn/s/blog_9aa583cf0101bu4y.html”,并结合实际情况添加修改了内容,并且还参考了其他一些网友博客内容,因为没有及时记下其网址,未能一一列出,再次一并表示感谢。实际应用中遇到的情况各不相同,根据问题提示逐步解决。


系统信息:CentOS release 6.4 (Final)

1、远程登录服务器,切换到root:

创建文件夹lr,将需要安装的文件传输到这里;

cd /opt

mkdir lr

2、将lr文件夹操作权限放开:

chmod 777 -R lr

3、将需要安装的loadrunner load generator上传到此文件夹下,需要此文件的请参考下载:网盘地址:http://pan.baidu.com/s/1kT5jpMB

4、解压文件失败,下载相关软件:

yum install -y unzip zip

5、解压文件:

unzip linux_fuzai.zip(即下载的loadrunner load generator文件)

解压后文件夹为Linux;

6、修改文件夹Linux权限:

chmod 777 -R Linux

7、安装load generator :

进入Linux ,

sh installer.sh

安装过程中将会弹出4个对话框,一般分别输入n,a,i,f即可,到此安装基本完成;

8、创建负载端的客户higkoo:

useradd -g 0 -s /bin/csh higkoo

此用户默认使用的shell未csh;在centos下,默认的shell应该是bash,但LR使用的csh;当时我的机器上没有安装csh,需要进行安装:yum install csh

9、查看新增的用户信息:

more /etc/passwd

10、csh和bash在加载不同的shell时,可以加载不同的配置;csh的默认配置在 /etc/csh.cshrc下,bash的默认配置在/etc/profile。LR默认给出了一个环境变量的配置文件,文件在/opt/HP/HP_LoadGenerator/env.csh。下面我们需要将它加入到csh的默认配置中

vi /etc/csh.cshrc

在文件末尾添加:

source /opt/HP/HP_LoadGenerator/env.csh

11、切换到higkoo用户,验证是否安装成功

su higkoo

env

12、切换到root;

su 

13、在env.csh中设置DISPLAY变量

vi  /opt/HP/HP_LoadGenerator/env.csh

在末尾添加:

setenv DISPLAY 0.0

14、切换回higkoo用户,验证安装启动:

su higkoo

cd  /opt/HP/HP_LoadGenerator/bin

./verify_generator

提示:vuser host G4DBRT:failed

15、修改主机配置:

su root

cd /etc/hosts

通过env 查到HOST=G4DBRT;

vi /etc/hosts

在末尾添加:127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4G4DBRT

保存退出::wq!

16、添加环境变量:

cat /opt/HP/HP_LoadGenerator/env.csh > /etc/.login

cat /opt/HP/HP_LoadGenerator/env.csh >~higkoo/.cshrc

touch ~root/.rhosts ~higkoo/.rhosts

17、添加controller的ip地址及主机名:

vi /etc/hosts

在末尾添加controller的IP地址及主机名称

18、服务器为64位,LR为32位需安装:

yum install glibc.i686

yum install libstdc++.so.5

19、启动LR负载端:

cd /HP/HP_LoadGenerator/bin

./m_daemon_setup start 

ps aux |grep m_agent_daemon


安装启动完成

20、连接:

添加服务器:
name:负载端服务器IP地址
platform:unix
temporary directory:/tmp/yhxw/xjw
vuser limits:
other vusers:20000(根据需要设置,默认5000)
unix environment:
选中“don't use RS”

设置global schedule

在“diagnostics”配置中,将“web page diagnostics(max:vuser sampling:10%)”置为“enable”

21、至此连接完成。

你可能感兴趣的:(LR)