黄舟2017-05-31 10:39:23
这应该是多个进程同时复用一个socket
不过在现代linux
中,多个linux
中,多个socket
同时监听同一个端口也是可能的,在Nginx 1.9.1
同时监听同一个端口也是可能的,在Nginx 1.9.1
以上版本也支持这一行为
linux
3.9
以上内核支持linux
3.9
以上内核支持SO_REUSEPORT
选项,即允许多个socket
bind/listen
在同一个端口上。这样,多个进程就可以各自申请socket
监听同一个端口,当数据来时,内核做负载均衡,唤醒监听的其中一个进程处理,用法类似于setsockopt(listener, SOL_SOCKET, SO_REUSEPORT, &option, sizeof(option))
选项,即允许多个
bind/listen
在同一个端口上。这样,多个进程就可以各自申请监听同一个端口,当数据来时,内核做负载均衡,唤醒监听的其中一个进程处理,用法类似于setsockopt(listener, SOL_SOCKET, SO_REUSEPORT, &option, sizeof(option))
SO_REUSEPORT
选项可以有效地解决epoll
惊群问题,具体测试可以看看在下写的例子:ThunderingHerdTest.cppSO_REUSEPORT
选项的讨论可参看 The SO_REUSEPORT socket option,关于题主的疑虑,文中这句话可以作为解答:To prevent unwanted processes from hijacking a port that has already been bound by a server using SO_REUSEPORT, all of the servers that later bind to that port must have an effective user ID that matches the effective user ID used to perform the first bind on the socket.
effective user ID
相同才可以Nginx
和SO_REUSEPORT
Nginx
和🎜的讨论可以看 We increase productivity by means of SO_REUSEPORT in NGINX 1.9.1🎜