mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
355f78fe9e
Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Fri May 17 10:34:18 CEST 2013 on sn-devel-104
76 lines
2.1 KiB
XML
76 lines
2.1 KiB
XML
<samba:parameter name="rpc_daemon:DAEMON"
|
|
context="G"
|
|
type="string"
|
|
advanced="1" print="1"
|
|
xmlns:samba="http://www.samba.org/samba/DTD/samba-doc">
|
|
<description>
|
|
<para>
|
|
Defines whether to use the embedded code or start a separate daemon
|
|
for the defined rpc services.
|
|
The rpc_daemon prefix must be followed by the server name, and a value.
|
|
</para>
|
|
|
|
<para>
|
|
Two possible values are currently supported:
|
|
<programlisting>
|
|
disabled
|
|
fork
|
|
</programlisting>
|
|
</para>
|
|
|
|
<para>
|
|
The classic method is to run rpc services as internal daemons
|
|
embedded in smbd, therefore the external daemons are
|
|
<emphasis>disabled</emphasis> by default.
|
|
</para>
|
|
|
|
<para>
|
|
Choosing the <emphasis>fork</emphasis> option will cause samba to fork
|
|
a separate proces for each daemon configured this way. Each daemon may
|
|
in turn fork a number of children used to handle requests from multiple
|
|
smbds and direct tcp/ip connections (if the Endpoint Mapper is
|
|
enabled). Communication with smbd happens over named pipes and require
|
|
that said pipes are forward to the external daemon (see <smbconfoption
|
|
name="rpc_server"/>).
|
|
</para>
|
|
|
|
<para>
|
|
Forked RPC Daemons support dynamically forking children to handle
|
|
connections. The heuristics about how many children to keep around and
|
|
how fast to allow them to fork and also how many clients each child is
|
|
allowed to handle concurrently is defined by parametrical options named
|
|
after the daemon.
|
|
Five options are currently supported:
|
|
<programlisting>
|
|
prefork_min_children
|
|
prefork_max_children
|
|
prefork_spawn_rate
|
|
prefork_max_allowed_clients
|
|
prefork_child_min_life
|
|
</programlisting>
|
|
|
|
To set one of these options use the follwing syntax:
|
|
<programlisting>
|
|
damonname:prefork_min_children = 5
|
|
</programlisting>
|
|
</para>
|
|
|
|
<para>
|
|
Samba includes separate daemons for spoolss and the lsarpc/lsass,
|
|
netlogon and samr pipes. Currently three daemons are available and they
|
|
are called:
|
|
<programlisting>
|
|
epmd
|
|
lsasd
|
|
spoolssd
|
|
</programlisting>
|
|
Example:
|
|
<programlisting>
|
|
rpc_daemon:spoolssd = fork
|
|
</programlisting>
|
|
</para>
|
|
</description>
|
|
|
|
<value type="default">disabled</value>
|
|
</samba:parameter>
|