-
Notifications
You must be signed in to change notification settings - Fork 1
/
toc.html
2099 lines (2079 loc) · 49.6 KB
/
toc.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Eclipse Open Message Queue Administration Guide, Release 5.1.4</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/style.css" rel="stylesheet">
<script src="https://use.fontawesome.com/96c4d89611.js"></script>
</head>
<body>
<table id="doc-title" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top">
<b>Eclipse Open Message Queue Administration Guide, Release 5.1.4</b><br />
</td>
</tr>
</table>
<hr />
<table width="90%" id="top-nav" cellspacing="0" cellpadding="0">
<colgroup>
<col width="12%"/>
<col width="12%"/>
<col width="*"/>
</colgroup>
<tr>
<td align="left">
<a href="loe.html">
<span class=" vector-font"><i class="fa fa-arrow-circle-right vector-font" aria-hidden="true"></i></span>
<span style="position:relative;top:-2px;">Next</span>
</a>
</td>
<td align="right">
<a href="toc.html">
<span class=" vector-font"><i class="fa fa-list vector-font" aria-hidden="true"></i></span>
<span style="position:relative;top:-2px;">Contents</span>
</a>
</td>
</tr>
</table>
<div class="sect1">
<h2 id="contents">Contents</h2>
<div class="sectionbody">
<div class="sect2">
<h3 id="list-of-examples"><a href="loe.html">List of Examples</a></h3>
</div>
<div class="sect2">
<h3 id="list-of-figures"><a href="lof.html">List of Figures</a></h3>
</div>
<div class="sect2">
<h3 id="list-of-tables"><a href="lot.html">List of Tables</a></h3>
</div>
<div class="sect2">
<h3 id="title-and-copyright-information"><a href="title.html">Title and Copyright Information</a></h3>
</div>
<div class="sect2">
<h3 id="preface"><a href="preface.html#gblyo">Preface</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="preface.html#gblyj">Who Should Use This Book</a></p>
</li>
<li>
<p><a href="preface.html#gblxf">Before You Read This Book</a></p>
</li>
<li>
<p><a href="preface.html#gblxh">How This Book Is Organized</a></p>
</li>
<li>
<p><a href="preface.html#ghode">Documentation Conventions</a></p>
</li>
<li>
<p><a href="preface.html#gbqah">Related Documentation</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="part-i-introduction-to-message-queue-administration"><a href="part-introduction.html#gcrlv">Part I Introduction to Message Queue Administration</a></h3>
</div>
<div class="sect2">
<h3 id="administrative-tasks-and-tools"><a href="admin-tasks-and-tools.html#aeoap">1 Administrative Tasks and Tools</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="admin-tasks-and-tools.html#aeoaq">Administrative Tasks</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="admin-tasks-and-tools.html#aeoar">Administration in a Development
Environment</a></p>
</li>
<li>
<p><a href="admin-tasks-and-tools.html#aeoas">Administration in a Production
Environment</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="admin-tasks-and-tools.html#aeoat">Setup Operations</a></p>
</li>
<li>
<p><a href="admin-tasks-and-tools.html#aeoau">Maintenance Operations</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="admin-tasks-and-tools.html#aeoav">Administration Tools</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="admin-tasks-and-tools.html#ggwcf">Built-in Administration Tools</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="admin-tasks-and-tools.html#aeoaw">Command Line Utilities</a></p>
</li>
<li>
<p><a href="admin-tasks-and-tools.html#aeoax">Administration Console</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="admin-tasks-and-tools.html#ggwao">JMX-Based Administration</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="quick-start-tutorial"><a href="quick-start.html#aeoay">2 Quick-Start Tutorial</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#aeoaz">Starting the Administration Console</a></p>
</li>
<li>
<p><a href="quick-start.html#aeoba">Administration Console Online Help</a></p>
</li>
<li>
<p><a href="quick-start.html#aeobb">Working With Brokers</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#aeobc">Starting a Broker</a></p>
</li>
<li>
<p><a href="quick-start.html#aeobd">Adding a Broker to the Administration
Console</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbngl">To Add a Broker to the Administration
Console</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobe">Connecting to a Broker</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbngw">To Connect to a Broker</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobf">Viewing Connection Services</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnhr">To View Available Connection Services</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobg">Working With Physical Destinations</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#aeobh">Creating a Physical Destination</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnio">To Add a Physical Destination to a
Broker</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobi">Viewing Physical Destination Properties</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbniy">To View or Modify the Properties of a
Physical Destination</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobj">Purging Messages From a Physical
Destination</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnil">To Purge Messages From a Physical
Destination</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobk">Deleting a Physical Destination</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnij">To Delete a Physical Destination</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobl">Working With Object Stores</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#aeobm">Adding an Object Store</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnip">To Add an Object Store to the
Administration Console</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobn">Connecting to an Object Store</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnin">To Connect to an Object Store</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobo">Working With Administered Objects</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#aeobp">Adding a Connection Factory</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbniv">To Add a Connection Factory to an Object
Store</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobq">Adding a Destination</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbnit">To Add a Destination to an Object Store</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobr">Viewing Administered Object Properties</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbniw">To View or Modify the Properties of an
Administered Object</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobs">Deleting an Administered Object</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbniu">To Delete an Administered Object</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="quick-start.html#aeobt">Running the Sample Application</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="quick-start.html#gbniz">To Run the Sample Application</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="part-ii-administrative-tasks"><a href="part-administrative-tasks.html#gcrli">Part II Administrative Tasks</a></h3>
</div>
<div class="sect2">
<h3 id="starting-brokers-and-clients"><a href="starting-brokers-and-clients.html#aeobu">3 Starting Brokers and Clients</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="starting-brokers-and-clients.html#aeobv">Preparing System
Resources</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="starting-brokers-and-clients.html#aeobw">Synchronizing System
Clocks</a></p>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeobx">Setting the File
Descriptor Limit</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeoby">Starting Brokers</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="starting-brokers-and-clients.html#aeobz">Starting Brokers
Interactively</a></p>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeoca">Starting Brokers
Automatically</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="starting-brokers-and-clients.html#ggwew">Automatic Broker Startup
on the Solaris Platforms</a></p>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeocb">Automatic Broker Startup
on the Linux Platform</a></p>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeocc">Automatic Broker Startup
on Windows</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeoch">Deleting a Broker
Instance</a></p>
</li>
<li>
<p><a href="starting-brokers-and-clients.html#aeock">Starting Clients</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="configuring-a-broker"><a href="broker-configuration.html#aeocl">4 Configuring a Broker</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="broker-configuration.html#aeocm">Broker Services</a></p>
</li>
<li>
<p><a href="broker-configuration.html#aeodc">Setting Broker Configuration
Properties</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-configuration.html#aeodd">Modifying Configuration Files</a></p>
</li>
<li>
<p><a href="broker-configuration.html#aeodf">Setting Configuration Properties
from the Command Line</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="managing-a-broker"><a href="broker-management.html#aeodm">5 Managing a Broker</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="broker-management.html#aeodn">Command Utility Preliminaries</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodo">Using the Command Utility</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-management.html#aeodr">Specifying the User Name and
Password</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodu">Specifying the Broker Name and Port</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodq">Displaying the Product Version</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodp">Displaying Help</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodv">Examples</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="broker-management.html#geobv">Managing Brokers</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-management.html#aeoeb">Shutting Down and Restarting a
Broker</a></p>
</li>
<li>
<p><a href="broker-management.html#geodc">Quiescing a Broker</a></p>
</li>
<li>
<p><a href="broker-management.html#aeody">Pausing and Resuming a Broker</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodx">Updating Broker Properties</a></p>
</li>
<li>
<p><a href="broker-management.html#aeodw">Viewing Broker Information</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="configuring-and-managing-connection-services"><a href="connection-services.html#gheau">6 Configuring and Managing Connection Services</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="connection-services.html#aeocn">Configuring Connection Services</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="connection-services.html#aeoco">Port Mapper</a></p>
</li>
<li>
<p><a href="connection-services.html#aeocp">Thread Pool Management</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="connection-services.html#aeoed">Managing Connection Services</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="connection-services.html#aeoei">Pausing and Resuming a Connection
Service</a></p>
</li>
<li>
<p><a href="connection-services.html#aeoeg">Updating Connection Service
Properties</a></p>
</li>
<li>
<p><a href="connection-services.html#aeoee">Viewing Connection Service
Information</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="connection-services.html#aeoej">Managing Connections</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="managing-message-delivery"><a href="message-delivery.html#ghebf">7 Managing Message Delivery</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="message-delivery.html#gheav">Configuring and Managing Physical
Destinations</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="message-delivery.html#aeoen">Command Utility Subcommands for
Physical Destination Management</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoep">Creating and Destroying Physical
Destinations</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="message-delivery.html#ghcfr">Naming Destinations</a></p>
</li>
<li>
<p><a href="message-delivery.html#ghcgy">Setting Property Values</a></p>
</li>
<li>
<p><a href="message-delivery.html#ghcee">Destroying Destinations</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="message-delivery.html#aeoet">Pausing and Resuming a Physical
Destination</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoeu">Purging a Physical Destination</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoes">Updating Physical Destination
Properties</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoer">Viewing Physical Destination
Information</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoew">Managing Physical Destination Disk
Utilization</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoez">Using the Dead Message Queue</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="message-delivery.html#aeofb">Managing the Dead Message Queue</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeofe">Enabling Dead Message Logging</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="message-delivery.html#aeocq">Managing Broker System-Wide Memory</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoek">Managing Durable Subscriptions</a></p>
</li>
<li>
<p><a href="message-delivery.html#aeoel">Managing Transactions</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="configuring-persistence-services"><a href="persistence-services.html#gheas">8 Configuring Persistence Services</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="persistence-services.html#aeocr">Introduction to Persistence
Services</a></p>
</li>
<li>
<p><a href="persistence-services.html#gheap">File-Based Persistence</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="persistence-services.html#aeocs">File-Based Persistence
Properties</a></p>
</li>
<li>
<p><a href="persistence-services.html#aeodh">Configuring a File-Based Data
Store</a></p>
</li>
<li>
<p><a href="persistence-services.html#aeodk">Securing a File-Based Data Store</a></p>
</li>
<li>
<p><a href="persistence-services.html#gjmqy">Optimizing File-Based Transaction
Persistence</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="persistence-services.html#gheaz">JDBC-Based Persistence</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="persistence-services.html#aeoct">JDBC-Based Persistence
Properties</a></p>
</li>
<li>
<p><a href="persistence-services.html#aeodi">Configuring a JDBC-Based Data
Store</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="persistence-services.html#gbnjm">To Set Up a JDBC-Based Data
Store</a></p>
</li>
<li>
<p><a href="persistence-services.html#ggwdb">To Display Information About a
JDBC-Based Data Store</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="persistence-services.html#aeodl">Securing a JDBC-Based Data Store</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="persistence-services.html#ggwal">Data Store Formats</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="configuring-and-managing-security-services"><a href="security-services.html#aeoff">9 Configuring and Managing Security Services</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeocu">Introduction to Security Services</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeocv">Authentication</a></p>
</li>
<li>
<p><a href="security-services.html#aeocw">Authorization</a></p>
</li>
<li>
<p><a href="security-services.html#aeocx">Encryption</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeofg">User Authentication</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeofh">Using a Flat-File User Repository</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeofm">User Groups and Status</a></p>
</li>
<li>
<p><a href="security-services.html#aeofj">Using the User Manager Utility</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeofr">Using an LDAP User Repository</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#gbnkk">To Set Up an Administrative User</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#gepfq">Using JAAS-Based Authentication</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#gephn">Elements of JAAS</a></p>
</li>
<li>
<p><a href="security-services.html#gepfs">JAAS and Message Queue</a></p>
</li>
<li>
<p><a href="security-services.html#gepgd">Setting up JAAS-Compliant
Authentication</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeofu">User Authorization</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeofv">Access Control File Syntax</a></p>
</li>
<li>
<p><a href="security-services.html#aeofx">Application of Authorization Rules</a></p>
</li>
<li>
<p><a href="security-services.html#aeofy">Authorization Rules for Connection
Services</a></p>
</li>
<li>
<p><a href="security-services.html#aeofz">Authorization Rules for Physical
Destinations</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#gjmsn">Authorization Rules for
Auto-Created Physical Destinations</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeogb">Message Encryption</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeogd">Using Self-Signed Certificates</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#ggwkm">Setting Up an SSL-Based Connection
Service Using Self-Signed Certificates</a></p>
</li>
<li>
<p><a href="security-services.html#aeogh">Configuring and Running an
SSL-Based Client Using Self-Signed Certificates</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeogk">Using Signed Certificates</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeogl">Obtaining and Installing a Signed
Certificate</a></p>
</li>
<li>
<p><a href="security-services.html#aeogm">Configuring the Client to Require
Signed Certificates</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeogq">Password Files</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#aeogr">Security Considerations for
Passwords and Password Files</a></p>
</li>
<li>
<p><a href="security-services.html#aeogs">Password File Contents</a></p>
</li>
<li>
<p><a href="security-services.html#CJAIJHAJ">Secure Password Files</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#CJAJGGBD">Obfuscate a Passfile</a></p>
</li>
<li>
<p><a href="security-services.html#sthref37">Add a Password to a Password
File</a></p>
</li>
<li>
<p><a href="security-services.html#sthref38">Delete a Password from a
Password File</a></p>
</li>
<li>
<p><a href="security-services.html#sthref39">Change a Password in a Password
File</a></p>
</li>
<li>
<p><a href="security-services.html#sthref40">Deobfuscate a Password File</a></p>
</li>
<li>
<p><a href="security-services.html#sthref41">Upgrading Clear Text Password
Files</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#gcuhq">Connecting Through a Firewall</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="security-services.html#gcugz">To Enable Broker Connections Through
a Firewall</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="security-services.html#aeogt">Audit Logging with the Solaris BSM
Audit Log</a></p>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="configuring-and-managing-broker-clusters"><a href="broker-clusters.html#aeohv">10 Configuring and Managing Broker Clusters</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#aeohw">Configuring Broker Clusters</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#gejlk">The Cluster Configuration File</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gejkw">Cluster Configuration Properties</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#ggumd">Cluster Connection Service
Properties</a></p>
</li>
<li>
<p><a href="broker-clusters.html#ggulp">Conventional Broker Cluster
Properties</a></p>
</li>
<li>
<p><a href="broker-clusters.html#ggult">Enhanced Broker Cluster Properties</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="broker-clusters.html#geciv">Displaying a Cluster Configuration</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="broker-clusters.html#aeohz">Managing Broker Clusters</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#gebnh">Managing Conventional Clusters</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#aeoia">Connecting Brokers into a
Conventional Cluster</a></p>
</li>
<li>
<p><a href="broker-clusters.html#aeoid">Adding Brokers to a Conventional
Cluster</a></p>
</li>
<li>
<p><a href="broker-clusters.html#aeoie">Removing Brokers From a Conventional
Cluster</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gkudn">Changing the Master Broker in a
Conventional Cluster with Master Broker</a></p>
</li>
<li>
<p><a href="broker-clusters.html#aeoih">Managing a Conventional Cluster’s
Configuration Change Record</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gktiy">Converting Between Types of
Conventional Clusters</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="broker-clusters.html#gebna">Managing Enhanced Clusters</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#gebmt">Connecting Brokers into an Enhanced
Cluster</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gecjj">Adding and Removing Brokers in an
Enhanced Cluster</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gkbfh">Restarting a Failed Broker</a></p>
</li>
<li>
<p><a href="broker-clusters.html#gecjm">Preventing or Forcing Broker
Failover</a></p>
</li>
<li>
<p><a href="broker-clusters.html#ggvcd">Backing up a Shared Data Store</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="broker-clusters.html#ghsgh">Converting a Conventional Cluster to
an Enhanced Cluster</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="broker-clusters.html#ghshq">Cluster Conversion : File-Based Data
Store</a></p>
</li>
<li>
<p><a href="broker-clusters.html#ghshc">Cluster Conversion: JDBC-Based Data
Store</a></p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="sect2">
<h3 id="managing-administered-objects"><a href="administered-objects.html#aeogu">11 Managing Administered Objects</a></h3>
<div class="ulist">
<ul>
<li>
<p><a href="administered-objects.html#aeogv">Object Stores</a></p>
<div class="ulist">
<ul>
<li>
<p><a href="administered-objects.html#aeogw">LDAP Server Object Stores</a></p>
</li>
<li>
<p><a href="administered-objects.html#aeogx">File-System Object Stores</a></p>
</li>
</ul>
</div>
</li>
<li>
<p><a href="administered-objects.html#aeogy">Administered Object Attributes</a></p>
<div class="ulist">