有关SO_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的讨论可以看 We increase productivity by means of SO_REUSEPORT in NGINX 1.9.1
这应该是多个进程同时复用一个
socket
不过在现代
linux
中,多个socket
同时监听同一个端口也是可能的,在Nginx 1.9.1
以上版本也支持这一行为linux
3.9
以上内核支持SO_REUSEPORT
选项,即允许多个socket
bind/listen
在同一个端口上。这样,多个进程就可以各自申请socket
监听同一个端口,当数据来时,内核做负载均衡,唤醒监听的其中一个进程处理,用法类似于setsockopt(listener, SOL_SOCKET, SO_REUSEPORT, &option, sizeof(option))
采用
SO_REUSEPORT
选项可以有效地解决epoll
惊群问题,具体测试可以看看在下写的例子:ThunderingHerdTest.cpp有关
SO_REUSEPORT
选项的讨论可参看 The SO_REUSEPORT socket option,关于题主的疑虑,文中这句话可以作为解答:即不是任意进程都可以绑定在同一个端口上的,只有
effective user ID
相同才可以关于
Nginx
和SO_REUSEPORT
的讨论可以看 We increase productivity by means of SO_REUSEPORT in NGINX 1.9.1pid最小的应该就是master了。
单个应用多进程监听同一端口, socket是共享的