LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 914|回复: 2

what is standalone and inetd?

[复制链接]
发表于 2003-7-26 01:53:36 | 显示全部楼层 |阅读模式
how to distinguish them?
where can I get the details?
发表于 2003-7-26 11:58:26 | 显示全部楼层
Most daemon programs (you can think them as background server program in MS-Windows) can run in two modes, standalone or inetd.
Daemon program has its own port for providing special server.
When a daemon run as standalone, it will listen the port by itself and occupy more system resources.
When a daemon run as inetd, the special port will be listen by inetd thread and call the daemon by inetd. Running in this method will use less system resource then in standalone mode. But the system will response the server request slower then in standalone mode.
So if you want to provide a server which will be in a busy role. You'd better run daemon in standalone mode. And on the other hand, you can run daemon in inetd mode for less system resource usage.
 楼主| 发表于 2003-7-26 14:08:07 | 显示全部楼层
how to start vsftpd in standalone mode? and inetd mode?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表