About 1,970,000 results
Open links in new tab
  1. What exactly is Socket - Stack Overflow

    I don't know exactly what socket means. A server runs on a specific computer and has a socket that is bound to a specific port number. The server just waits, listening to the socket for a client …

  2. What is the difference between a port and a socket?

    Sep 30, 2008 · An endpoint (socket) is defined by the combination of a network address and a port identifier. Note that address/port does not completely identify a socket (more on this later). …

  3. How to fix Docker: Permission denied - Stack Overflow

    Feb 24, 2018 · 1 The Docker daemon binds to a Unix socket instead of a TCP port. By default that Unix socket is owned by the user root and other users can only access it using sudo. The …

  4. Postman : socket hang up - Stack Overflow

    Jun 8, 2017 · I've read a few post regarding socket hang up and it mention about sending a request and there's no response from the server side and probably timeout. How do I extend …

  5. What's causing my java.net.SocketException: Connection reset?

    Feb 25, 2009 · In my experience with a similar problem in the past, the cause was a bad network connection on the server side that causes too many connections timeout. The problem with …

  6. OpenSSL: socket: Connection refused connect:errno=111

    Dec 5, 2014 · I am trying to connect to one Linux server from a client, openssl s_client -connect <IP of Server>:443 I am getting the following error: socket: Connection refused …

  7. NodeJS - What does "socket hang up" actually mean?

    Jun 8, 2013 · I do both web (node) and Android development, and open Android Studio device simulator and docker together, both of them use port 8601, it complained socket hang up …

  8. UDP Client/Server Socket in Python - Stack Overflow

    I am trying to write an echoing client/server socket. I have written the server so that 30% of the packets are lost. I programmed my client to timeout after one second since the packet could …

  9. Any difference between socket connection and tcp connection?

    Are these 2 concepts refer to the same thing? Do they have difference? In my opinion, they are different, and socket connection is based on tcp connection. A socket contains an IP address …

  10. networking - What is a socket? - Unix & Linux Stack Exchange

    113 A socket is a pseudo-file that represents a network connection. Once a socket has been created (identifying the other host and port), writes to that socket are turned into network …