Netrics server can't start in IPV4 LAN network
book
Article ID: KB0084351
calendar_today
Updated On:
Description
The out-of-the-box script to start Netrics server does not work for IPV4 LAN network.
Issue/Introduction
Netrics can not be started with the error "ipc_init_server - socket: Address family not supported by protocol (97)" .
Environment
Product: TIBCO MDM 9.x
Operating System: All OS supported by MDM
Database: All databases supported by MDM
App server: All app servers supported by MDM
Resolution
The issue is resolved if the "-u 4" parameter is added in the Netrics startup script netricsServer.sh:
startServer(){
collectInputs
if [ "$ipaddr" = '' ]
then
$MQ_HOME/../../tps/5.2/server/bin/TIB_tps_server* -u 4 -p $port
echo "Netrics server started successfully on specified port: $port without any authorized clients IP addresses"
else
$MQ_HOME/../../tps/5.2/server/bin/TIB_tps_server* -u 4 -p $port "$ipaddr"
echo "Netrics server started successfully on specified port: $port and with authorized clients IP addresses: $ipaddr"
fi
exit
}
Additional Information
N/A
Feedback
thumb_up
Yes
thumb_down
No