can i access a unix domain socket on a remote machine? can i access a unix domain socket on a remote machine? unix unix

can i access a unix domain socket on a remote machine?


Unix domain sockets are meant for inter-process communication within the same host machine. Data sent through these sockets are handled entirely inside the kernel. For communication between processes in different machines, you should use network sockets.