Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
分叉的进程是否继承父进程绑定的任何(服务器)端口? 我有一个分叉子进程的 java 进程,从netstat -anpt |grep我看到父进程和子进程都绑定到同一个端口。 这可能吗?有没有办法解决这个问题?
netstat -anpt |grep
分叉的进程是否继承父进程绑定的任何(服务器)端口?
它继承了其父级的资源。这就是操作系统的行为方式。
有没有办法解决这个问题?
孩子必须关闭它不需要的所有资源。这在 C 中相对容易做到,但在 Java 中并不简单。可能有一种方法可以使用干净的资源集启动 Java 进程,但我不知道有什么方法可以做到这一点。