Performance Center 12.00-lrd_initialize_db上的错误

问题描述 投票:0回答:1

我有一个Vugen脚本,该脚本在lrd_initialize_db处失败,并出现以下错误:

Action.c(5): lrd.c/fjInitDB: None of the library combinations specified in section [ORACLE_WINNT] in the "lrd.ini" file could be loaded.  Initializing for ORACLE failed
Action.c(5): lrd_initialize_db: ERROR, return-code=LRDE2015

我正在Performance Center 12.00上运行此脚本。我已经在Windows Server 2012(64位)(控制器和负载生成器)上安装了Oracle 11g R2。以下是我设置的环境变量:

ORACLE_HOME: C:\app\<user>\product\11.2.0\dbhome_1

PATH: added C:\app\srvgro-perfmon\product\11.2.0\dbhome_1\BIN

我已确认仅安装了一个Oracle客户端。

下面是lrd.ini文件的内容

[ORACLE_WINNT]
805=lrdo32.dll+ora805.dll
816=lrdo32.dll+oci.dll
815=lrdo32.dll+oraclient8.dll
804=lrdo32.dll+ora804.dll
803=lrdo32.dll+ora803.dll
73=lrdo32.dll+ora73.dll
72=lrdo32.dll+ora72.dll
71=lrdo32.dll+orant71.dll
1100=lrdo32.dll+oraclient11.dll

下面是lrd.log文件

lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "ora805.dll", specified after a "+"  in the "805" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues

lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "oci.dll", specified after a "+"  in the "816" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - (null)Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "oraclient8.dll", specified after a "+"  in the "815" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "ora804.dll", specified after a "+"  in the "804" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "ora803.dll", specified after a "+"  in the "803" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "ora73.dll", specified after a "+"  in the "73" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "ora72.dll", specified after a "+"  in the "72" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "orant71.dll", specified after a "+"  in the "71" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - The specified module could not be found.

Processing continues
lrd.c (24348):  lrd.c/fjInitDB: Cannot load the ORACLE library (DLL), "oraclient11.dll", specified after a "+"  in the "1100" entry in section [ORACLE_WINNT] in the "lrd.ini" file.  - (null)Processing continues
lrd.c (24348):  lrd.c/fjInitDB: None of the library combinations specified in section [ORACLE_WINNT] in the "lrd.ini" file could be loaded.  Initializing for ORACLE failed

请帮助我解决此问题

oracle oracle11g performance-testing loadrunner vugen
1个回答
2
投票

您已经安装了什么oracle客户端?

在我看来:1.您没有安装任何客户端或多个客户端2.或者您没有正确的版本(32/64版本)3. path变量中的数据错误。 (已安装多个客户端)

您能否回答上述问题,然后复制/粘贴ORACLE_HOME和Path变量值?

您需要从oracle安装一个即时客户端:https://www.oracle.com/database/technologies/instant-client/downloads.html32/64位版本11g或12c并添加到路径变量:C:\ app \ client \ yourUserName \ product \ 12.2.0 \ client_1 \ bin

请确保您没有安装任何其他客户端,并确保是否必须从环境变量中将其删除。

© www.soinside.com 2019 - 2024. All rights reserved.