The command "hastart" fails with ERROR V-16-1-10545 IpmServer::open Bind Failed errno = 98

book

Article ID: 100001781

calendar_today

Updated On:

Description

Error Message

The following messages appear in the /var/VRTSvcs/log/engine_A.log:
 
2010/04/15 17:51:28 VCS INFO V-16-1-10196 Cluster logger started
2010/04/15 17:51:28 VCS NOTICE V-16-1-11022 VCS engine (had) started
2010/04/15 17:51:28 VCS NOTICE V-16-1-11050 VCS engine version=5.0
2010/04/15 17:51:28 VCS NOTICE V-16-1-11051 VCS engine join version=5.0.40.0
2010/04/15 17:51:28 VCS NOTICE V-16-1-11052 VCS engine pstamp=Veritas-5.0MP4-02/24/10-17:49:00
2010/04/15 17:51:28 VCS NOTICE V-16-1-10114 Opening GAB library
2010/04/15 17:51:28 VCS NOTICE V-16-1-10619 'HAD' starting on:
2010/04/15 17:51:28 VCS WARNING V-16-1-10545 IpmServer::open Bind Failed errno = 98
2010/04/15 17:51:28 VCS WARNING V-16-1-10604 Unsuccessful open of service
 
 
The Bind error number 98 is an OS level error. The relevant OS message for error code 98 is "Address already in use". The error is occurring due to a conflict between an application configured on the system and the default VCS (Veritas Cluster Server) port configuration. VCS uses several ports, for example TCP port number 14141. When VCS attempts to start and utilize the port, it is determined that the port is already in use and HAD fails to start. 
 

Resolution

Verify the port is already in use on the system use the netstat command. For example:
 
# netstat -a|grep 14141
tcp        0      0 :::14141                    :::*                        LISTEN
tcp        0      0 ::ffff:192.168.65.154:10919  ::ffff:192.168.65.154:14141  ESTABLISHED
tcp        0      0 ::ffff:192.168.65.154:14141  ::ffff:192.168.65.154:10919  ESTABLISHED
tcp        0      0 ::ffff:192.168.65.154:14141  ::ffff:192.168.211.105:3803 ESTABLISHED
 
On a system where VCS is to be implemented (but is not currently running), the above command should have no output. Reconfigure the application as needed to use a different TCP port to resolve the conflict.
 

Issue/Introduction

The command "hastart" fails with ERROR V-16-1-10545 IpmServer::open Bind Failed errno = 98