in reply to Re^6: Problem with Socket Programming Perl Script
in thread Problem with Socket Programming Perl Script

This just means that nco_objserv is having open ("ESTABLISHED") connections to other processes (nco_p_syslog and nco_p_mttrapd presumably, judging by your previous netstat output).

As servers typically allow to have connections to multiple clients at the same time, you can likely still connect to it.

Replies are listed 'Best First'.
Re^8: Problem with Socket Programming Perl Script
by ashok.g (Beadle) on Jan 24, 2011 at 11:54 UTC
    What is PEBKAC?
    How should I proceed now?
      What is PEBKAC?

      Ask the Anonymous Monk, not me :)   Or search the web.

      How should I proceed now?

      Write a client that connects to nco_objserv and read the data it sends (see perlipc).  How the communication happens in detail (i.e. who reads and writes what and when) depends on the protocol which is supposed to be used. As I'm not familiar with nco_objserv, you'll have to check its docs for this.