Top "Unix-socket" questions

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

Connecting to an already established UNIX socket with node.js?

I am working on a node.js application that will connect to a UNIX socket (on a Linux machine) and …

javascript linux node.js sockets unix-socket
What are the differences from running PHP-FPM over an Unix Socket vs a TCP/IP Socket?

There are these two ways of running PHP-FPM. I know that nothing is bullet-proof in tech, but what are the …

php sockets tcp unix-socket
Unix Domain : connect() : No such file or directory

as stated in the title, my connect() call to an unix domain type socket with an according address results in …

c++ unix-socket
bind(): No such file or directory [core/socket.c line 230]

I'm trying to create a unix socket application for a run in uWSGI... but does not allow me to create …

uwsgi unix-socket
Run dbus-daemon inside Docker container

I am trying to create a Docker container with a custom D-Bus bus running inside. I configured my Dockerfile as …

docker dbus unix-socket
HTTP over AF_UNIX: HTTP connection to unix socket

We have HTTP server , for which we have HTTP client based application (on Linux) working fine. But now we need …

http sockets webserver client-server unix-socket
Can not connect to Linux "abstract" unix socket

I'm trying to use UNIX sockets for inter-thread communication. The program is only intended to run on Linux. To avoid …

linux unix-socket
Getting "Address already in use" error using Unix socket

Writing the C source below using Unix local sockets I got an error about the address already in use. After …

c sockets unix-socket
LocalSocket communication with Unix Domain in Android NDK

I have Android application, which needs to establish unix domain socket connection with our C++ library (using Android NDK) public …

android sockets network-programming android-ndk unix-socket
Reading / Writing from a Unix Socket in Ruby

I'm trying to connect, read and write from a UNIX socket in Ruby. It is a stats socket used by …

ruby unix-socket