cancel
Showing results for 
Search instead for 
Did you mean: 

Installation ERP 6.0 EHP4 on MSCS windows 2008 - oracle 10

former_member117942
Participant
0 Kudos

Hi,

I'm installing an ERP 6.0 EHP4 on platform windows 2008 - oracle 10 with MSCS.

Cluster is configure as described in SAP installation manual.

Network configuration is set up as described in SAP installation manual.

During step --> First MSCS Node (7.3.5 Configuring the First MSCS Node) sapinst got an error before end of input parameters.

In other forum I've found to check MSCS network configuration, but it seems OK.

Any idea ?

Thanks.

Maurizio Manera

##########################################################################################

TRACE 2010-02-19 16:36:03.878

Call block:CollectClusterParameters_windows_ind_ind_ind

function:CollectClusterParameters_windows_ind_ind_ind_DialogPhase_dGetSAPClusterParameters

is validator: false

TRACE 2010-02-19 16:36:03.878 [syxxcnamrs.cpp:278]

PSyHostsEntry CSyIPNameResolverImpl::getHostByName(const iastring& hostName) const

IP name gnutti-sapgr resolves to IP address(es): 192.168.0.133

TRACE 2010-02-19 16:36:03.878

Function setMessageIdOfExceptionMessage: modlib.jslib.invalidIPAddressNumber

WARNING[E] 2010-02-19 16:36:03.878

CJSlibModule::writeError_impl()

MUT-03028 Number value 0x-3f580000 is bigger than 0xFFFFFFFF.

TRACE 2010-02-19 16:36:03.878 [iaxxejsbas.hpp:488]

EJS_Base::dispatchFunctionCall()

JS Callback has thrown unknown exception. Rethrowing.

ERROR 2010-02-19 16:36:03.893 [sixxcstepexecute.cpp:977]

FCO-00011 The step dGetSAPClusterParameters with step key |MSCS_A|windows|ind|ind|ind|0|0|CollectClusterParameters|windows|ind|ind|ind|3|0|dGetSAPClusterParameters was executed with status ERROR .

TRACE 2010-02-19 16:36:03.893

SAPInst calls the LogInquirer. The output of the LogInquirer can be found in file sapinst_loginquirer.log.

TRACE 2010-02-19 16:36:03.909 [iaxxgenimp.cpp:712]

CGuiEngineImp::showMessageBox

<html> <head> </head> <body> <p> An error occurred while processing option SAP ERP 6.0 EHP4 Ready - Support Release 1 > Software Life-Cycle Options > System Copy > Oracle > Target System Installation > High-Availability System > Based on AS ABAP > First MSCS Node. You can now: </p> <ul> <li> Choose <i>Retry</i> to repeat the current step. </li> <li> Choose <i>View Log</i> to get more information about the error. </li> <li> Stop the option and continue with it later. </li> </ul> <p> Log files are written to C:\Program Files/sapinst_instdir/ERPEhP4/LM/COPY/ORA/SYSTEM/HA/AS-ABAP/MSCS-A.

TRACE 2010-02-19 16:36:03.909 [iaxxgenimp.cpp:1257]

CGuiEngineImp::acceptAnswerForBlockingRequest

Waiting for an answer from GUI

#########################################################################################

<p>

Edited by: Eric Brunelle to delete html tag on Feb 19, 2010 1:47 PM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Two quick questions.

Have you moved the SAP Services group back to the first node? Have you run the MSCS configuration validation process in the Failover Cluster Management console?

Thanks!

J. Haynes

markus_doehr2
Active Contributor
0 Kudos

> SAPInst calls the LogInquirer. The output of the LogInquirer can be found in file sapinst_loginquirer.log.

So I'd check the logfile to get further information about what went wrong.

Markus

former_member117942
Participant
0 Kudos

Here the sapinst_loginquirer.log.

Thanks.

Maurizio

TRACE 2010-02-19 16:36:03.893

SAPInst calls the LogInquirer because of an error in execution of step |MSCS_A|windows|ind|ind|ind|0|0|CollectClusterParameters|windows|ind|ind|ind|3|0|dGetSAPClusterParameters.

TRACE 2010-02-19 16:36:03.893

Call block:CallBackInCaseOfAnErrorDuringStepExecution

function:CallTheLogInquirer

is validator: true

WARNING 2010-02-19 16:36:03.893 [iaxxejshlp.cpp:150]

Could not get property IDs of the JavaScript object.

ERROR 2010-02-19 16:36:03.893 [iaxxejsctl.cpp:492]

FJS-00010 Could not get value for property .

TRACE 2010-02-19 16:36:03.909

A problem occurs during execution the inquirer callback. SAPinst will switch back to the standard behaiviour.

Former Member
0 Kudos

Have you checked this note? 1249469 looks like you need to replace the control.xml to go on.

former_member117942
Participant
0 Kudos

Hi,

my SAP system is 7.01 kernel based so I can't apply control.xml of "Note 1249469 - SAP NetWeaver Based On Kernel 7.11: Windows".

I've just download new control.xml file attached to "Note 1326698 - SAP NetWeaver 7.01 SR1/Business Suite 7 SR1: Windows" but error still remains.

So I've compared the two control.xml files in corrispondence of function IPAddress(adr), where the error "modlib.jslib.invalidIPAddressNumber" is returned.

The difference between files are reported below (first control.xml for kernl 701 and before control.xml files for kernel 7.11).

I've noticed that in my control.xml files is missing the following code:

##########################################

while (num < 0) {

num += 0x100000000;

}

##########################################

For a test I've tried to modify my control.xml files adding this code and there is no error; I can see "Parameter Summary" of sapinst program. Now I can go on with installation, clicking on next.

Now I've to decide if going on with installation or opening a support message to SAP Support for validating this solution.

What do you think about this ?

Bye

Maurizio

##########################################

7.01 - control.xml

##########################################

Trace("IPAddress", "IPAddress(number ", adr, ")");

var num = Number(adr);

if (isNaN(num) || num > 0xFFFFFFFF || num < 0) {

throw new Exception("modlib.jslib.invalidIPAddressNumber", "0x" + num.toString(16));

}

this._adr = Number(adr);

##########################################

7.11 - control.xml

##########################################

Trace("IPAddress", "IPAddress(number ", adr, ")");

var num = Number(adr);

while (num < 0) {

num += 0x100000000;

}

if (isNaN(num) || num > 0xFFFFFFFF || num < 0) {

throw new Exception("modlib.jslib.invalidIPAddressNumber", "0x" + num.toString(16));

}

this._adr = num;