root.sh for grid infrastructur crashes in s_crsconfig_lib.pm with "Failed to install ohasd startup s
Hello
I am trying to install grid iinfrastructure on SLES10
When running the root.sh script I hget the error:
"Failed to install ohasd startup script, error : Inappropriate ioctl for device"
I found the line in the code where the error appears:
in crs/install/s_crsconfig_lob.pm :
sub s_install_initd
{
if (s_isSUSELinux()) {
my $ohasd = catfile($ID, 'ohasd');
my $initd = catfile('/usr', 'lib', 'lsb', 'install_initd');
my @out = system_cmd_capture($initd, $ohasd);
my $status = shift @out;
if ($status != 0) {
error ("Failed to install ohasd startup script, error: $!");
return $FAILED;
}
}
return $SUCCESS;
}
Does anyone know whats wrong ?
I am trying to install grid iinfrastructure on SLES10
When running the root.sh script I hget the error:
"Failed to install ohasd startup script, error : Inappropriate ioctl for device"
I found the line in the code where the error appears:
in crs/install/s_crsconfig_lob.pm :
sub s_install_initd
{
if (s_isSUSELinux()) {
my $ohasd = catfile($ID, 'ohasd');
my $initd = catfile('/usr', 'lib', 'lsb', 'install_initd');
my @out = system_cmd_capture($initd, $ohasd);
my $status = shift @out;
if ($status != 0) {
error ("Failed to install ohasd startup script, error: $!");
return $FAILED;
}
}
return $SUCCESS;
}
Does anyone know whats wrong ?
0