-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathrac-status_patrick.sh
1499 lines (1437 loc) · 95 KB
/
rac-status_patrick.sh
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
#!/bin/bash
# Fred Denis -- Jan 2016 -- [email protected] -- http://unknowndba.blogspot.com
# rac-status.sh - an overview of your Oracle RAC / GI 11g, 12c, 18c ,19c, 21c+ resources in a glimpse
# Copyright (C) 2021 Fred Denis
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
#
# More info and git repo: https://bit.ly/2MFkzDw -- https://github.com/freddenis/oracle-scripts
#
# The current script version is 20221222
#
# History :
#
# 20221222 - Fred Denis - -C option to allow a custom cluster name
# Remove a leftover i which was preventing sorting
# Fixed a bug which was impacting the databases which had the clustername in their name
# 20220209 - Fred Denis - Fixed a bug due to awk non math context with DIFF_HOURS which was badly showing services
# recently restarted -- Thanks Steve for bringing this bug to my attention
# 20220121 - Fred Denis - We use USR_ORA_OPEN_MODE and no more STATE and TARGET for the databases
# first of all this is more accurate and also fix a bug with the standbys as they always have STATE=INTERMEDIATE
# this applies to CDBs only, it does not seem to work same for the PDBs (yet ?)
# 20211111 - Fred Denis - GPLv3 licence
# 20211110 - Fred Denis - Use of attributes and -attr option for crsctl which is significantly fater (x10 on systems with 100th resources in the cluster)
# 20211109 - Fred Denis - Fast-start failover status shortened, tolower the status when checking to avoid case issues
# 20210912 - Fred Denis - Implement new GI 21c PDB status; also -p option to show/hide PDBs, default is we show the PDBs
# STATE_DETAILS does not seem to be implemented (yet ?) for PDBs so the only info we have
# is Online/Offline, we do not know if PDBs are READ WRITE or READ ONLY -- SEED not here either
# Fixed a bug with the recently restarted resource, also use LAST_RESTART and LAST_STATE_CHANGE
# as they sometimes dont seem to be correctly updated but the mix I made seems OK
# 20210908 - Fred Denis - Fixed a bad character next to cluster status with -u (no color) option
# 20210825 - Fred Denis - Cluster upgrade status was causing an issue for HAS -- now fixed
# There was some leftover color codes with -u option -- now fixed
# Added the PDB associated to the services (the PDB status is not shown as only GI 21c should have this information)
# 20210824 - Fred Denis - New -D option to specify a list of DB to show (and not the others)
# New -S option to specify a list of services to show (and not the others)
# The VIP IPs are not also shown on the right of the table
# 20210714 - Fred Denis - Upgrade state is now shown (you want it to be NORMAL)
# - Use of olr.loc to set up the crs environment before using oratab
# - OH are sorted to avoid random order from CRS (useful when using rac-mon.sh)
# - All standby resources (instances, instances type, services) are now shown in BLUE, primary resources in WHITE
# - Offline standby type services on a primary instance now appear with a GREEN Offline as it is
# expected to have these services to be offline, they will be online only if the DB becomes a standby
# Same applies for primary services on standby databases
# - advm devices are now shown on the right of the table
# - Option -k shows the advm devices next to the acfs FS (handy if you need to remount some)
# - Option -K hides the acfs fs and the advm devices
# 20200415 - Fred Denis - mktemp to create tempfiles
# 20200413 - Fred Denis - Fixed a bug with offline resources in green for the tech resources
# - Fixed a bug with disabled instances
# - Indentation
# 20200317 - Fred Denis - A new -t option (included in -a) which shows the tech resources (DGs, vips, etc ...)
# Also provide insights to the user if we cannot find an ASM entry in oratab as oraenv wont work
# 20200305 - Fred Denis - Fixed a bug when the hostname contains twice the cluster name
# 20190906 - Fred Denis - A new -V option to show the version of the script
# 20190830 - Fred Denis - Show a red "x" also when instances and listeners are disabled
# 20190829 - Fred Denis - Show a red "x" if a service is disabled as well as a legend below the services table
# 20190828 - Fred Denis - Option -L to always show full hostnames; also fixed a bug with the name of the cluster shown
# 20190725 - Fred Denis - When STATUS and TARGET are different, shows with a WITH_BACK2 background color and a legend
# Fixed a bug where the recently restarted legend was shown when it should not
# 20190701 - Fred Denis - Minor fixes, alignements issues with the sorting
# 20190626 - Fred Denis - Better sorting, better recently restarted legend
# 20190621 - Fred Denis - Fixed a bug on the sorting when version was different as other (12.1 instead of 12.1.0.0)
# - Option -w now also supports d for day, w for week, m for month and y for year to specify the delay
# 20190620 - Fred Denis - Fixed an issue with the sorting when there was recently restarted instances
# 20190617 - Fred Denis - New -c option to sort the databases output
# 20190606 - Fred Denis - Show a yellow background when a resource has been restarted less than DIFF_HOURS hours
# A new -w option can be use to specify a number of hours through the command line
# Owners and groups which contained numbers were ignored, this is fixed
# 20190524 - Fred Denis - Fixed a bug when hostnames had more than 1 "db" pattern in their names
# 20190508 - Fred Denis - Show the whole service name and not only part of it when it contains "."
# 20190426 - Fred Denis - which gawk for AIX
# 20190104 - Fred Denis - A new -r option to Reverse the colors (useful for clear terminal backgrounds)
# A new -u option to show an Uncolored output
# 20190325 - Fred Denis - Solaris sed does not support sed -i, use gsed instead
# New -e option to NOT use oraenv to set the ASM environment but to use the current manually set environment
# (USE_ORAENV="NO" on top of the script to have this permanently)
# 20190318 - Fred Denis - Dont show the owner:group legend about '' menaing same as above if only 1 Home
# 20190307 - Fred Denis - Added owner:group behind the ORACLE_HOME (useful when owner are different) -- thanks Andrey for the feature idea !
# Also removed the P for Primary and S for Stanby legend; it looks self explanatory enough already
# 20190204 - Fred Denis - Oracle Restart support
# 20190130 - Fred Denis - 11g support (BREAK_HERE); 11g and 12c crsctl outputs are quite different
# - A new -o option to specify a file to save the crsctl commands output
# - A new -f option to specify an input file (a file generated by the -o option for example)
# 20190122 - Fred Denis - Multi OS support for AWK (especially for Solaris)
# 20190115 - Fred Denis - Fixed minor alignement issues
# Add grep (-g) and ungrep (-v) feature
# 20181110 - Fred Denis - Show short names in the tables instead of the whole hostnames if possible for better visibility
# - Col 1 and col 2 now align dynamically depending on the largest element to keep all the tables well aligned
# - Dynamic calculation of an offser for the status column size depending on the number of nodes
# - This can also be fixed by setting a non 0 value to COL_NODE_OFFSET on top of the script
# - Better alignements, centered databases and service were not nice, they are now left aligned which is more clear
# 20181010 - Fred Denis - Added the services
# Added default value and options to show and hide some resources (./rac-status.sh -h for more information)
# 20181009 - Fred Denis - Show the usual blue "-" when a target is offline on purpose instead of a red "Offline" which was confusing
# 20180921 - Fred Denis - Added the listeners
# 20180227 - Fred Denis - Make the the size of the DB column dynamic to handle very long database names (Thanks Michael)
# - Added a (P) for Primary databases and a (S) for Stanby for color blind people who
# may not see the difference between white and red (Thanks Michael)
# 20180225 - Fred Denis - Make the multi status like "Mounted (Closed),Readonly,Open Initiated" clear in the table by showing only the first one
# 20180205 - Fred Denis - There was a version alignement issue with more than 10 different ORACLE_HOMEs
# - Better colors for the label "White for PRIMARY, Red for STANBY"
# 20171218 - Fred Denis - Modify the regexp to better accomodate how the version can be in the path (cannot get it from crsctl)
# 20170620 - Fred Denis - Parameters for the size of the columns and some formatting
# 20170619 - Fred Denis - Add a column type (RAC / RacOneNode / Single Instance) and color it depending on the role of the database
# (WHITE for a PRIMARY database and RED for a STANDBY database)
# 20170616 - Fred Denis - Shows an ORACLE_HOME reference in the Version column and an ORACLE_HOME list below the table
# 20170606 - Fred Denis - A new 12cR2 GI feature now shows the ORACLE_HOME in the STATE_DETAILS column from "crsctl -v"
# - Example : STATE_DETAILS=Open,HOME=/u01/app/oracle/product/11.2.0.3/dbdev_1 instead of STATE_DETAILS=Open in 12cR1
# 20170518 - Fred Denis - Add a readable check on the ${DBMACHINE} file - it happens that it exists but is only root readable
# 20170501 - Fred Denis - First release
#
#
# Variables
#
TMP=$(mktemp) # A tempfile
TMP2=$(mktemp) # Another tempfile
DBMACHINE=/opt/oracle.SupportTools/onecommand/databasemachine.xml # File where we should find the Exadata model as oracle user
GREP="." # What we grep -- default is everything
UNGREP="nothing_to_ungrep_unless_v_option_is_used$$" # What we don't grep (grep -v) -- default is nothing
USE_ORAENV="YES" # Use oraenv to set the ASM env (-e changes this to NO)
REVERSE="NO" # Revert the colors to make them visible, useful for clear terminal backgrounds
WITH_COLORS="YES" # Output with colors, (-b changes this to NO); set to NO for permanent no colored output
WHITE="37m" # White color code
TEAL="36m" # Teal color code
GREEN="32m" # Green color code
REDBACK="41m" # Nothing related to the spider, just a red background :)
DIFF_HOURS="24" # Nb of hours the instance has been restarted
SORT_BY="" # Column to sort by (see the help for possible values)
LONG_NAMES="NO" # If we try to shorten the host names in the tables or not
OLR="/etc/oracle/olr.loc" # olr.loc file to get crs home if oratab does not have ASM entry
ADVM_DEV="False" # Show ADVM devices next to ACFS FS
HIDE_DEV="False" # Hide ACFS FS and ADVM devices
#
# Choose the information what you want to see -- the last uncommented value wins
# ./rac-status.sh -h for more information
SHOW_DB="YES" # Databases
#SHOW_DB="NO"
SHOW_PDB="YES" # PDBs
#SHOW_PDB="NO"
SHOW_LSNR="YES" # Listeners
#SHOW_LSNR="NO"
SHOW_SVC="YES" # Services
SHOW_SVC="NO"
SHOW_TECH="YES" # Tech (DGs, ONS, etc ...)
SHOW_TECH="NO"
#
# Number of spaces between the status and the "|" of the column - this applies before and after the status
# A value of 2 would print 2 spaces before and after the status and like | Open |
# A value of 8 would print | Open |
# A value of 99 means that this parameter is dynamically calculated depending on the number of nodes
# A non 99 value is applied regardless of the number of nodes
COL_NODE_OFFSET=99
#
# Different OS support
#
OS=$(uname)
if [[ "${OS}" =~ "CYGWIN" ]]; then OS="Linux"; fi
case ${OS} in
SunOS)
ORATAB="/var/opt/oracle/oratab" ;
AWK=`which gawk` ;
SED=`which gsed` ;;
Linux)
ORATAB="/etc/oratab" ;
AWK=`which awk` ;
SED=`which sed` ;;
HP-UX)
ORATAB="/etc/oratab" ;
AWK=`which awk` ;
SED=`which sed` ;;
AIX)
ORATAB="/etc/oratab" ;
AWK=`which gawk` ;
SED=`which sed` ;;
*) printf "\n\t\033[1;31m%s\033[m\n\n" "Unsupported OS, cannot continue." ;
exit 666 ;;
esac
#
# Check if we have an AWK and a SED to continue
#
if [[ ! -f "${AWK}" ]]; then
printf "\n\t\033[1;31m%s" "No awk found on your system, cannot continue, if you run Solaris, please ensure that gawk is in your path"
printf "\t%s\033[m\n\n" "${AWK}"
exit 678
fi
if [[ ! -f "${SED}" ]]; then
printf "\n\t\033[1;31m%s" "No sed found on your system, cannot continue, if you run Solaris, please ensure that gsed is in your path"
printf "\t%s\033[m\n\n" "${SED}"
exit 679
fi
#
# Show the version of the script (-V)
#
show_version() {
VERSION=`${AWK} '{if ($0 ~ /^# 20[0-9][0-9][0-1][0-9]/) {print $2; exit}}' $0`
printf "\n\t\033[1;36m%s\033[m\n" "The current version of "`basename $0`" is "$VERSION"." ;
}
#
# An usage function
#
usage() {
printf "\n\033[1;37m%-8s\033[m\n" "NAME" ;
cat << END
rac-status.sh - an overview of your Oracle RAC / GI 11g, 12c, 18c ,19c, 21c+ resources in a glimpse (https://bit.ly/2MFkzDw)
END
printf "\n\033[1;37m%-8s\033[m\n" "SYNOPSIS" ;
cat << END
$0 [-a] [-n] [-d] [-p] [-l] [-s] [-t] [-g] [-v] [-D] [-S] [-c] [-o] [-f] [-e] [-L] [-r] [-u] [-k] [-K] [-w] [-h]
END
printf "\n\033[1;37m%-8s\033[m\n" "DESCRIPTION" ;
cat << END
`basename $0` needs to be executed with a user allowed to query GI using crsctl; oraenv also has to be working
`basename $0` will show what is running or not running accross all the nodes of a GI 12c :
- The databases instances (and the ORACLE_HOME they are running against)
- The type of database : Primary, Standby, RAC One node, Single
- The listeners (SCAN Listener and regular listeners)
- The services
With no option, `basename $0` will show what is defined by the variables :
- SHOW_DB # To show the databases instances
- SHOW_PDB # To show the PDBs (only if your GI is >= 21c)
- SHOW_LSNR # To show the listeners
- SHOW_SVC # To show the services
- SHOW_TECH # To show the tech stuff (DGs, ONS, etc ...)
These variables can be modified in the script itself or you can use command line option to revert their value (see below)
END
printf "\n\033[1;37m%-8s\033[m\n" "OPTIONS" ;
cat << END
-a Show everything regardless of the default behavior defined with SHOW_DB, SHOW_LSNR, SHOW_SVC and SHOW_TECH
-n Show nothing regardless of the default behavior defined with SHOW_DB, SHOW_LSNR, SHOW_SVC and SHOW_TECH
-a and -n are handy to erase the defaults values:
$ ./rac-status.sh -n -d # Show the databases output only
$ ./rac-status.sh -a -s # Show everything but the services (then the listeners and the databases)
-d Revert the behavior defined by SHOW_DB ; if SHOW_DB is set to YES to show the databases by default, then the -d option will hide the databases
-p Revert the behavior defined by SHOW_PDB ; if SHOW_PDB is set to YES to show the databases by default, then the -p option will hide the PDBs
-l Revert the behavior defined by SHOW_LSNR; if SHOW_LSNR is set to YES to show the listeners by default, then the -l option will hide the listeners
-s Revert the behavior defined by SHOW_SVC ; if SHOW_SVC is set to YES to show the services by default, then the -s option will hide the services
-t Revert the behavior defined by SHOW_TECH; if SHOW_TECH is set to YES to show the tech resources by default, then the -t option will hide the tech resources
-g Act as a grep command to grep a pattern from the output (key sensitive)
-v Act as "grep -v" to ungrep from the output
-g and -v examples :
$ ./rac-status.sh -g Open # Show only the lines with "Open" on it
$ ./rac-status.sh -g Open # Show only the lines with "Open" on it
$ ./rac-status.sh -g "Open|Online" # Show only the lines with "Open" or "Online" on it
$ ./rac-status.sh -g "Open|Online" -v 12 # Show only the lines with "Open" or "Online" on it but no those containing 12
-D Comma separated list of databases (key sensitive) to show -- only the services related to these DBs will be shown:
$ ./rac-status.sh -D prod # Show only the "prod" database
$ ./rac-status.sh -D prod1,prod2,prod3 # Show only the prod1, prod2 and prod3 databases
-S Comma separated list of services (key sensitive) to show -- default is we show all the services:
$ ./rac-status.sh -D prod -S svc1,svc4 # Show only the svc1 and svc4 services
-c Column to sort by, please have a look at "Sort the database output" in http://bit.ly/2MFkzDw for more details on this -c option
-o Specify a file to save the crsctl commands output
$ ./rac-status.sh -o /tmp/rac-status_output.log
-f A file to use as input file (one generated by the -o option for example)
$ ./rac-status.sh -f /tmp/rac-status_output.log
-e Do not use olr.loc to set the ASM environment but relies on the current environment
Set USE_ORAENV="NO" on top of the script to have a permanent -e option
-L Do not try to shorten the host names, show the entire host names
-r Reverse the colors (useful for clear terminal backgrounds)
-u Shows the Uncolored output (no colors); set WITH_COLORS="NO" on top of the script to have it permanently
-k Shows the ADVM devices on the same line as the ACFS FS (handy to remount some FS), default is ${ADVM_DEV}
-K Do not show the ACFS FS nor the ADVM devices, default is ${HIDE_DEV}
-w Shows a yellow background when a resource has been restarted less than the number of hours in parameter (default is ${DIFF_HOURS})
h for hours (default) d for day, w for week, m for month and y for year can be used to specify the delay:
$ ./rac-status.sh -w 24 # 24 hours
$ ./rac-status.sh -w 24h # 24 hours
$ ./rac-status.sh -w 2d # 2 days
$ ./rac-status.sh -w 3m # 3 months
-V Shows the version of the script
-h Shows this help
Note: the options are cumulative and can be combined with a "the last one wins" behavior :
$ $0 -a -l # Show everything but the listeners (-a will force show everything then -l will hide the listeners)
$ $0 -n -d # Show only the databases (-n will force hide everything then -d with show the databases)
Experiment and enjoy !
END
exit 123
}
#
# Options
#
while getopts "andpslLhg:v:o:f:eruw:c:tkKVD:S:C:" OPT; do
case ${OPT} in
a) SHOW_DB="YES"; SHOW_LSNR="YES"; SHOW_SVC="YES"; SHOW_TECH="YES"; SHOW_PDB="YES" ;;
n) SHOW_DB="NO" ; SHOW_LSNR="NO" ; SHOW_SVC="NO" ; SHOW_TECH="NO" ; SHOW_PDB="NO" ;;
d) if [[ "${SHOW_DB}" == "YES" ]]; then SHOW_DB="NO"; else SHOW_DB="YES"; fi ;;
p) if [[ "${SHOW_PDB}" == "YES" ]]; then SHOW_PDB="NO"; else SHOW_PDB="YES"; fi ;;
s) if [[ "${SHOW_SVC}" == "YES" ]]; then SHOW_SVC="NO"; else SHOW_SVC="YES"; fi ;;
l) if [[ "${SHOW_LSNR}" == "YES" ]]; then SHOW_LSNR="NO"; else SHOW_LSNR="YES"; fi ;;
t) if [[ "${SHOW_TECH}" == "YES" ]]; then SHOW_TECH="NO"; else SHOW_TECH="YES"; fi ;;
D) LISTDB="${OPTARG}" ;;
S) LISTSVC="${OPTARG}" ;;
L) LONG_NAMES="YES" ;;
g) GREP="${OPTARG}" ;;
c) SORT_BY="${OPTARG}" ;;
v) UNGREP="${OPTARG}" ;;
f) FILE="${OPTARG}" ;;
o) OUT="${OPTARG}" ;;
e) USE_ORAENV="NO" ;;
r) REVERSE="YES" ;;
w) DIFF_HOURS="${OPTARG}" ;;
u) WITH_COLORS="NO" ;;
k) ADVM_DEV="True" ;;
K) HIDE_DEV="True" ;;
C) P_CLUSTER="${OPTARG}"; P_CLUSTER_L="${P_CLUSTER,,}" ;;
V) show_version; exit 567 ;;
h) usage ;;
\?) echo "Invalid option: -${OPTARG}" >&2; usage ;;
esac
done
#
# Manage the diff hours depending on the unit in the -w option
#
DIFF_HOURS_UNIT=${DIFF_HOURS: -1}
#
if [[ ! "${DIFF_HOURS_UNIT}" =~ [0-9] ]]; then
HOURS=`echo ${DIFF_HOURS} | sed s'/.$//'`
case ${DIFF_HOURS_UNIT} in
h) NB_HOURS=1 ;;
d) NB_HOURS=24 ;;
w) NB_HOURS=$((24*7)) ;;
m) NB_HOURS=$((24*7*31)) ;;
y) NB_HOURS=$((24*7*31*365)) ;;
esac
DIFF_HOURS=$(($HOURS * $NB_HOURS))
else
DIFF_HOURS_UNIT="h"
HOURS="${DIFF_HOURS}"
fi
#
# If we dont show the DB we dont need to sort
#
if [[ "${SHOW_DB}" == "NO" ]]; then
SORT_BY=""
fi
#
# Check that the input file is here if specified
#
if [[ "${REVERSE}" == "YES" ]]; then
WHITE="30m" ; # Black
fi
if [ -n "$FILE" ]; then # Input file specified, we wont run any crsctl command and rely on the file as input
if [ ! -f ${FILE} ]; then
printf "\n\t\033[1;31m%s\033[m\n\n" "Cannot find the ${FILE} input file; cannot continue"
exit 222
else # we use $FILE as input
printf "\n\t\033[1;34m%s\033[m\n\n" "Proceeding with the ${FILE} file as input file"
fi
fi
if [[ -z "$FILE" ]]; then # This is not needed when using an input file
if [[ "${USE_ORAENV}" == "YES" ]]; then
#
# Set the ASM env to be able to use crsctl commands
#
if [[ -f "${OLR}" ]]; then
export ORACLE_HOME=$(cat "${OLR}" | grep "^crs_home" | awk -F "=" '{print $2}')
export ORACLE_BASE=$(${ORACLE_HOME}/bin/orabase)
export PATH="${PATH}:${ORACLE_HOME}/bin"
else
ORACLE_SID=$(ps -ef | grep pmon | grep asm | ${AWK} '{print $NF}' | sed s'/asm_pmon_//' | egrep "^[+]")
if [[ -f "${ORATAB}" ]]; then
grep ^${ORACLE_SID} ${ORATAB} > /dev/null 2>&1
if [ $? -ne 0 ]; then
printf "\n\t\033[1;31m%s\033[m\n\n" "Cannot find an entry for ${ORACLE_SID} in ${ORATAB}. You can consider using the -e option or you may suffer from https://unknowndba.blogspot.com/2019/01/lost-entries-in-oratab-after-gi-122.html; cannot continue at this point."
exit 888
fi
fi
export ORAENV_ASK=NO
. oraenv > /dev/null 2>&1
fi
fi
if ! type crsctl > /dev/null 2>&1; then
printf "\n\t\033[1;31m%s\033[m\n\n" "Cannot find crsctl, cannot continue, please check if oraenv works or set your environment manually and use the -e option." ;
exit 777
fi
#
# List of the nodes of the cluster
# Try to find if there is "db" or a custom cluster name (option -C) in the hostname
# If yes we can delete the common "<clustername>" pattern from the hosts for visibility
#
SHORT_NAMES="NO"
if [[ ($(olsnodes | head -1 | sed s'/,.*$//g' | tr '[:upper:]' '[:lower:]') == *"db"* || $(olsnodes | head -1 | sed s'/,.*$//g' | tr '[:upper:]' '[:lower:]') == *"${P_CLUSTER_L}"*) && "${LONG_NAMES}" == "NO" ]]; then
if [[ -n "${P_CLUSTER}" ]]; then # We have a custom cluster name
NODES=$(olsnodes | sed s"/^.*${P_CLUSTER}//g" | ${AWK} '{if (NR<2){txt=$0} else{txt=txt","$0}} END {print txt}')
CLUSTER_NAME="${P_CLUSTER}"
else
NODES=$(olsnodes | sed s'/^.*db/db/g' | ${AWK} '{if (NR<2){txt=$0} else{txt=txt","$0}} END {print txt}')
# CLUSTER_NAME=$(olsnodes | head -1 | sed s'/db.*$//g')
# Actually we need the first part of the node name which maybe different than the cluster name; cluster can be "crs19" and nodes "dbproddb01, dbproddb02, etc..."
# We then need "dbprod" here to shorten the names and not "crs19:
CLUSTER_NAME=$(olsnodes | head -1 | rev | sed -E 's/.*bd(.)/\1/' | rev)
fi
SHORT_NAMES="YES"
else
NODES=$(olsnodes | ${AWK} '{if (NR<2){txt=$0} else{txt=txt","$0}} END {print txt}')
CLUSTER_NAME=$(olsnodes -c)
fi
NAME_OF_THE_CLUSTER=$(olsnodes -c)
# if oracle restart, olsnodes is here but returns nothing, we then set the NODES with the current hostname
if [[ -z "${NODES}" ]]; then
NODES=$(hostname -s)
fi
if [[ "${WITH_COLORS}" == "YES" ]]; then
COLOR_FOR_CLUSTER="\e[1;"${TEAL}
END_COLOR_FOR_CLUSTER="\e[m"
else
COLOR_FOR_CLUSTER=""
END_COLOR_FOR_CLUSTER=""
fi
printf "\n\t%s"${COLOR_FOR_CLUSTER}"%s${END_COLOR_FOR_CLUSTER}" "Cluster " "${NAME_OF_THE_CLUSTER}"
#
# Show the Exadata model if possible (if this cluster is an Exadata)
#
if [[ -f "${DBMACHINE}" ]] && [[ -r "${DBMACHINE}" ]]; then
MODEL=$(grep -i MACHINETYPES ${DBMACHINE} | sed -e s':</*MACHINETYPES>::g' -e s'/^ *//' -e s'/ *$//')
printf "%s"${COLOR_FOR_CLUSTER}"%s${END_COLOR_FOR_CLUSTER}" " is a " "$MODEL"
fi
#
# Check the status of the cluster to show an alert if it is not NORMAL
#
CLUSTER_STATUS=$(crsctl query crs activeversion -f > /dev/null && (crsctl query crs activeversion -f | sed s'/^.*The cluster upgrade state is \[//' | sed s'/\].*$//') || echo "")
if [[ "${WITH_COLORS}" == "YES" ]]; then
if [[ "${CLUSTER_STATUS}" == "NORMAL" ]]; then
COLOR_FOR_CLUSTER="\e[1;"${GREEN}
else
COLOR_FOR_CLUSTER="\e[1;${REDBACK}"
fi
else
COLOR_FOR_CLUSTER=""
fi
if [[ -n "${CLUSTER_STATUS}" ]]; then
printf "%s"${COLOR_FOR_CLUSTER}"%s${END_COLOR_FOR_CLUSTER}%s" " (upgrade state is " "${CLUSTER_STATUS}" ")"
fi
printf "\n\n"
#
# Get the info we want
#
cat /dev/null > "${TMP}"
if [[ -n "${LISTDB}" ]]; then # A list of DB is specified with the -D option
for X in $(echo "${LISTDB}" | sed s'/,/ /g'); do
[[ -n "${DBCRSFILTER}" ]] && DBCRSFILTER="${DBCRSFILTER} or"
DBCRSFILTER="${DBCRSFILTER} (NAME = ora.${X}.db)"
PDBCRSFILTER="${DBCRSFILTER} (NAME = ora.${X}.db)"
done
DBCRSFILTER="(TYPE = ora.database.type) AND ${DBCRSFILTER}"
PDBCRSFILTER="(TYPE = ora.pdb.type) AND ${DBCRSFILTER}"
else # No specific Db list specified
DBCRSFILTER="TYPE = ora.database.type"
PDBCRSFILTER="TYPE = ora.pdb.type"
fi
# Use of attributes with the -attr option which is significantly faster
GENATSERVER=$(for N in $(olsnodes); do printf "GEN_USR_ORA_INST_NAME@SERVERNAME(%s)," "${N}"; done) # For DBs
ENABLEDATSERVER=$(for N in $(olsnodes); do printf "ENABLED@SERVERNAME(%s)," "${N}"; done) # For PDBs and services
DBATTRP="NAME,TYPE,ACL,ORACLE_HOME,DATABASE_TYPE,ROLE,ENABLED,GEN_USR_ORA_INST_NAME,${GENATSERVER}" # DB crsctl -p
DBATTRV="NAME,TYPE,LAST_SERVER,STATE,TARGET,USR_ORA_OPEN_MODE,LAST_RESTART,LAST_STATE_CHANGE,STATE_DETAILS" # DB crsctl -v
PDBATTRP="NAME,TYPE,ACL,PDB_NAME,ENABLED,${ENABLEDATSERVER}" # PDB crsctl -p
PDBATTRV="NAME,TYPE,LAST_SERVER,STATE,TARGET,LAST_RESTART,LAST_STATE_CHANGE,STATE_DETAILS" # PDB crsctl -v
LSNATTRP="NAME,TYPE,ACL,ENABLED,ENDPOINTS,${ENABLEDATSERVER}" # Listeners crsctl -p
LSNATTRV="NAME,TYPE,LAST_SERVER,STATE,TARGET,LAST_RESTART,LAST_STATE_CHANGE" # Listeners crsctl -v
SVCATTRP="NAME,TYPE,ACL,ENABLED,ROLE,PLUGGABLE_DATABASE,${ENABLEDATSERVER}" # Services crsctl -p
SVCATTRV="NAME,TYPE,LAST_SERVER,STATE,TARGET,LAST_RESTART,LAST_STATE_CHANGE" # Services crsctl -v
TECHATTRP="NAME,TYPE,ACL,ENABLED,VOLUME_DEVICE,USR_ORA_VIP,${ENABLEDATSERVER}" # Tech crsctl -p
TECHATTRV="NAME,TYPE,LAST_SERVER,STATE,TARGET,LAST_RESTART,LAST_STATE_CHANGE" # Tech crsctl -v
if [[ "${SHOW_DB}" == "YES" ]]; then
crsctl stat res -p -w "${DBCRSFILTER}" -attr "${DBATTRP}" | grep -v "^CRS-" >> "${TMP}"
crsctl stat res -v -w "${DBCRSFILTER}" -attr "${DBATTRV}" | grep -v "^CRS-" >> "${TMP}"
fi
if [[ "${SHOW_PDB}" == "YES" ]]; then
crsctl stat res -p -w "${PDBCRSFILTER}" -attr "${PDBATTRP}" | grep -v "^CRS-" >> "${TMP}"
crsctl stat res -v -w "${PDBCRSFILTER}" -attr "${PDBATTRV}" | grep -v "^CRS-" >> "${TMP}"
fi
if [[ "${SHOW_LSNR}" == "YES" ]]; then
crsctl stat res -v -w "TYPE co listener" -attr "${LSNATTRV}" | grep -v "^CRS-" >> "${TMP}"
crsctl stat res -p -w "TYPE co listener" -attr "${LSNATTRP}" | grep -v "^CRS-" >> "${TMP}"
fi
if [[ "${SHOW_SVC}" == "YES" ]]; then
crsctl stat res -v -w "TYPE = ora.service.type" -attr "${SVCATTRV}" | grep -v "^CRS-" >> "${TMP}"
crsctl stat res -p -w "TYPE = ora.service.type" -attr "${SVCATTRP}" | grep -v "^CRS-" >> "${TMP}"
fi
if [[ "${SHOW_TECH}" == "YES" ]]; then
crsctl stat res -v -w "((TYPE != ora.database.type) AND (TYPE != ora.listener.type) AND (TYPE != ora.scan_listener.type) AND (TYPE != ora.service.type) AND (TYPE != ora.leaf_listener.type) AND (TYPE != ora.asm_listener.type))" -attr "${TECHATTRV}" | grep -v "^CRS-" >> "${TMP}"
crsctl stat res -p -w "((TYPE != ora.database.type) AND (TYPE != ora.listener.type) AND (TYPE != ora.scan_listener.type) AND (TYPE != ora.service.type) AND (TYPE != ora.leaf_listener.type) AND (TYPE != ora.asm_listener.type))" -attr "${TECHATTRP}" | grep -v "^CRS-" >> "${TMP}"
fi
# Easiest way to manage the different versions of crsctl outputs
awk '{if ($1 ~ /^NAME=/) {print "BREAK_HERE"; print $0} else {print $0}}' "${TMP}" > "${TMP2}"
cp "${TMP2}" "${TMP}"
if [[ "${SHORT_NAMES}" == "YES" ]]; then
# "${SED}" -i "s/$CLUSTER_NAME//" "${TMP}"
"${SED}" -i "/^NAME=/! s/${CLUSTER_NAME}//g" "${TMP}"
fi
NB_NODES=$(olsnodes | wc -l)
else # If we use an input file
cp "${FILE}" "${TMP}"
NODES=$(grep LAST_SERVER $TMP | awk -F"=" '{print $2}' | sort | uniq | grep -v "^$" | awk '{if (NR<2){txt=$0} else{txt=txt","$0}} END {print txt}')
NB_NODES=$(grep LAST_SERVER $TMP | awk -F"=" '{print $2}' | sort | uniq | wc -l)
fi # End if [ -z "$FILE" ]
#
# Define the offset to apply to the status column depending on the number of nodes to make the tables visible for big implementations
#
if [[ "${COL_NODE_OFFSET}" == "99" ]]; then
COL_NODE_OFFSET=3 ;
if [ "$NB_NODES" -eq "2" ]; then COL_NODE_OFFSET=6 ; fi ;
if [ "$NB_NODES" -eq "4" ]; then COL_NODE_OFFSET=5 ; fi ;
if [ "$NB_NODES" -gt "4" ]; then COL_NODE_OFFSET=3 ; fi ;
fi
"${AWK}" -v NODES="${NODES}" \
-v col_node_offset="${COL_NODE_OFFSET}" \
-v REVERSE="${REVERSE}" \
-v DIFF_HOURS="${DIFF_HOURS}" \
-v HOURS="${HOURS}" \
-v DIFF_HOURS_UNIT="${DIFF_HOURS_UNIT}" \
-v ADVM_DEVICES="${ADVM_DEV}" \
-v HIDE_DEVICES="${HIDE_DEV}" \
-v LISTSVC="${LISTSVC}" \
-v SHOW_PDB="${SHOW_PDB}" \
-v SHOW_DB="${SHOW_DB}" \
-v SHOW_SVC="${SHOW_SVC}" \
-v SHOW_LSNR="${SHOW_LSNR}" \
-v SHOW_TECH="${SHOW_TECH}" \
'BEGIN\
{ FS = "=" ;
n = split(NODES, nodes, ",") ; # Make a table with the nodes of the cluster
# some colors
COLOR_BEGIN = "\033[1;" ;
COLOR_END = "\033[0m" ;
RED = "31m" ;
GREEN = "32m" ;
YELLOW = "33m" ;
BLUE = "34m" ;
PURPLE = "35m" ;
TEAL = "36m" ;
WHITE = "37m" ;
WITH_BACK = "43m" ; # Yellow background
WITH_BACK2 = "44m" ; # Blue background
WITH_BACK2 = "41m" ; # Red background
COLOR_PRIMARY = WHITE ;
COLOR_STANDBY = BLUE ;
if (REVERSE == "YES"){
WHITE = "30m" ; # Black
TEAL = "34m" ; # Blue
COLOR_BEGIN = "\033[2;" ; # Bold
}
UNKNOWN = "-" ; # Something to print when the status is unknown
DISABLED = "x" ; # Something disabled
# Default columns size
COL_NODE = 0 ;
COL_NODE_OFFSET = col_node_offset * 2 ; # Defined on top the script, have a look for explanations on this
COL_DB = 12 ;
COL_VER = 15 ;
COL_TYPE = 14 ;
COL_OH = 24 ; # to print the ORACLE_HOMEs
COL_PDB = COL_TYPE-1 ; # PDB right of the services
COL_OWNER = 6 ; # to print owner:group
COL_GROUP = 3 ; # to print owner:group
COL_DEFAULT = BLUE ; # for the "-"
RECENT_RESTARTED = 0 ; # To show a legend if we found a recent restarted
STATUS_ISSUE = 0 ; # To show a legend if we found an issue with the status
SERVICE_DISABLED = 0 ; # To show a legend of a service is disabled
COL_SEP = "|" ; # Column separator
nbsvcshow = split(LISTSVC, temp, ",") ; # Array of services to show, if none, we show everything
for (i=0;i<=nbsvcshow; i++){ svcshow[temp[i]]=temp[i]; } # An associative array for easy search with for in
} # End BEGIN
#
# A function to center the outputs with colors
#
function center(str, n, color, sep) {
right = int((n - length(str)) / 2) ;
left = n - length(str) - right ;
return sprintf(COLOR_BEGIN color "%" left "s%s%" right "s" COLOR_END sep, "", str, "" ) ;
}
#
# Colorize a string
#
function in_color(str, color) {
return sprintf(COLOR_BEGIN color "%s" COLOR_END, str) ;
}
#
# Get a date in format MM/DD/YYYY HH24:MI:SS or epoch sec and return the rounded number hours difference between this date and the current date
#
function diff_hours(a_date) {
sub(/ *$/, "", a_date) ;
if ((a_date == "NEVER") || (a_date == "") || (a_date == 0)) {
return 999999999999 ;
} else {
if (a_date ~ /^[0-9]+$/) { # This is an epoch sec
return sprintf("%d", ((systime()-a_date)/(60*60))) ;
} else { # This is a date in format MM/DD/YYYY HH24:MI:SS
split(a_date, temp, /[\/ :]/) ;
return sprintf("%d", (systime()-mktime(temp[3]" "temp[1]" "temp[2]" "temp[4]" "temp[5]" "temp[6]))/(60*60)) ;
delete temp ;
}
}
}
#
# Get a string and return it with a nice case: first character in upper case ad the others in lower case (ABCD => Abcd)
#
function nice_case(str) {
return sprintf("%s", toupper(substr(str,1,1)) tolower(substr(str,2,length(str)))) ;
}
#
# Print a legend for the recent restarted instances, listeners and services
#
function print_legend_recent_restarted() {
if (RECENT_RESTARTED == 1) {
printf("%s", " ") ;
printf(COLOR_BEGIN WITH_BACK "%-3s" COLOR_END, " ") ;
if (DIFF_HOURS_UNIT == "h") { UNIT="hour" }
if (DIFF_HOURS_UNIT == "d") { UNIT="day" }
if (DIFF_HOURS_UNIT == "w") { UNIT="week" }
if (DIFF_HOURS_UNIT == "m") { UNIT="month" }
if (DIFF_HOURS_UNIT == "y") { UNIT="year" }
if (HOURS > 1) { UNIT=UNIT"s" }
printf(COLOR_BEGIN WHITE " %-s\n " COLOR_END, ": Has been restarted less than "HOURS" "UNIT" ago");
}
}
#
# Print a legend if we found an issue in the status (STATUS != TARGET)
#
function print_legend_status_issue() {
if (STATUS_ISSUE == 1) {
printf(COLOR_BEGIN WITH_BACK2 "%-3s" COLOR_END, " ") ;
printf(COLOR_BEGIN WHITE " %-s\n " COLOR_END, ": STATUS and TARGET are different") ;
}
}
#
# Print a legend when something is disabled
#
function print_legend_disabled(a_variable, a_text) {
if (a_variable == 1) {
printf("%s", " ") ;
printf("%s", center(DISABLED, 3, RED)) ;
printf("%-s\n", in_color(" : "a_text" is disabled", WHITE)) ;
}
}
#
# A function that just print a "---" white line
#
function print_a_line(size) {
if ( ! size) {
size = COL_DB+COL_VER+(COL_NODE*n)+COL_TYPE+n+3 ;
}
printf("%s", COLOR_BEGIN WHITE) ;
for (k=1; k<=size; k++) {printf("%s", "-");} ; # n = number of nodes
printf("%s", COLOR_END"\n") ;
}
#
# Set colors depending on the recently restarted date and dbstatus and dbtarget
#
function set_color_status(i_db, i_node, i_status, i_target) {
if (i_status == i_target) {
COL_OPEN=GREEN ;
COL_READONLY=WHITE ;
COL_SHUT=YELLOW ;
COL_OTHER=WHITE ;
}
if (i_status != i_target) {
COL_OPEN=WITH_BACK2 ;
COL_READONLY=WITH_BACK2 ;
COL_SHUT=WITH_BACK2 ;
COL_OTHER=WITH_BACK2 ;
STATUS_ISSUE=1 ;
}
if ((started[i_db,i_node]+0 < DIFF_HOURS+0) && (started[i_db,i_node])) {
COL_OPEN=WITH_BACK ;
COL_READONLY=WITH_BACK ;
COL_SHUT=WITH_BACK ;
COL_OTHER=WITH_BACK ;
RECENT_RESTARTED=1 ;
}
}
{ # Fill 2 tables with the OH and the version from "crsctl stat res -p -w "TYPE = ora.database.type""
if ($1 == "NAME") {
sub("^ora.", "", $2) ;
sub(/\(.*$/, "", $2) ; # Remove the consumer group
type = "TECH" ;
if ($2 ~ /\.db$/) { # Databases
type = "DB" ;
sub(".db$", "", $2) ;
}
if ($2 ~ /\.pdb$/) { # PDBs
type = "PDB" ;
sub(".pdb$", "", $2) ;
DBPDB = $2 ;
}
if ($2 ~ /\.lsnr/) { # Listeners
sub(".lsnr$", "", $2) ;
tab_lsnr[$2] = $2 ;
type = "LISTENER" ;
}
if ($2 ~ /\.svc/) { # Services
sub(".svc$", "", $2) ;
dbandservice=$2
service=$2 ;
svc_db=$2
sub(/^[^.]*\./, "", service) ; # Remove the DB name
sub(/\..*$/, "", svc_db) ; # DB name only
if (oh[svc_db]){ # We ignore the services not related to an already found DB (see -D option)
if (nbsvcshow > 0){
if (service in svcshow){ # If we want specific services (see -S option)
tab_svc[dbandservice]=dbandservice ;
}
} else {
tab_svc[dbandservice]=dbandservice ;
}
if (length(service) > COL_VER-1) { # To adapt the column size
COL_VER = length(service) +1 ;
}
} else {
next ;
}
type = "SERVICE" ;
}
DB=$2 ;
split($2, temp, ".") ;
if (length(temp[1]) > COL_DB-1) { # To adapt the 1st column size
COL_DB = length(temp[1]) +1 ;
}
if (type == "TECH") {
if ($2 ~ /\./) {
sub(/\.[[:alnum:]]*$/, "", $2) ;
# We put the type before the name to sort it by type easily later
type_name = temp[length(temp)]"."$2 ;
tab_tech[$2] = type_name ;
if (length($2) > COL_VER-1) {
COL_VER = length($2) + 1 ;
}
} else {
tab_tech[temp[1]] = temp[1] ;
}
}
delete temp ;
getline; getline ;
if ($1 == "ACL") { # crsctl stat res -p output
if (type == "DB") {
# Get the owner and the group
match($2, /owner:([[:alnum:]]*):.*/, OWNER) ;
match($2, /^.*pgrp:([[:alnum:]]*):.*/, GROUP) ;
while (getline)
{
if ($1 == "ORACLE_HOME") {
OH = $2 ;
match($2, /[1-9][0-9]\.[0-9]\.?[0-9]?\.?[0-9]?/) ; # Grab the version from the OH path
VERSION = substr($2,RSTART,RLENGTH) ;
}
if ($1 == "DATABASE_TYPE") { # RAC / RACOneNode / Single Instance are expected here
dbtype[DB] = $2 ;
}
if ($1 == "ROLE") { # Primary / Standby expected here
role[DB] = $2 ;
}
if ($1 == "ENABLED") { # Instance is enabled (1) or disabled (0)
enabled = $2 ; # Save it for later
}
if ($1 == "GEN_USR_ORA_INST_NAME") {
instance = $2 ;
while (getline) {
if (($1 ~ /^GEN_USR_ORA_INST_NAME@SERVERNAME/) && ($2 == instance)) {
sub("GEN_USR_ORA_INST_NAME@SERVERNAME[(]", "", $1) ;
sub(")", "", $1) ;
is_enabled[DB,$1] = enabled ;
break ;
}
if ($0 ~ /^$/) {
break ;
}
}
}
if ($0 ~ /^$/) {
version[DB] = VERSION ;
oh[DB] = OH ;
if (!(OH in oh_list)) {
oh_ref++ ;
oh_list[OH] = oh_ref ;
o_list[OH] = OWNER[1] ;
g_list[OH] = GROUP[1] ;
if (length(OH) > COL_OH) { COL_OH = length(OH) ; }
if (length(OWNER[1]) > COL_OWNER) { COL_OWNER = length(OWNER[1]) ; }
if (length(GROUP[1]) > COL_GROUP) { COL_GROUP = length(GROUP[1]) ; }
}
break ;
}
}
} # End if (type == "DB")
if (type == "PDB") {
while(getline) {
if ($1 == "PDB_NAME") {
PDB = $2 ;
split(DBPDB, temppdb, ".") ; # Here, DB = dbname.pdbname
pdb[temppdb[1]][temppdb[2]] = PDB ;
delete temppdb ;
}
if ($1 == "ENABLED") { # Service is enabled (1) or disabled (0)
for (i=1; i<=n; i++) { # n = number of nodes
is_enabled[DB,nodes[i]]= $2 ;
}
while(getline) {
if ($1 ~ /ENABLED@SERVERNAME/ ) {
sub("ENABLED@SERVERNAME[(]", "", $1) ;
sub(")", "", $1) ;
is_enabled[DB,$1] = $2 ;
} else {
break ;
}
}
}
if ($0 ~ /^$/) {
break ;
}
}
} # End if (type == "PDB")
if (type == "SERVICE") {
while(getline) {
if ($1 == "ENABLED") { # Service is enabled (1) or disabled (0)
for (i=1; i<=n; i++) { # n = number of nodes
is_enabled[DB,nodes[i]]= $2 ;
}
while(getline) {
if ($1 ~ /ENABLED@SERVERNAME/ ) {
sub("ENABLED@SERVERNAME[(]", "", $1) ;
sub(")", "", $1) ;
is_enabled[DB,$1] = $2 ;
} else {
break ;
}
}
}
if ($1 == "ROLE") { # Service type (primary / standby)
tab_svc_type[service]=$2 ;
}
if ($1 == "PLUGGABLE_DATABASE") {
tab_pdb[service] = $2 ;
if (length($2) > COL_PDB) { COL_PDB = length($2) ; }
}
if ($0 ~ /^$/) {
break ;
}
}
} # End if (type == "SERVICE")
#if (DB in tab_lsnr == 1)
if (type == "LISTENER") {
while(getline) {
if ($1 == "ENABLED") { # Listener is enabled (1) or disabled (0)
for (i=1; i<=n; i++) { # n = number of nodes
is_enabled[DB,nodes[i]]= $2 ;
}
while(getline) {
if ($1 ~ /ENABLED@SERVERNAME/ ) {
sub("ENABLED@SERVERNAME[(]", "", $1) ;
sub(")", "", $1) ;
is_enabled[DB,$1] = $2 ;
} else {
break ;
}
}
}
if ($1 == "ENDPOINTS") {
port[DB] = $2 ;
break ;
}
}
} # End if (type == LISTENER)
if (type == "TECH") {
while (getline) {
if ($1 == "ENABLED") {
for (i=1; i<=n; i++) { # n = number of nodes
is_enabled[DB,nodes[i]]= $2 ;
}
while(getline) {
if ($1 ~ /ENABLED@SERVERNAME/ ) {
sub("ENABLED@SERVERNAME[(]", "", $1) ;
sub(")", "", $1) ;
is_enabled[DB,$1] = $2 ;
} else {
break ;
}
}
}
if ($1 == "VOLUME_DEVICE"){
tempdb=tolower(DB) ;
sub(/^[[:alnum:]_]*\./, "", tempdb) ;
sub(/\.[[:alnum:]_]*$/, "", tempdb) ;
advm_device[tempdb] = tolower($2) ;
}
if ($1 == "USR_ORA_VIP"){
vip[DB]=$2 ;
}
if ($0 ~ /^$/) {
break ;
}
}
} # End if (type == TECH)
} # End if ($1 == "ACL")
if ($1 == "LAST_SERVER") { # crsctl stat res -v output
NB = 0 ; # Number of instances we went through
SERVER = $2 ;
if (length(SERVER) > COL_NODE) {
COL_NODE = length(SERVER) + COL_NODE_OFFSET ;
}
while (getline) {
if ($1 == "LAST_SERVER") { SERVER = $2 ;}
if ($1 == "STATE") { gsub(" on .*$", "", $2) ;
status[DB,SERVER] = $2 ;
if (length(status[DB,SERVER]) > COL_NODE) { COL_NODE = length(status[DB,SERVER]) + COL_NODE_OFFSET;}
}
if ($1 == "TARGET") { target[DB,SERVER]=$2 ;}
# We use USR_ORA_OPEN_MODE instead of STATE and TARGET for the databases
if ($1 == "USR_ORA_OPEN_MODE") { if (tolower($2) ~ "mount") {target[DB,SERVER]="Mounted" ;}
if (tolower($2) ~ "read only") {target[DB,SERVER]="Readonly" ;}
if (tolower($2) ~ "open") {target[DB,SERVER]="Open" ;}
}
if (($1 == "LAST_RESTART") || ($1 == "LAST_STATE_CHANGE")) {
if (type == "PDB") { l_index = DBPDB} else { l_index = DB }
if (started[l_index,SERVER] > diff_hours($2" "$3) || started[l_index,SERVER] == "") {started[l_index,SERVER]=diff_hours($2" "$3);}
}
if ($1 == "STATE_DETAILS") { NB++ ; # Number of instances we came through
if (DB ~ /acfs/) { sub ("mounted on ", "", $2) ;
tempdb=tolower(DB) ;
sub(/^[[:alnum:]_]*\./, "", tempdb) ;
sub(/\.[[:alnum:]_]*$/, "", tempdb) ;
acfs_mount[tempdb] = $2 ;
if (length($2) > COL_ACFS) {COL_ACFS = length($2)}
}
sub("STATE_DETAILS=", "", $0) ;
sub(",HOME=.*$", "", $0) ; # Manage the 12cR2 new feature, check 20170606 for more details
sub("),.*$", ")", $0) ; # To make clear multi status like "Mounted (Closed),Readonly,Open Initiated"
if (tolower($0) ~ "instance shutdown") { status_details[DB,SERVER] = "Shutdown" ; } else
if (tolower($0) ~ "readonly") { status_details[DB,SERVER] = "Readonly" ; } else
if (tolower($0) ~ "abnormal termination") { status_details[DB,SERVER] = "Abnorm Term" ; } else
if (tolower($0) ~ "fast-start failover") { status_details[DB,SERVER] = "FastFailover" ; } else
if (tolower($0) ~ "mount") { status_details[DB,SERVER] = "Mounted" ; } else
if (tolower($0) ~ "running from old") { status_details[DB,SERVER] = "Open from old OH"; } else
{ if ($0 != "") {status_details[DB,SERVER] = $0}; }
if ((length(status_details[DB,SERVER]) > COL_NODE) && (type != "TECH")) {
COL_NODE = length(status_details[DB,SERVER]) + COL_NODE_OFFSET ;
}
} # End of $1 == "STATE_DETAILS"
if ($1 == "BREAK_HERE") { break;}
}
} # End of if ($1 == LAST_SERVER)
} # End of if ($1 ~ /^NAME/)
} # End of main awk section
END { #
# Tech stuff
#
if ((length(tab_tech) > 0) && (SHOW_TECH == "YES")) { # We print only if we have something to show
# A header for the listeners
printf("%s", center("Type" , COL_DB, WHITE, COL_SEP)) ;
printf("%s", center("Name" , COL_VER+1, WHITE, COL_SEP)) ;
n=asort(nodes) ; # sort array nodes
for (i = 1; i <= n; i++) {