Products | Versions |
---|---|
TIBCO Runtime Agent (TRA) | - |
Not Applicable | - |
Resolution:
Usually it is because of incorrect NIC. The RVD uses the loopback IP address“127.0.0.1” as the broadcast address. So no message can be sent out of the machine. This can be verified via running utility $(tibco_home)/tibrv/bin/iniftst.
For instance, the following indicates that the loopback IP address is used. In fact, "192.168.65.187" should be used.
<-------------------------
[@tssun: ~/tibco/tibrv/bin]$ iniftst
Hostname: tssun
IP address: 127.0.0.1
Rev IP name: tssun
Interface Address Netmask Network Broadcst
---------- -------- -------- -------- --------
lo0 7f000001 ffffffff 7f000001 7f000001
bge0 c0a841bb fffffe00 c0a84000 c0a841ff
------------------------->
The problem is from file /etc/hosts. (the hostname of my server was “tssun”).
< ------------
127.0.0.1 localhost tssun
-------------->
The domain was detected successfully after changing the above line to:
<-----------
127.0.0.1 localhost
192.168.65.187 tssun
----------->