1. 程式人生 > >centos6.9安裝lr11

centos6.9安裝lr11

配置 spa 編輯 ets ipv isa sysctl .cn run

1、修改yum源

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo yum clean all yum makecache yum update 2、添加vim、rz包 yum install vim -y yum install lrzsz -y 3、把LR11、compat-libstdc++-33-3.2.3-47.fc4.i386.rpm的包上傳到opt文件夾,並掛載LR11.iso mkdir /opt/loadrunner mount -o loop loadrunner-11-load-generator.iso /opt/loadrunner 4、進入loadrunner文件夾,可以看到3個文件 分別為HP、Linux、Solaris 進入linux文件夾 安裝需要的依賴: yum -y install gcc gcc-c++ libstdc++.so.5 rpm -ivh compat-libstdc++-33-3.2.3-47.fc4.i386.rpm yum -y install csh 技術分享

技術分享

5安裝lr 進入linux目錄,運行 ./installer.sh後,分別 輸入‘n‘ 輸入‘a‘ 輸入‘i‘ 輸入‘f‘ 安裝結束後: vim /etc/csh.cshrc 在文件的最後加上 source /opt/HP/HP_LoadGenerator/env.csh vim /opt/HP/HP_LoadGenerator/env.csh 在文件的最後加上 setenv DISPLAY 0.0 (保存的時候使用:wq!) 6、優化系統 編輯/etc/security/limits.conf 增加或修改以下配置: vim /etc/security/limits.conf # 添加或修改如下的行 * soft nproc 131072 * hard nproc 131072 * soft nofile 655350 * hard nofile 655350 編輯/etc/sysctl.conf 增加或修改以下配置: vim /etc/sysctl.conf # 添加或修改如下的行 fs.file-max = 6815744 net.ipv4.tcp_max_tw_buckets = 20000 設置連接數最大值 vim /etc/profile 在末尾添加ulimit -SHn 655350 使修改免重啟並生效 source /etc/profile 關閉防火墻(測試環境建議永久禁用,生產環境自行加防火墻規則,開放端口50500,54345,5003) vim /etc/selinux/config修改狀態為disabled /etc/init.d/iptables stop 7、添加loadrunner用戶並使用該用戶進入 useradd -g 0 -s /bin/csh loadrunner su - loadrunner 8、啟動loadrunner cd /opt/HP/HP_LoadGenerator/bin ./verify_generator 技術分享

技術分享 cd /opt/HP/HP_LoadGenerator/bin ./m_daemon_setup start 技術分享

技術分享

centos6.9安裝lr11