forked from SUSE/suse-best-practices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMAIN-SBP-SUMA-on-IBM-PowerVM.xml
2576 lines (2218 loc) · 98.8 KB
/
MAIN-SBP-SUMA-on-IBM-PowerVM.xml
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" encoding="UTF-8"?>
<!--<?oxygen RNGSchema="http://www.oasis-open.org/docbook/xml/5.0/rng/docbook.rng" type="xml"?>-->
<!DOCTYPE article [
<!ENTITY % entity SYSTEM "entity-decl.ent">
%entity;
]>
<article role="sbp" xmlns="http://docbook.org/ns/docbook" xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0" xml:id="art-sbp-amdepyc-sles12sp3"
xml:lang="en">
<info>
<title>Deploying SUSE Linux Enterprise Products with SUSE Manager on IBM PowerVM</title>
<!--<subtitle></subtitle>-->
<productname>SUSE Manager</productname>
<!--<productnumber></productnumber>-->
<dm:docmanager xmlns:dm="urn:x-suse:ns:docmanager">
<dm:bugtracker>
<dm:url>https://github.com/SUSE/suse-best-practices/issues/new</dm:url>
<dm:product>Deploying SUSE Linux Enterprise Products with SUSE Manager on IBM PowerVM</dm:product>
</dm:bugtracker>
<dm:editurl>https://github.com/SUSE/suse-best-practices/edit/main/xml/</dm:editurl>
</dm:docmanager>
<meta name="series">SUSE Best Practices</meta>
<meta name="category">Systems Management</meta>
<meta name="platform">SUSE Manager</meta>
<meta name="platform">IBM PowerVM</meta>
<authorgroup>
<author>
<personname>
<firstname>Olivier</firstname>
<surname>Van Rompuy</surname>
</personname>
<affiliation>
<jobtitle>Senior System Engineer and Technical Consultant</jobtitle>
<orgname>IRIS</orgname>
</affiliation>
</author>
<!-- <author>
<personname>
<firstname></firstname>
<surname></surname>
</personname>
<affiliation>
<jobtitle></jobtitle>
<orgname></orgname>
</affiliation>
</author>-->
<!-- <editor>
<orgname></orgname>
</editor>
<othercredit>
<orgname></orgname>
</othercredit>-->
</authorgroup>
<cover role="logos">
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suse.svg" width="5em" align="center" valign="bottom"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suse.svg" width="152px" align="center" valign="bottom"/>
</imageobject>
</mediaobject>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="iris_canon-4c.jpg" width="5em" align="center" valign="bottom"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="iris_canon-4c.jpg" width="152px" align="center" valign="bottom"/>
</imageobject>
</mediaobject>
</cover>
<date>August 14, 2018</date>
<abstract>
<para>The document at hand provides an overview of how to deploy SUSE Linux Enterprise
products with SUSE Manager on IBM Power Systems. SUSE Manager enables you to manage and
maintain your enterprise Linux system deployments across physical, virtual and cloud
environments via one centralized tool. Described is a base deployment of SUSE Manager 3.1 on
IBM PowerVM LPARs, including Autoinstallation, AutoYaST and Netboot Integration.</para>
<para>
<emphasis role="strong">Disclaimer: </emphasis>
Documents published as part of the SUSE Best Practices series have been contributed voluntarily
by SUSE employees and third parties. They are meant to serve as examples of how particular
actions can be performed. They have been compiled with utmost attention to detail. However,
this does not guarantee complete accuracy. SUSE cannot verify that actions described in these
documents do what is claimed or whether actions described have unintended consequences.
SUSE LLC, its affiliates, the authors, and the translators may not be held liable for possible errors
or the consequences thereof.
</para>
</abstract>
</info>
<sect1 xml:id="sec-install-suma-power">
<title>Installing SUSE Manager on IBM Power Systems</title>
<para>First, you need to perform several actions related to the IBM PowerVM architecture (refer
also to the IBM documentation at <link
xlink:href="https://www.ibm.com/support/knowledgecenter/"
>https://www.ibm.com/support/knowledgecenter/</link> ):</para>
<procedure>
<step>
<para>Create a new Logical Partition (LPAR) for SUSE Manager on an IBM Power System with
POWER8 or higher processors.</para>
</step>
<step>
<para>Configure the infrastructure for this LPAR: LAN, SAN, storage LUNs, zoning,
etc..</para>
</step>
<step>
<para>Create a virtual DVD drive for this LPAR on one of the VIO servers (learn more about
VIO servers here: <link
xlink:href="https://www.ibm.com/support/knowledgecenter/en/POWER8/p8hb1/p8hb1_vios_virtualioserveroverview.htm"
>https://www.ibm.com/support/knowledgecenter/en/POWER8/p8hb1/p8hb1_vios_virtualioserveroverview.htm</link>).</para>
</step>
<step>
<para>Add the SUSE Linux Enterprise Server 12 ISO files to the virtual optical device (DVD)
repository on this VIO server.</para>
</step>
<step>
<para>Using the command <command>cfgassist</command> on the VIO server loads the first DVD
in the virtual drive.</para>
</step>
<step>
<para>Activate the LPAR, enter the <emphasis role="strong">System Management
Services</emphasis> (SMS) menu and choose to boot from the DVD.</para>
</step>
</procedure>
<para>When the YaST installation tool from SUSE Linux Enterprise Server appears, subscribe with
the correct SUSE Customer Center (SCC) registration code (<quote>SUSE Linux Enterprise Server
for IBM POWER</quote>). Collect your registration codes from the SCC portal site at <link
xlink:href="https://scc.suse.com">https://scc.suse.com</link>.</para>
<para>Now choose to add the SUSE Manager Server extension as shown on the screen below, and enter
<emphasis role="strong">Next</emphasis>:</para>
<figure>
<title>YaST Installation - Extensions and Module Selection</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-extension-selection.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-extension-selection.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Accept the SUSE End User License Agreement (EULA) and enter <emphasis role="strong"
>Next</emphasis>:</para>
<figure>
<title>YaST Installation - SUSE End User License Agreement</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-license-agreement.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-license-agreement.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Provide the correct registration code delivered with your SUSE Manager subscription, and
enter <emphasis role="strong">Next</emphasis>:</para>
<figure>
<title>YaST Installation - SUSE Manager Registration Code</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-extension-regcodes.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-extension-regcodes.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>No additional <emphasis role="strong">Add-On Product</emphasis> needs to be installed.
Skip this screen and enter <emphasis role="strong">Next</emphasis>:</para>
<figure>
<title>YaST Installation - Add-On Product</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-addon.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-addon.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>The next screen provides the partitioning options:</para>
<figure>
<title>YaST Installation - Partitioning Options</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-suggestedpartioning-1.png" width="70%" format="PNG"
/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-suggestedpartioning-1.png" width="80%" format="PNG"
/>
</imageobject>
</mediaobject>
</figure>
<para>Select <emphasis role="strong">Expert Partitioner</emphasis>:</para>
<figure>
<title>YaST Installation - Expert Partitioner</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-expertpartinioneer.png" width="30%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-expertpartinioneer.png" width="70%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Execute <emphasis role="strong">Rescan Devices</emphasis> to clear the auto-suggested
partitioning:</para>
<figure>
<title>YaST Installation - Rescan Devices</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-rescandevices.png" width="20%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-rescandevices.png" width="70%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>In the particular scenario at hand, a reinstallation has been performed. In this case,
follow the steps below. If partitioning and/or LVM settings are already present, choose to
import these settings into the installer, and select <emphasis role="strong">Import Mount
Points</emphasis>:</para>
<figure>
<title>YaST Installation - Import Mount Points</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-importmount.png" width="30%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-importmount.png" width="70%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<note>
<title>Fresh Installation</title>
<para>If you perform an installation from scratch, configure your partitions and LVM settings
following the recommendations below:</para>
<simplelist>
<member>Minimum 100 GB for root / partition</member>
<member>Minimum 50 GB for <filename>/var/lib/pgsql</filename></member>
<member>Minimum 50 GB per SUSE product and 100 GB per Red Hat product for
<filename>/var/spacewalk</filename></member>
</simplelist>
</note>
<para>When you are finished, continue with the partitioning step, and enter <emphasis
role="strong">Next</emphasis>:</para>
<figure>
<title>YaST Installation - Suggested Partitioning</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-suggestedpartitionig-2.png" width="60%" format="PNG"
/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-suggestedpartitionig-2.png" width="80%" format="PNG"
/>
</imageobject>
</mediaobject>
</figure>
<para>Provide the correct time zone settings, and confirm them with <emphasis role="strong"
>Next</emphasis>:</para>
<figure>
<title>YaST Installation - Clock and Time Zone</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-timezone.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-timezone.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>At this stage you can choose to skip the creation of an initial user. Enter <emphasis
role="strong">Next</emphasis>:</para>
<figure>
<title>YaST Installation - Local User</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-localuser.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-localuser.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Verify the settings overview and make further changes or customizations where needed.
Start the installation with <emphasis role="strong">Install</emphasis>:</para>
<figure>
<title>YaST Installation - Installation Settings</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-installation-settings.png" width="70%" format="PNG"
/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-installation-settings.png" width="80%" format="PNG"
/>
</imageobject>
</mediaobject>
</figure>
<para>After the installation is finished, verify whether all aspects of the operating system
have been installed correctly.</para>
</sect1>
<sect1 xml:id="sec-suma-setup">
<title>SUSE Manager Setup</title>
<important>
<title>DNS</title>
<para>After the installation make sure you configure your hosts DNS settings and add an entry
to DNS. This ensures that the host name can be correctly resolved.</para>
</important>
<para>Open an <emphasis>SSH</emphasis> session to the new SUSE Manager host and start
YaST:</para>
<screen># yast2 susemanager_setup</screen>
<para>Choose to configure SUSE Manager from scratch:</para>
<figure>
<title>YaST Installation - Setting up SUSE Manager</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-setupfromscratch.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-setupfromscratch.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Enter a correct administrator e-mail address:</para>
<figure>
<title>YaST Installation - E-mail Address</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-email.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-email.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Provide details for the certificate generation:</para>
<figure>
<title>YaST Installation - Certificate Generation</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-certifcatesetup.png" width="25%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-certifcatesetup.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Provide database authentication settings:</para>
<figure>
<title>YaST Installation - Database Settings</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-db-settings.png" width="25%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-db-settings.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Provide your SUSE Manager SCC organization user name and password:</para>
<figure>
<title>YaST Installation - SCC Settings</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-sccsettings.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-sccsettings.png" width="70%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Perform an authentication test toward the SUSE Customer Center:</para>
<figure>
<title>YaST Installation - Test Details</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-test-details.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-test-details.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Confirm to run the setup process with <emphasis role="strong">Yes</emphasis>:</para>
<figure>
<title>YaST Installation - Setup Process Confirmation</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-runsetupnow.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-runsetupnow.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Now the setup process is started:</para>
<figure>
<title>YaST Installation - Write Settings</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-writesettings.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-writesettings.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Wait until the setup process is completed. Then enter <emphasis role="strong"
>Finish</emphasis>:</para>
<figure>
<title>YaST Installation - Setup Completed</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-yast-setupcompleted.png" width="70%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-yast-setupcompleted.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Verify that you can access the new SUSE Manager URL using a browser.</para>
<important>
<title/>
<para>At time of writing this document, in SUSE Linux Enterprise Server 12 SP3 a minor
workaround needs to be applied to the Apache configuration file to use spacewalk:</para>
<para>Add the following file with the following line of content:</para>
<screen># vi /etc/apache2/conf.d/zipp-fix.conf
HttpProtocolOptions Unsafe</screen>
<para>Restart Apache to activate the change:</para>
<screen># systemctl restart apache2.service</screen>
</important>
</sect1>
<sect1 xml:id="sec-create-org">
<title>Create and Configure the Organization</title>
<para>After the SUSE Manager setup is finished, you must create your organization on the SUSE
Manager Web user interface.</para>
<para>Provide all the requested details including an initial administrator user and
password:</para>
<figure>
<title>SUSE Manager Web UI - Create Organization</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-createorg.png" width="90%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-createorg.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Confirm with <emphasis role="strong">Create Organization</emphasis>. The following message
appears on the screen:</para>
<figure>
<title>SUSE Manager Web UI - Organization Created Successfully</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-organization-created.png" width="100%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-organization-created.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Navigate to the <emphasis role="strong">Setup Wizard</emphasis> in the left pane:</para>
<figure>
<title>SUSE Manager Web UI - Setup Wizard</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-setupwizard.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-setupwizard.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Select the <emphasis role="strong">Organization Credentials</emphasis> tab:</para>
<figure>
<title>SUSE Manager Web UI - Organization Credentials</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-orgcredentials.png" width="30%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-orgcredentials.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Click <emphasis role="strong">Add a new credential</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Add Credential</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-newcredential.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-newcredential.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Enter your correct organization credentials from the SCC portal and save them:</para>
<figure>
<title>SUSE Manager Web UI - Edit Credentials</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-editcredentials.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-editcredentials.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Now navigate to the <emphasis role="strong">SUSE Products</emphasis> tab and select the
SUSE products you need. In this example, SUSE Linux Enterprise Server for SAP Applications 12
SP3 has been selected:</para>
<figure>
<title>SUSE Manager Web UI - SUSE Products</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-suseproducts.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-suseproducts.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Do not forget to also check the sub-channels you need for each product:</para>
<figure>
<title>SUSE Manager Web UI - Sub-Channels</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-select-modules.png" width="100%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-select-modules.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>When your selection is done, confirm it with <emphasis role="strong">Add
products</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Add Products</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-button-addproducts.png" width="20%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-button-addproducts.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Navigate to <emphasis role="strong">Manager Configuration</emphasis> in the left pane, and
select <emphasis role="strong">Bare-metal systems</emphasis> as indicated below:</para>
<figure>
<title>SUSE Manager Web UI - Bare-metal Systems</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-baremetal.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-baremetal.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Now enable <emphasis role="strong">Bare-metal systems</emphasis>; click the green box
<emphasis role="strong">Enable adding to this organization</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Enable Bare-metal Systems</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-sumaconfig-baremetal.png" width="80%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-sumaconfig-baremetal.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
</sect1>
<sect1 xml:id="sec-create-swchannel-hierarchy">
<title>Create the Software Channel Hierarchy</title>
<para>The following section describes how to create the software channel hierarchy.</para>
<para>Log on as root using <emphasis>SSH</emphasis>. Install the
<package>spacewalk-utils</package> package with the following command:</para>
<screen># zypper install spacewalk-utils</screen>
<para>Check whether the available channels correspond with selections made before:</para>
<screen># spacewalk-manage-channel-lifecycle --list-channels
Spacewalk Username: admin
Spacewalk Password:
Channel tree:
1. sle12-sp2-sap-pool-ppc64le
\__ ibm-dlpar-utils-sap-sp2
\__ sle-12-sp2-sap-updates-ppc64le
\__ sle-ha12-sp2-pool-ppc64le-sap-sp2
\__ sle-ha12-sp2-updates-ppc64le-sap-sp2
\__ sle-manager-tools12-pool-ppc64le-sap-sp2
\__ sle-manager-tools12-updates-ppc64le-sap-sp2
\__ sle-module-adv-systems-management12-pool-ppc64le-sap-sp2
\__ sle-module-adv-systems-management12-updates-ppc64le-sap-sp2
\__ sle-module-legacy12-pool-ppc64le-sap-sp2
\__ sle-module-legacy12-updates-ppc64le-sap-sp2
\__ sles12-sp2-pool-ppc64le-sap-sp2
\__ sles12-sp2-updates-ppc64le-sap-sp2
2. sle12-sp3-sap-pool-ppc64le
\__ ibm-dlpar-utils-sap-sp3
\__ sle-12-sp3-sap-updates-ppc64le
\__ sle-ha12-sp3-pool-ppc64le-sap-sp3
\__ sle-ha12-sp3-updates-ppc64le-sap-sp3
\__ sle-manager-tools12-pool-ppc64le-sap-sp3
\__ sle-manager-tools12-updates-ppc64le-sap-sp3
\__ sle-module-adv-systems-management12-pool-ppc64le-sap-sp3
\__ sle-module-adv-systems-management12-updates-ppc64le-sap-sp3
\__ sle-module-legacy12-pool-ppc64le-sap-sp3
\__ sle-module-legacy12-updates-ppc64le-sap-sp3
\__ sles12-sp3-pool-ppc64le-sap-sp3
\__ sles12-sp3-updates-ppc64le-sap-sp3
</screen>
<para>Synchronize the <filename>ibm-dlpar</filename> repository and import the GPG key.</para>
<screen># spacewalk-repo-sync --channel ibm-dlpar-utils-sap-sp2
14:38:14 ======================================
14:38:14 | Channel: ibm-dlpar-utils-sap-sp2
14:38:14 ======================================
14:38:14 Sync of channel started.
Do you want to import the GPG key 0x3E6E42BE "Linux on POWER (IBM Linux Technology Center) <[email protected]>" from http://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le//repodata/repomd.xml.key? [y/n]:
<emphasis role="strong">y</emphasis>
14:38:20 Repo URL: http://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/
14:38:20 Packages in repo: 36
14:38:20 Packages already synced: 0
14:38:20 Packages to sync: 30
14:38:20 New packages to download: 30
14:38:20 Downloading 30 files.
14:38:22 1/30 : DynamicRM-2.0.5-1.ppc64le.rpm
14:38:22 2/30 : IBMinvscout-3.1.0-2.ppc64le.rpm
…….
14:38:29 29/30 : rsct.core-3.2.2.3-17144.ppc64le.rpm
14:38:47 30/30 : esagent.pLinux-4.2.0-9.noarch.rpm
Importing packages: |##################################################| 100.0%
14:38:54 Linking packages to channel.
14:38:55 Transferred 100 orphaned vendor packages to the default organization
14:38:55 Repo http://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/SLES/12/ppc64le/ has 0 patches.
14:38:55 Sync completed.
14:38:55 Total time: 0:00:40
# spacewalk-repo-sync --channel ibm-dlpar-utils-sap-sp3
…
Synchronize the base channel :
# spacewalk-repo-sync --channel sle12-sp2-sap-pool-ppc64le
...
# spacewalk-repo-sync --channel sle12-sp3-sap-pool-ppc64le
…
</screen>
<para>In the specific setup at hand, the lifecycle phases are limited to <quote>dev</quote> and
<quote>prod</quote> (<quote>test</quote> has been removed).</para>
<screen>vi ~/.spacewalk-manage-channel-lifecycle/settings.conf
phases = dev, prod
exclude channels =</screen>
<para>This can be customized as required, which means you can add and remove phases at this stage
of the procedure.</para>
<para>Generate the <quote>dev</quote> channels by promoting the SUSE channels. The same command
is used to fully synchronize the <quote>dev</quote> channels with the online
repositories:</para>
<screen># spacewalk-manage-channel-lifecycle -c sle12-sp2-sap-pool-ppc64le --init
INFO: Cloning dev-sle12-sp2-sap-pool-ppc64le from sle12-sp2-sap-pool-ppc64le
INFO: Cloning dev-ibm-dlpar-utils-sap-sp2 from ibm-dlpar-utils-sap-sp2
INFO: Cloning dev-sle-12-sp2-sap-updates-ppc64le from sle-12-sp2-sap-updates-ppc64le
INFO: Cloning dev-sle-ha12-sp2-pool-ppc64le-sap-sp2 from sle-ha12-sp2-pool-ppc64le-sap-sp2
INFO: Cloning dev-sle-ha12-sp2-updates-ppc64le-sap-sp2 from sle-ha12-sp2-updates-ppc64le-sap-sp2
INFO: Cloning dev-sle-manager-tools12-pool-ppc64le-sap-sp2 from sle-manager-tools12-pool-ppc64le-sap-sp2
INFO: Cloning dev-sle-manager-tools12-updates-ppc64le-sap-sp2 from sle-manager-tools12-updates-ppc64le-sap-sp2
INFO: Cloning dev-sle-module-adv-systems-management12-pool-ppc64le-sap-sp2 from sle-module-adv-systems-management12-pool-ppc64le-sap-sp2
INFO: Cloning dev-sle-module-adv-systems-management12-updates-ppc64le-sap-sp2 from sle-module-adv-systems-management12-updates-ppc64le-sap-sp2
INFO: Cloning dev-sle-module-legacy12-pool-ppc64le-sap-sp2 from sle-module-legacy12-pool-ppc64le-sap-sp2
INFO: Cloning dev-sle-module-legacy12-updates-ppc64le-sap-sp2 from sle-module-legacy12-updates-ppc64le-sap-sp2
INFO: Cloning dev-sles12-sp2-pool-ppc64le-sap-sp2 from sles12-sp2-pool-ppc64le-sap-sp2
INFO: Cloning dev-sles12-sp2-updates-ppc64le-sap-sp2 from sles12-sp2-updates-ppc64le-sap-sp2
</screen>
<para>Now the <quote>dev</quote> channel can be promoted to generate and synchronize the
<quote>prod</quote> channels with <command>dev</command>:</para>
<screen># spacewalk-manage-channel-lifecycle -c dev-sle12-sp2-sap-pool-ppc64le --promote
INFO: Cloning prod-sle12-sp2-sap-pool-ppc64le from dev-sle12-sp2-sap-pool-ppc64le
INFO: Cloning prod-ibm-dlpar-utils-sap-sp2 from dev-ibm-dlpar-utils-sap-sp2
INFO: Cloning prod-sle-12-sp2-sap-updates-ppc64le from dev-sle-12-sp2-sap-updates-ppc64le
INFO: Cloning prod-sle-ha12-sp2-pool-ppc64le-sap-sp2 from dev-sle-ha12-sp2-pool-ppc64le-sap-sp2
INFO: Cloning prod-sle-ha12-sp2-updates-ppc64le-sap-sp2 from dev-sle-ha12-sp2-updates-ppc64le-sap-sp2
INFO: Cloning prod-sle-manager-tools12-pool-ppc64le-sap-sp2 from dev-sle-manager-tools12-pool-ppc64le-sap-sp2
INFO: Cloning prod-sle-manager-tools12-updates-ppc64le-sap-sp2 from dev-sle-manager-tools12-updates-ppc64le-sap-sp2
INFO: Cloning prod-sle-module-adv-systems-management12-pool-ppc64le-sap-sp2 from dev-sle-module-adv-systems-management12-pool-ppc64le-sap-sp2
INFO: Cloning prod-sle-module-adv-systems-management12-updates-ppc64le-sap-sp2 from dev-sle-module-adv-systems-management12-updates-ppc64le-sap-sp2
INFO: Cloning prod-sle-module-legacy12-pool-ppc64le-sap-sp2 from dev-sle-module-legacy12-pool-ppc64le-sap-sp2
INFO: Cloning prod-sle-module-legacy12-updates-ppc64le-sap-sp2 from dev-sle-module-legacy12-updates-ppc64le-sap-sp2
INFO: Cloning prod-sles12-sp2-pool-ppc64le-sap-sp2 from dev-sles12-sp2-pool-ppc64le-sap-sp2
INFO: Cloning prod-sles12-sp2-updates-ppc64le-sap-sp2 from dev-sles12-sp2-updates-ppc64le-sap-sp2
</screen>
<para>The same steps need to be performed for any additional product or version:</para>
<screen># spacewalk-manage-channel-lifecycle -c sle12-sp3-sap-pool-ppc64le –promote
…
# spacewalk-manage-channel-lifecycle -c dev-sle12-sp3-sap-pool-ppc64le –promote
…
</screen>
<para>For all of the <filename>-ibm-dlpar-utils-</filename> child channels, deactivate the GPG
check as it requires an external GPG key from IBM. To do so, navigate to <emphasis
role="strong">Software</emphasis> in the left pan. Then go to <emphasis role="strong">Manage
Software Channels</emphasis> and choose <emphasis role="strong">Overview</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Manage Software Channels</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-swchannels-overview.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-swchannels-overview.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>A list of all of the <filename>-ibm-dlpar-utils-</filename> child channels appears:</para>
<figure>
<title>SUSE Manager Web UI - List of Child Channels</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-devsle12.png" width="30%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-devsle12.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Make sure the check box for <emphasis role="strong">Enable GPG Check</emphasis> is not
marked:</para>
<figure>
<title>SUSE Manager Web UI - Enable GPG Check</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-enablegpgcheck.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-enablegpgcheck.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Alternatively you can download the GPG key locally and configure a local URL.</para>
</sect1>
<sect1 xml:id="sec-create-system-groups">
<title>Creating System Groups</title>
<para>Optionally you can configure system groups to distinguish different types of systems. In
this example the system groups <quote>development</quote> and <quote>production</quote> are
configured.</para>
<para>Navigate to <emphasis role="strong">Systems</emphasis> on the left pane, and select
<emphasis role="strong">System Groups</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - System Groups</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-systemgroups.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-systemgroups.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Click <emphasis role="strong">Create Group</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Button Create Group</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-button-creategroup.png" width="25%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-button-creategroup.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Enter the required information and confirm by clicking <emphasis role="strong">Create
Group</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Create System Groups</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-createsystemgroup.png" width="60%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-createsystemgroup.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Now you see the newly created groups:</para>
<figure>
<title>SUSE Manager Web UI - Show System Groups</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-showsystemgroups.png" width="100%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-showsystemgroups.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
</sect1>
<sect1 xml:id="sec-bootstrap-config">
<title>Bootstrap Configuration</title>
<para>Navigate to <emphasis role="strong">Manager Configuration</emphasis> on the left pane, and
select <emphasis role="strong">Bootstrap Script</emphasis>.</para>
<figure>
<title>SUSE Manager Web UI - Menu Manager Configuration</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-managerconfic.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-managerconfic.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Click the <emphasis role="strong">Bootstrap Script</emphasis> tab on top. Enter the
required information to create the general client bootstrap script configuration:</para>
<figure>
<title>SUSE Manager Web UI - Tab Bootstrap Script</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-bootstrap-script.png" width="80%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-bootstrap-script.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Provide the correct <emphasis>Fully-Qualified Domain Name</emphasis> (FQDN) for the SUSE
Manager host name.</para>
<para>Now create the activation keys. Navigate to <emphasis role="strong">Systems</emphasis> on
the left pane and choose <emphasis role="strong">Activation Keys</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Activation Keys</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-activationkeys.png" width="50%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-activationkeys.png" width="80%" format="PNG"/>
</imageobject>
</mediaobject>
</figure>
<para>Click <emphasis role="strong">Create Key</emphasis>:</para>
<figure>
<title>SUSE Manager Web UI - Button Create Key</title>
<mediaobject>
<imageobject role="fo">
<imagedata fileref="suma-powervm-ui-button-createkey.png" width="20%" format="PNG"/>
</imageobject>
<imageobject role="html">
<imagedata fileref="suma-powervm-ui-button-createkey.png" width="80%" format="PNG"/>