Top "Unix-socket" questions

UNIX domain sockets are a technology for interprocess communication on a single computer.

How to make two-directional unix domain sockets with SOCK_DGRAM?

I am trying to write a simple Unix datagram server/client, and am having some problems. What I want is …

c network-programming datagram unix-socket socat
What is the reason for Broken Pipe on Unix Domain Sockets?

I have a server application which received requests and forwards them on a Unix Domain Socket. This works perfectly under …

java unix broken-pipe unix-socket
How to connect to a redis server via Unix domain socket using hedis in Haskell?

I'm looking for how to connect to a redis server via Unix domain socket using hedis, as advertised in the …

haskell redis connection-string unix-socket
Gracefully shutdown UNIX-socket server on NodeJS running under Forever

I have an NodeJS application which sets up a UNIX-socket to expose some interprocess communication channel (some kind of monitoring …

node.js unix-socket forever
UNIX socket connection refused

Under OS-X, I've got process named 'listener' that is waiting on 'accept' to read data from local unix socket named …

c macos sockets unix-socket
How to know whether any process is bound to a Unix domain socket?

I'm writing a Unix domain socket server for Linux. A peculiarity of Unix domain sockets I quickly found out is …

sockets unix-socket
Unix Sockets : AF_LOCAL vs AF_INET

I'm just starting with socket programming in UNIX and I was reading the man pages for the socket system call. …

c unix unix-socket
Principle of Unix Domain Socket. How does it work?

I am doing a study about Unix domain socket. Especially about how does it work. I googled many times with …

sockets unix unix-socket
Use Python xmlrpclib with unix domain sockets?

I'm trying to interact with supervisord, and I'd like to talk with it over a unix socket (it's a shared …

python xml-rpc xmlrpclib unix-socket
How to reliably unlink() a Unix domain socket in Go programming language

I have a Go program hosting a simple HTTP service on localhost:8080 so I can connect my public nginx host …

go signals unix-socket