Installation/configuration using a response file fails with CPI ERROR V-9-0-0

book

Article ID: 100046688

calendar_today

Updated On:

Description

Error Message

0 22:59:49 CPI ERROR V-9-0-0

0 No sys object defined for system -27

Cause

The error was generated when reading a parameter that included a dash in the node name. Example :

$CFG{vcs_lltlink1}{gpkt41r4i-27}="net10";
$CFG{vcs_lltlink1}{gpkt41r4i-25}="net10";
$CFG{vcs_lltlink2}{gpkt41r4i-27}="net11";
$CFG{vcs_lltlink2}{gpkt41r4i-25}="net11";
$CFG{vcs_lltlinklowpr}{gpkt41r4i-25}="net0";
$CFG{vcs_lltlinklowpr}{gpkt41r4i-27}="net0";

The -27 in the error refers to the -27 in the node name.

Resolution

Enclose the server name in quotes.

$CFG{vcs_lltlink1}{"gpkt41r4i-27"}="net10";
$CFG{vcs_lltlink1}{"gpkt41r4i-25"}="net10";
$CFG{vcs_lltlink2}{"gpkt41r4i-27"}="net11";
$CFG{vcs_lltlink2}{"gpkt41r4i-25"}="net11";
$CFG{vcs_lltlinklowpr}{"gpkt41r4i-25"}="net0";
$CFG{vcs_lltlinklowpr}{"gpkt41r4i-27"}="net0";

Issue/Introduction

Installing or configuring Infoscale using a response file fails with CPI ERROR V-9-0-0.