1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3-mdssvc: add documentation for mdssvc and mdssd

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Ralph Boehme 2014-08-11 22:30:53 +02:00 committed by Ralph Böhme
parent 480cc511ff
commit e0edda7311
3 changed files with 22 additions and 6 deletions

View File

@ -55,14 +55,15 @@
</para>
<para>
Samba includes separate daemons for spoolss, lsarpc/lsass, netlogon,
samr, and FSRVP. Currently four daemons are available and they are
called:
Samba includes separate daemons for spoolss, lsarpc/lsass,
netlogon, samr, FSRVP and mdssvc(Spotlight). Currently five
daemons are available and they are called:
<programlisting>
epmd
lsasd
spoolssd
fssd
mdssd
</programlisting>
Example:
<programlisting>

View File

@ -32,6 +32,7 @@
<listitem><para>ntsvcs - Plug and Play Services</para></listitem>
<listitem><para>eventlog - Event Logger</para></listitem>
<listitem><para>initshutdown - Init Shutdown Service</para></listitem>
<listitem><para>mdssvc - Spotlight</para></listitem>
</itemizedlist>
<para>
@ -55,8 +56,8 @@
</para>
<para>
Currently in Samba3 we support three daemons, spoolssd, epmd and
lsasd. These daemons can be enabled using the
Currently in Samba3 we support four daemons, spoolssd, epmd,
lsasd and mdssd. These daemons can be enabled using the
<emphasis>rpc_daemon</emphasis> option. For spoolssd you have
to enable the daemon and proxy the named pipe with:
</para>
@ -71,6 +72,9 @@
rpc_server:spoolss = external
rpc_server:epmapper = disabled
rpc_daemon:mdssd = fork
rpc_server:mdssvc = external
</programlisting>
</para>

View File

@ -32,12 +32,23 @@
</para>
<para>
To enable the Spotlight RPC service:
The Spotlight RPC service can either be enabled as embedded
RPC service:
</para>
<programlisting>
<smbconfsection name="[Global]"/>
<smbconfoption name="rpc_server:mdsvc">embedded</smbconfoption>
</programlisting>
<para>
Or it can be run in a seperate RPC service daemon:
</para>
<programlisting>
<smbconfsection name="[Global]"/>
<smbconfoption name="rpc_server:mdssd">fork</smbconfoption>
<smbconfoption name="rpc_server:mdsvc">external</smbconfoption>
</programlisting>
</description>