FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Oracle-Database-Scripts/RAC/rac_main.sql at main · co360/Oracle-Database-Scripts · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
co360
/
Oracle-Database-Scripts
Public
forked from
fatdba/Oracle-Database-Scripts
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Oracle-Database-Scripts
/
RAC
/
rac_main.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
172 lines (82 loc) · 2.7 KB
Breadcrumbs
Oracle-Database-Scripts
/
RAC
/
rac_main.sql
Copy path
File metadata and controls
172 lines (82 loc) · 2.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
--
enable and disable autorestart of CRS
Run
as
root user
$GRID_HOME
/
bin
/
crsctl enable crs
CRS
-
4622
: Oracle High Availability Services autostart is enabled.
$GRID_HOME
/
bin
/
crsctl disable crs
CRS
-
4621
: Oracle High Availability Services autostart is disabled.
--
find cluster name
$GRID_HOME
/
bin
/
cemutlo
-
n
or
$GRID_HOME
/
bin
/
olsnodes
-
c
--
stop and start CRS
--
stop crs ( run from root)
$GRID_HOME
/
bin
/
crsctl stop crs
--
start crs( run from root)
$GRID_HOME
/
bin
/
crsctl start crs
--
location of OCR and Voting Disk
Find voting disk location
$GRID_HOME
/
bin
/
crsctl query css votedisk
Find OCR location.
$GRID_HOME
/
bin
/
ocrcheck
--
check cluster coponent status
$GRID_HOME
/
bin
/
crsctl stat res
-
t
$GRID_HOME
/
bin
/
crsctl
check
crs
$GRID_HOME
/
bin
/
crsctl
check
cssd
$GRID_HOME
/
bin
/
crsctl
check
crsd
$GRID_HOME
/
bin
/
crsctl
check
evmd
--
Get cluster interconnect status
$GRID_HOME
/
bin
/
oifcfg getif
app
-
ipmp0
172
.
21
.
39
.
128
global public
loypredbib0
172
.
16
.
3
.
192
global cluster_interconnect
loypredbib1
172
.
16
.
4
.
0
global cluster_interconnect
select
NAME,IP_ADDRESS
from
v$cluster_interconnects;
NAME IP_ADDRESS
--
------------- ----------------
loypredbib0
172
.
16
.
3
.
193
loypredbib1
172
.
16
.
4
.
1
--
ocr manual backups
List down the backups of OCR
$GRID_HOME
/
bin
/
ocrconfig
-
showbackup
Take manual OCR backup
$GRID_HOME
/
bin
/
ocrconfig
-
manualbackup
--
Move voting disk to new diskgroup
$GRID_HOME
/
bin
/
crsctl replace votedisk
+
NEW_DG
Check
the status using below command
$GRID_HOME
/
bin
/
crsctl query css votedisk
--
- OLS commands
--
List of nodes in the cluster
olsnodes
--
Nodes with node number
olsnodes
-
n
--
Node with vip
olsnodes
-
i
olsnodes
-
s
-
t
--
Leaf or Hub
olsnodes
-
a
--
Getting private ip details of the local node
olsnodes
-
l
-
p
--
Get cluster name
olsnodes
-
c
--
get clster full info
$ crsctl get cluster configuration
Name : dbaclass
-
cluster
Configuration : Cluster
Class : Standalone Cluster
Type : flex
The cluster is not extended.
--
------------------------------------------------------------------------------
MEMBER CLUSTER INFORMATION
Name Version GUID Deployed Deconfigured
================================================================================
================================================================================
$ crsctl get node role status
-
all
Node
'
hostnode1
'
active role is
'
hub
'
Node
'
hostnode2
'
active role is
'
hub
'
--
get OLR info
--
OLR(ORACLE LOCAL REGISTRY)
Get current OLR location:(run
from
root only)
$GRID_HOME
/
bin
/
ocrcheck
-
local
List the OLR backups:
$GRID_HOME
/
bin
/
ocrconfig
-
local
-
showbackup
Take manual OLR backup:
$GRID_HOME
/
bin
/
ocrconfig
-
local
-
manualbackup
Back
|
FazBrowse Home
|
New Git URL