<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Unix Socket Domains ? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522330#M16993</link>
    <description>On my system only the syntax is &lt;BR /&gt;#netstat -pantu &lt;BR /&gt;or&lt;BR /&gt;#netstat -pantu --inet&lt;BR /&gt;&lt;BR /&gt;But I usualy use the lsof &lt;BR /&gt;&lt;BR /&gt;like ex:&lt;BR /&gt;&lt;BR /&gt;#lsof -i&lt;BR /&gt;&lt;BR /&gt;this will show all open net connection have a look at man lsof if this tool is on your system this tool can do a lot for you.&lt;BR /&gt;&lt;BR /&gt;J-P Huc</description>
    <pubDate>Tue, 12 Apr 2005 07:40:04 GMT</pubDate>
    <dc:creator>Huc_1</dc:creator>
    <dc:date>2005-04-12T07:40:04Z</dc:date>
    <item>
      <title>Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522324#M16987</link>
      <description>Hello Dear Experts&lt;BR /&gt;&lt;BR /&gt;# netstat -l&lt;BR /&gt;shows Unix Domain Socket.&lt;BR /&gt;May I ask what is Unix Domain Socket ?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Mon, 11 Apr 2005 13:29:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522324#M16987</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-11T13:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522325#M16988</link>
      <description>Unix socket is a port 53 domain name DNS lookup.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 11 Apr 2005 13:31:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522325#M16988</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-04-11T13:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522326#M16989</link>
      <description>Dear SEP, if u can plz elaborate ... &lt;BR /&gt;&lt;BR /&gt;which client does this(Unix domain socket) lookup ? and why ?&lt;BR /&gt;&lt;BR /&gt;I ran netstat and it shows me Unix domain sockets as well, although my machine is neither a DNS server, nor client&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Mon, 11 Apr 2005 14:07:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522326#M16989</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-11T14:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522327#M16990</link>
      <description>Rather looks like an interprocess communications vehicle to me:&lt;BR /&gt;&lt;A href="http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.aix.doc/aixprggd/progcomc/skt_comms.htm" target="_blank"&gt;http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.aix.doc/aixprggd/progcomc/skt_comms.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Look for "UNIX Domain Properties".</description>
      <pubDate>Mon, 11 Apr 2005 14:09:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522327#M16990</guid>
      <dc:creator>Uwe Zessin</dc:creator>
      <dc:date>2005-04-11T14:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522328#M16991</link>
      <description>Unix Sockets are internal communications points, they behave the same way network sockets do only they apply to the loopback adapter. &lt;BR /&gt;&lt;BR /&gt;Many application suites use multiple daemons, these daemons can exist on different machines or on the same machine.  For instance samba and winbind, the smbd deamon will use a unix domain socket to communicate with winbind.  Mysql uses a named pipe if I'm not mistaken to communicate internally.  You will see a file named mysql.sock which is essentially the same as the tcp socket socket when you get down to brass tacks.  The only difference is the named pipe shows up in an ls.&lt;BR /&gt;&lt;BR /&gt;Typically you want to worry about the external sockets, so you filter the netstat results to omit unix sockets if you have a lot of connections.  I use these switches:&lt;BR /&gt;&lt;BR /&gt;netstat -pantu inet &lt;BR /&gt;&lt;BR /&gt;Gives me lots of info excluding all the socket connections for internal process communication.&lt;BR /&gt;&lt;BR /&gt;--Dave</description>
      <pubDate>Mon, 11 Apr 2005 14:27:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522328#M16991</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2005-04-11T14:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522329#M16992</link>
      <description>Many Thanks Dear Uwe Zessin.&lt;BR /&gt;&lt;BR /&gt;Dear Dave Falloon, I m highly thankful to u for such a nice explanation... again Millions of Thanks&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Tue, 12 Apr 2005 01:06:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522329#M16992</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-12T01:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522330#M16993</link>
      <description>On my system only the syntax is &lt;BR /&gt;#netstat -pantu &lt;BR /&gt;or&lt;BR /&gt;#netstat -pantu --inet&lt;BR /&gt;&lt;BR /&gt;But I usualy use the lsof &lt;BR /&gt;&lt;BR /&gt;like ex:&lt;BR /&gt;&lt;BR /&gt;#lsof -i&lt;BR /&gt;&lt;BR /&gt;this will show all open net connection have a look at man lsof if this tool is on your system this tool can do a lot for you.&lt;BR /&gt;&lt;BR /&gt;J-P Huc</description>
      <pubDate>Tue, 12 Apr 2005 07:40:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522330#M16993</guid>
      <dc:creator>Huc_1</dc:creator>
      <dc:date>2005-04-12T07:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unix Socket Domains ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522331#M16994</link>
      <description>Nice help Dear J-P Huc.&lt;BR /&gt;And thanks for continous support&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Maaz</description>
      <pubDate>Tue, 12 Apr 2005 13:44:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/unix-socket-domains/m-p/3522331#M16994</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2005-04-12T13:44:13Z</dc:date>
    </item>
  </channel>
</rss>

