-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathadm_wbem.xml
More file actions
1904 lines (1878 loc) · 63.1 KB
/
adm_wbem.xml
File metadata and controls
1904 lines (1878 loc) · 63.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!DOCTYPE chapter [
<!ENTITY % entities SYSTEM "generic-entities.ent">
%entities;
]>
<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:its="http://www.w3.org/2005/11/its" version="5.0" xml:id="cha-wbem">
<title>Web Based Enterprise Management using SFCB</title>
<info>
<meta name="description" its:translate="yes">Learn about implementing enterprise management solutions using open standards-based tools from the DMTF</meta>
<dm:docmanager xmlns:dm="urn:x-suse:ns:docmanager">
<dm:bugtracker/>
<dm:translation>yes</dm:translation>
</dm:docmanager>
<revhistory xml:id="rh-cha-wbem">
<revision>
<date>2026-03-31</date>
<revdescription>
<para/>
</revdescription>
</revision>
</revhistory>
</info>
<para/>
<sect1 xml:id="sec-wbem-intro">
<title>Introduction and basic concept</title>
<para>
&slsreg; (&slsa;) provides a collection of open standards based tools for
the unified management of disparate computing systems and environments. Our
enterprise solutions implement the standards proposed by the Distributed
Management Task Force. The following paragraphs describe their basic
components.
</para>
<para>
Distributed Management Task Force, Inc (DMTF) is the industry organization
which leads the development of management standards for enterprise and
Internet environments. Their goal is to unify management standards and
initiatives, and to enable more integrated, cost effective and interoperable
management solutions. DMTF standards provide common system management
components for control and communication. Their solutions are independent of
platforms and technologies. <emphasis>Web Based Enterprise
Management</emphasis> and the <emphasis>Common Information Model</emphasis>
are two of their key technologies.
</para>
<para>
Web Based Enterprise Management (WBEM) is a set of management and Internet
standard technologies. WBEM was developed to unify the management of
enterprise computing environments. It provides the ability for the industry
to deliver a well-integrated collection of management tools using Web
technologies. WBEM consists of the following standards:
</para>
<itemizedlist mark="bullet" spacing="normal">
<listitem>
<para>
A data model: the Common Information Model (CIM) standard
</para>
</listitem>
<listitem>
<para>
An encoding specification: CIM-XML Encoding Specification
</para>
</listitem>
<listitem>
<para>
A transport mechanism: CIM operations over HTTP
</para>
</listitem>
</itemizedlist>
<para>
The Common Information Model is a conceptual information model that describes
system management. It is not bound to a particular implementation and
enables the interchange of management information between management
systems, networks, services and applications. There are two parts to CIM:
the CIM Specification and the CIM Schema.
</para>
<itemizedlist mark="bullet" spacing="normal">
<listitem>
<para>
The <emphasis>CIM Specification</emphasis> describes the language, naming
and meta schema. The meta schema is a formal definition of the model. It
defines the terms used to express the model and their usage and semantics.
The elements of the meta schema are <emphasis>classes</emphasis>,
<emphasis>properties</emphasis>, and <emphasis>methods</emphasis>. The
meta schema also supports <emphasis>indications</emphasis> and
<emphasis>associations</emphasis> as types of
<emphasis>classes</emphasis>, and <emphasis>references</emphasis> as types
of <emphasis>properties</emphasis>.
</para>
</listitem>
<listitem>
<para>
The <emphasis>CIM Schema</emphasis> provides the actual model
descriptions. It supplies a set of classes with properties and
associations that provide a well understood conceptual framework within
which it is possible to organize the available information about the
managed environment.
</para>
</listitem>
</itemizedlist>
<para>
The Common Information Model Object Manager (CIMOM) is a CIM object manager
or, more specifically, an application that manages objects according to the
CIM standard. CIMOM manages communication between CIMOM providers and a CIM
client, where the administrator manages the system.
</para>
<para>
<emphasis>CIMOM providers</emphasis> are software performing specific tasks
within the CIMOM that are requested by client applications. Each provider
instruments one or more aspects of the CIMOM's schema. These providers
interact directly with the hardware.
</para>
<para>
<emphasis>Standards Based Linux Instrumentation for Manageability
(SBLIM)</emphasis> is a collection of tools designed to support Web-Based
Enterprise Management (WBEM). &slsreg; uses the open source CIMOM (or CIM
server) from the SBLIM project called <emphasis>Small Footprint CIM
Broker</emphasis> .
</para>
<para>
<emphasis>Small Footprint CIM Broker</emphasis> is a CIM server intended for
use in resource-limited or embedded environments. It is designed to be
modular and lightweight at the same time. Its based on open standards and it
supports CMPI providers, CIM-XML encoding, and <emphasis>Managed Object
Format (MOF)</emphasis>. It is highly configurable and performs stability
even if the provider crashes. It is also easily accessible as it supports
multiple transport protocols, such as HTTP, HTTPS, Unix domain sockets,
Service Location Protocol (SLP), and Java Database Connectivity (JDBC).
</para>
</sect1>
<sect1 xml:id="sec-wbem-setting">
<title>Setting up SFCB</title>
<para>
To set up the Small Footprint CIM Broker (SFCB) environment, make sure the
<guimenu>Web-Based Enterprise Management</guimenu> pattern in &yast; is
selected during &productname; installation. Alternatively, select it as a
component to install on a server that is already running. Make sure the
following packages are installed on your system:
</para>
<variablelist>
<varlistentry>
<term>cim-schema, Common Information Model (CIM) schema</term>
<listitem>
<para>
Contains the Common Information Model (CIM). CIM is a model for
describing overall management information in a network or enterprise
environments. CIM consists of a specification and a schema. The
specification defines the details for integration with other management
models. The schema provides the actual model descriptions.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>python2-pywbem</term>
<listitem>
<para>
Contains a Python module for making CIM operation calls through the WBEM
protocol to query and update managed objects.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>cmpi-provider-register, CIMOM neutral provider registration
utility</term>
<listitem>
<para>
Contains a utility allowing CMPI provider packages to register with
whatever CIMOM happens to be present on the system.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>sblim-sfcb, small footprint CIM broker</term>
<listitem>
<para>
Contains Small Footprint CIM Broker. It is a CIM server conforming to the
CIM Operations over HTTP protocol. It is robust, with low resource
consumption and, therefore, specifically suited for embedded and resource
constrained environments. SFCB supports providers written against the
Common Manageability Programming Interface (CMPI).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>sblim-sfcc</term>
<listitem>
<para>
Contains Small Footprint CIM Client library runtime libraries.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>sblim-wbemcli</term>
<listitem>
<para>
Contains WBEM command line interface. It is a stand-alone command line
WBEM client especially suited for basic systems management tasks.
</para>
</listitem>
</varlistentry>
</variablelist>
<sect2 xml:id="sec-wbem-setting-daemon">
<title>Starting, stopping and checking status for SFCB</title>
<para>
CIM server sfcbd daemon is installed together with Web-Based Enterprise
Management software and is started by default at system start-up. The
following table explains how to start, stop and check status for sfcbd.
</para>
<table xml:id="tab-wbem-setting-daemon-1" frame="topbot" rowsep="0">
<title>Commands for managing sfcbd</title>
<tgroup cols="2">
<colspec colnum="1" colname="1"/>
<colspec colnum="2" colname="2"/>
<thead>
<row rowsep="1">
<entry colname="1">
<para>
Task
</para>
</entry>
<entry colname="2">
<para>
Linux Command
</para>
</entry>
</row>
</thead>
<tbody>
<row rowsep="0">
<entry colname="1">
<para>
Start sfcbd
</para>
</entry>
<entry colname="2">
<para>
Enter <command>systemctl start sblim-sfcb.service</command> as &rootuser; in the
command line.
</para>
</entry>
</row>
<row rowsep="0">
<entry colname="1">
<para>
Stop sfcbd
</para>
</entry>
<entry colname="2">
<para>
Enter <command>systemctl stop sblim-sfcb.service</command> as &rootuser; in the
command line.
</para>
</entry>
</row>
<row rowsep="0">
<entry colname="1">
<para>
Check sfcbd status
</para>
</entry>
<entry colname="2">
<para>
Enter <command>systemctl status sblim-sfcb.service</command> as &rootuser; in the
command line.
</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
</sect2>
<sect2 xml:id="sec-wbem-setting-secure">
<title>Ensuring secure access</title>
<para>
The default setup of SFCB is secure. However, check that the
access to SFCB components is as secure as required for your organization.
</para>
<sect3 xml:id="sec-wbem-setting-secure-cert">
<title>Certificates</title>
<para>
Secure Sockets Layers (SSL) transports require a certificate for secure
communication to occur. When SFCB is installed, it has a self-signed
certificate generated.
</para>
<para>
You can replace the path to the default certificate with a path to a
commercial or self-signed one by changing the
<literal>sslCertificateFilePath: <replaceable>PATH_FILENAME</replaceable>
</literal> setting in <filename>/etc/sfcb/sfcb.cfg</filename>. The file
must be in PEM format.
</para>
<para>
By default, SFCB expects a server certificate in the following location:
</para>
<screen>/etc/sfcb/server.pem</screen>
<para>
To generate a new certificate, run the following command:
</para>
<screen>&prompt.sudo;sh /usr/share/sfcb/genSslCert.sh
Generating SSL certificates in .
Generating a 2048 bit RSA private key
...................................................................+++
.+++
writing new private key to '/var/tmp/sfcb.0Bjt69/key.pem'
-----</screen>
<para>
By default, the script generates certificates
<filename>client.pem</filename> , <filename>file.pem</filename> and
<filename>server.pem</filename> in the current working directory. If you
want the script to generate the certificates in
<filename>/etc/sfcb</filename> directory, you need to append the path to
the command. If these files already exist, a warning message is displayed,
and the old certificates are not overwritten.
</para>
<screen>&prompt.sudo;sh /usr/share/sfcb/genSslCert.sh /etc/sfcb
Generating SSL certificates in .
WARNING: server.pem SSL Certificate file already exists.
old file will be kept intact.
WARNING: client.pem SSL Certificate trust store already exists.
old file will be kept intact.</screen>
<para>
You must remove the old certificates from the file system and run the
command again.
</para>
<para>
To change the way SFCB uses certificates, see
<xref linkend="sec-wbem-setting-secure-auth"/>.
</para>
</sect3>
<sect3 xml:id="sec-wbem-setting-secure-ports">
<title>Ports</title>
<para>
By default, SFCB is configured to accept all communications through the
secure port 5989. The following paragraphs explain the communication port
setup and recommended configuration.
</para>
<variablelist>
<varlistentry>
<term>Port 5989 (secure)</term>
<listitem>
<para>
The secure port that SFCB communications use via HTTPS services. This
is the default. With this setting, all communications between the CIMOM
and client applications are encrypted when sent over the Internet
between servers and workstations. Users must authenticate with the
client application to reach SFCB server. We recommend that you keep
this setting. For the SFCB CIMOM to communicate with the necessary
applications, this port must be open on routers and firewall rules if they
are present between the client application and the nodes being
monitored.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Port 5988 (insecure)</term>
<listitem>
<para>
The insecure port that SFCB communications use via HTTP services. This
setting is disabled by default. With this setting, all communications
between the CIMOM and client applications are open for review when sent
over the Internet between servers and workstations by anyone, without
any authentication. We recommend that you use this setting only when
attempting to debug a problem with the CIMOM. When the problem is
resolved, disable the non-secure port option back. For the SFCB CIMOM
to communicate with the necessary applications that require non-secure
access, this port must be open in routers and firewall rules between the
client application and the nodes being monitored.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
To change the default port assignments, see
<xref linkend="sec-wbem-setting-secure-ports"/>.
</para>
</sect3>
<sect3 xml:id="sec-wbem-setting-secure-auth">
<title>Authentication</title>
<para>
SFCB supports HTTP basic authentication and authentication based on client
certificates (HTTP over SSL connections). Basic HTTP authentication is
enabled by specifying <literal>doBasicAuth=true</literal> in the SFCB
configuration file ( <filename>/etc/sfcb/sfcb.cfg</filename> by
default). &slsreg; installation of SFCB supports Pluggable Authentication
Modules (PAM) approach; therefore the local root user can authenticate to
the SFCB CIMOM with local root user credentials.
</para>
<para>
If the <literal>sslClientCertificate</literal> configuration property is
set to <literal>accept</literal> or <literal>require</literal>, the SFCB HTTP adapter will request a
certificate from clients when connecting via HTTP over SSL (HTTPS). If
<literal>require</literal> is specified, the client
<emphasis role="bold">must</emphasis> provide a valid certificate
(according to the client trust store specified via
<literal>sslClientTrustStore</literal>). If the client fails to do
so, the connection will be rejected by the CIM server.
</para>
<para>
The setting <literal>sslClientCertificate=accept</literal> may not be
obvious. It is useful if both basic and client certificate
authentication are allowed. If the client can provide a valid certificate,
HTTPS connection will be established and the basic authentication
procedure will not be executed. If this function cannot verify the
certificate, the HTTP basic authentication will take place instead.
</para>
</sect3>
</sect2>
</sect1>
<sect1 xml:id="sec-wbem-config">
<title>SFCB CIMOM configuration</title>
<para>
SFCB is a lightweight implementation of the CIM server, but it is also
highly configurable. Several options can control its behavior. You can
control the SFCB server in three ways:
</para>
<itemizedlist mark="bullet" spacing="normal">
<listitem>
<para>
by setting appropriate environment variables
</para>
</listitem>
<listitem>
<para>
by using command line options
</para>
</listitem>
<listitem>
<para>
by changing its configuration file
</para>
</listitem>
</itemizedlist>
<sect2 xml:id="sec-wbem-config-env">
<title>Environment variables</title>
<para>
Several environment variables directly affect the behavior of SFCB. You
need to restart the SFCB daemon by <command>systemctl restart
sfcb</command> for these changes to take effect.
</para>
<variablelist>
<varlistentry>
<term><literal>PATH</literal>
</term>
<listitem>
<para>
Specifies the path to the <systemitem>sfcbd</systemitem> daemon and
utilities.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>LD_LIBRARY_PATH</literal>
</term>
<listitem>
<para>
Specifies the path to the sfcb runtime libraries. Alternatively, you can
add this path to the system-wide dynamic loader configuration file
<filename>/etc/ld.so.conf</filename> .
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SFCB_PAUSE_PROVIDER</literal>
</term>
<listitem>
<para>
Specifies the provider name. The SFCB server pauses after the provider
is loaded for the first time. You can then attach a runtime debugger to
the provider's process for debugging purposes.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SFCB_PAUSE_CODEC</literal>
</term>
<listitem>
<para>
Specifies the name of the SFCB codec (currently supports only
<literal>http</literal>. The SFCB server pauses after the codec is
loaded for the first time. You can then attach a runtime debugger to the
process.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SFCB_TRACE</literal>
</term>
<listitem>
<para>
Specifies the level of debug messages for SFCB. Valid values are 0 (no
debug messages), or 1 (key debug messages) to 4 (all debug messages).
Default is 1.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SFCB_TRACE_FILE</literal>
</term>
<listitem>
<para>
By default, SFCB outputs its debug messages to standard error output
(STDERR). Setting this variable causes the debug messages to be written
to a specified file instead.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SBLIM_TRACE</literal>
</term>
<listitem>
<para>
Specifies the level of debug messages for SBLIM providers. Valid values
are 0 (no debug messages), or 1 (key debug messages) to 4 (all debug
messages).
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>SBLIM_TRACE_FILE</literal>
</term>
<listitem>
<para>
By default, SBLIM provider outputs its trace messages to STDERR. Setting
this variable causes the trace messages to be written to a specified
file instead.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 xml:id="sec-wbem-config-cmdline">
<title>Command line options</title>
<para>
<systemitem>sfcbd</systemitem>, the SFCB daemon, has several command line
options that switch particular runtime features on or off. Enter these
options when SFCB daemon starts.
</para>
<variablelist>
<varlistentry>
<term><literal>-c, --config-file</literal>=<replaceable>FILE</replaceable>
</term>
<listitem>
<para>
When SFCB daemon starts, it reads its configuration from
<filename>/etc/sfcb/sfcb.cfg</filename> by default. With this option,
you can specify an alternative configuration file.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>-d, --daemon</literal>
</term>
<listitem>
<para>
Forces sfcbd and its child processes to run in the background.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>-s, --collect-stats</literal>
</term>
<listitem>
<para>
Turns on runtime statistics collecting. sfcbd runtime statistics
will be written to the <filename>sfcbStat</filename> file in the current
working directory. By default, no statistics are collected.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>-l, --syslog-level</literal>=<replaceable>LOGLEVEL</replaceable>
</term>
<listitem>
<para>
Specifies the level of verbosity for the system logging facility.
<replaceable>LOGLEVEL</replaceable> can be one of LOG_INFO, LOG_DEBUG
or LOG_ERR, which is the default.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>-k, --color-trace</literal>=<replaceable>LOGLEVEL</replaceable>
</term>
<listitem>
<para>
Prints trace output in a different color per process for easier
debugging.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><literal>-t, --trace-components</literal>=<replaceable>NUM</replaceable>
</term>
<listitem>
<para>
Activates component-level tracing messages, where
<replaceable>NUM</replaceable> is an OR-ed bitmask integer that defines
which component to trace. After you specify <option>-t ?</option>, it
lists all the components and their associated integer bitmask:
</para>
<screen>&prompt.user;sfcbd -t ?
--- Traceable Components: Int Hex
--- providerMgr: 1 0x0000001
--- providerDrv: 2 0x0000002
--- cimxmlProc: 4 0x0000004
--- httpDaemon: 8 0x0000008
--- upCalls: 16 0x0000010
--- encCalls: 32 0x0000020
--- ProviderInstMgr: 64 0x0000040
--- providerAssocMgr: 128 0x0000080
--- providers: 256 0x0000100
--- indProvider: 512 0x0000200
--- internalProvider: 1024 0x0000400
--- objectImpl: 2048 0x0000800
--- xmlIn: 4096 0x0001000
--- xmlOut: 8192 0x0002000
--- sockets: 16384 0x0004000
--- memoryMgr: 32768 0x0008000
--- msgQueue: 65536 0x0010000
--- xmlParsing: 131072 0x0020000
--- responseTiming: 262144 0x0040000
--- dbpdaemon: 524288 0x0080000
--- slp: 1048576 0x0100000</screen>
<para>
A useful value that reveals the internal functions of sfcbd but does not
generate too many messages, is <option>-t</option>
<replaceable>2019</replaceable>.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2 xml:id="sec-wbem-config-confile">
<title>SFCB configuration file</title>
<para>
SFCB reads its runtime configuration from configuration file
<filename>/etc/sfcb/sfcb.cfg</filename> after starting up. This behavior
can be overridden using <option>-c</option> option at start-up.
</para>
<para>
The configuration file contains <option>option</option> :
<replaceable>VALUE</replaceable> pairs, one per line.
</para>
<para>
Any setting that has the options commented out with a number sign (#) uses
the default setting.
</para>
<para>
The following list of options may not be complete. See the content of
<filename>/etc/sfcb/sfcb.cfg</filename> and
<filename>/usr/share/doc/packages/sblim-sfcb/README</filename> for their
complete list.
</para>
<sect3 xml:id="sec-wbem-config-confile-1">
<title>httpPort</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the local port value that sfcbd should listen to receive HTTP
(insecure) requests from CIM clients. Default is <literal>5988</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpPort:</literal> <replaceable>PORT_NUMBER</replaceable>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-2">
<title>enableHttp</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies whether SFCB should accept HTTP client connections. Default is
<literal>false</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>enableHttp:</literal> <replaceable>OPTION</replaceable>
</para>
<informaltable frame="topbot" rowsep="1">
<tgroup cols="2">
<thead>
<row>
<entry>
<para>
Option
</para>
</entry>
<entry>
<para>
Description
</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
<para>
true
</para>
</entry>
<entry>
<para>
Enables HTTP connections.
</para>
</entry>
</row>
<row>
<entry>
<para>
false
</para>
</entry>
<entry>
<para>
Disables HTTP connections.
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-3">
<title>httpProcs</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the maximum number of simultaneous HTTP client connections
before new incoming HTTP requests are blocked. Default is
<literal>8</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpProcs:</literal>
<replaceable>MAX_NUMBER_OF_CONNECTIONS</replaceable>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-3-5">
<title>httpUserSFCB, httpUser</title>
<bridgehead>Purpose</bridgehead>
<para>
These options control what user the HTTP server will run under. If
<option>httpUserSFCB</option> is <literal>true</literal>, HTTP will run
under the same user as the SFCB main process. If it is
<literal>false</literal> the user name specified for
<option>httpUser</option> will be used. This setting is used for both HTTP
and HTTPS servers. <option>httpUser</option> <emphasis>must</emphasis> be
specified if <option>httpUserSFCB</option> is set to
<literal>false</literal>. the default is <literal>true</literal>.
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpUserSFCB: true</literal>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-3-8">
<title>httpLocalOnly</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies whether to limit HTTP requests to localhost only. Default is
<literal>false</literal>.
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpLocalOnly: false</literal>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-4">
<title>httpsPort</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the local port value where sfcbd listens for HTTPS requests from
CIM clients. Default is <literal>5989</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpsPort: port_number</literal>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-5">
<title>enableHttps</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies if SFCB will accept HTTPS client connections. Default is
<literal>true</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>enableHttps: option</literal>
</para>
<informaltable frame="topbot" rowsep="1">
<tgroup cols="2">
<thead>
<row>
<entry>
<para>
Option
</para>
</entry>
<entry>
<para>
Description
</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
<para>
true
</para>
</entry>
<entry>
<para>
Enables HTTPS connections.
</para>
</entry>
</row>
<row>
<entry>
<para>
false
</para>
</entry>
<entry>
<para>
Disables HTTPS connections.
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-7">
<title>httpsProcs</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the maximum number of simultaneous HTTPS client connections
before new incoming HTTPS requests are blocked. Default is
<literal>8</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>httpsProcs:</literal> <replaceable>MAX_NUMBER_OF_CONNECTIONS</replaceable>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-8">
<title>enableInterOp</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies if SFCB will provide the <emphasis>interop</emphasis> namespace
for indication support. Default is <literal>true</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>enableInterOp:</literal> <replaceable>OPTION</replaceable>
</para>
<informaltable frame="topbot" rowsep="1">
<tgroup cols="2">
<thead>
<row>
<entry>
<para>
Option
</para>
</entry>
<entry>
<para>
Description
</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
<para>
true
</para>
</entry>
<entry>
<para>
Enables interop namespace.
</para>
</entry>
</row>
<row>
<entry>
<para>
false
</para>
</entry>
<entry>
<para>
Disables interop namespace.
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-9">
<title>provProcs</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the maximum number of simultaneous provider processes. After
this point, if a new incoming request requires loading a new provider,
then one of the existing providers will first be automatically unloaded.
Default is <literal>32</literal> .
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>provProcs:</literal> <replaceable>MAX_NUMBER_OF_PROCS</replaceable>
</para>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-10">
<title>doBasicAuth</title>
<bridgehead>Purpose</bridgehead>
<para>
Switches basic authentication on or off based on the client user
identifier before it accepts the request. Default value is
<literal>true</literal> which means that basic client authentication is
performed.
</para>
<bridgehead>Syntax</bridgehead>
<para>
<literal>doBasicAuth:</literal> <replaceable>OPTION</replaceable>
</para>
<informaltable frame="topbot" rowsep="1">
<tgroup cols="2">
<thead>
<row>
<entry>
<para>
Option
</para>
</entry>
<entry>
<para>
Description
</para>
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
<para>
true
</para>
</entry>
<entry>
<para>
Enables basic authentication.
</para>
</entry>
</row>
<row>
<entry>
<para>
false
</para>
</entry>
<entry>
<para>
Disables basic authentication.
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</sect3>
<sect3 xml:id="sec-wbem-config-confile-11">
<title>basicAuthLib</title>
<bridgehead>Purpose</bridgehead>
<para>
Specifies the local library name. The SFCB server loads the library to
authenticate the client user identifier. Default is
<literal>sfcBasicPAMAuthentication</literal> .
</para>
<bridgehead>Syntax</bridgehead>