oracle11ggrid安裝指南_第1頁
oracle11ggrid安裝指南_第2頁
oracle11ggrid安裝指南_第3頁
oracle11ggrid安裝指南_第4頁
oracle11ggrid安裝指南_第5頁
已閱讀5頁,還剩36頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、oracle 11g grid 安裝指南軟件環(huán)境操作系統(tǒng):Redhat linux 6.2數據庫和集群件版本ORACLE 11204用戶組和文件系統(tǒng)配置用戶組和文件系統(tǒng)配置軟件組件用戶主組輔助組主目錄軟件目錄Grid Infragridinstalldba/oracle/grid/oracle/grid檢查必要的軟件包binutils-.2-5.11.el6 (x86_64)compat-libstdc+-33-323-69.el6 (x86_64)glibc-2.12-1.7.el6 (x86_64)ksh-*.el6 (x86_64) <= any version

2、of ksh is acceptablelibaio-0.3.107-10.el6 (x86_64)libgcc-4.4.4-13.el6 (x86_64)libstdc+-4.4.4-13.el6 (x86_64)make-3.81-19.el6 (x86_64)compat-libcap1-1.10-1 (x86_64)gcc-4.4.4-13.el6 (x86_64)gcc-c+-4.4.4-13.el6 (x86_64)glibc-devel-2.12-1.7.el6 (x86_64)libaio-devel-0.3.107-10.el6 (x86_64)libstdc+-devel-

3、4.4.4-13.el6 (x86_64)sysstat-9.0.4-11.el6 (x86_64)compat-libstdc+-33-3.2.3-69.el6 (i686)glibc-2.12-1.7.el6 (i686)glibc-devel-2.12-1.7.el6 (i686)libaio-0.3.107-10.el6 (i686)libaio-devel-0.3.107-10.el6 (i686)libgcc-4.4.4-13.el6 (i686)libstdc+-4.4.4-13.el6 (i686)libstdc+-devel-4.4.4-13.el6 (i686)elfuti

4、ls-libelf-devel-0.97網絡需求(兩節(jié)點均要執(zhí)行)每個節(jié)點一個 public IP每個節(jié)點一個 public VIP每個節(jié)點一個 private IP一個用于集群的 SCAN名稱和一個和public IP同網段的IPpublic IP,VIP 和 private IP,scan vip 寫入 /etc/hosts 文件01 node103 node1-vip7 node1-priv05 node-scan02 node204 node2-v

5、ip8 node2-priv基本參數設置(兩節(jié)點均要執(zhí)行)編輯/etc/sysctl.conf添加如下內容:vi /etc/sysctl.confkernel.shmall = 8388608kernel.shmmax =ernel.shmmni = 4096kernel.sem = 250 32000 100 128fs.file-max = 6553600fs.aio-max-nr = 1048576net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 262144ne

6、t.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048576/sbin/sysctl p編輯/etc/pam.d/login 添加如下內容:vi /etc/pam.d/loginsession required pam_limits.so編輯vi /etc/profile 添加如下內容:if /$USER = "oracle" | /$USER = "grid" ; thenif /$SHELL = "/bin/ksh" ; the

7、nulimit -p 16384ulimit -n 65536elseulimit -u 16384 -n 65536fiumask 022fi創(chuàng)建用戶,組(兩節(jié)點均要執(zhí)行)要求創(chuàng)建GRID用戶創(chuàng)建oinstall組DBA組創(chuàng)建命令groupadd -g 501 oinstallgroupadd -g 502 dbauseradd -u 501 -g oinstall -G dba gridpasswd grid用戶shell限制(兩節(jié)點均要執(zhí)行)編輯 /etc/secuAty/limits.conf添加如下內容:vi /etc/security/limits.confgrid soft np

8、roc 2047grid hard nproc 16384grid soft nofile 1024grid hard nofile 65536grid ssh信任關系設置設置前先修改ssh配置文件參數:grid用戶:nodel:grid node1$ ssh-keygen -t rsa/ 一路回車grid node1$ ssh-keygen -t dsagrid node1$ cd .sshgrid node1.ssh$ cat *pub > authorized_keysnode2:grid node2$ ssh-keygen -t rsa/ 一路回車grid node2$ ssh-

9、keygen -t dsanode1:gridnode1 .ssh$ scp authorized_keysnode2:/home/grid/.ssh/選yes 輸入busrac2 grid 用戶密碼node2:grid node2$ cd .sshgridnode2 .ssh$ cat *.pub >> authorized_keysgridnode2 .ssh$ scp authorized_keys node1:/home/grid/.ssh/驗證ssh用戶等效性node1:第一次選擇yesgrid node1 $ ssh node1 dategrid node1 $ ssh

10、 node2 dategrid node1 $ ssh node1-priv dategrid node1 $ ssh node2-priv date切換至node 2 執(zhí)行grid node2 $ ssh node1 dategrid node2 $ ssh node2 dategrid node2 $ ssh node1-priv dategrid node2 $ ssh node2-priv date/如果不需要輸入密碼,則配置成功環(huán)境變量設置node1 grid 用戶:export ORACLE_BASE=/oracle/baseexport ORACLE_HOME=/oracle/g

11、ridexport ORACLE_SID=+ASM1export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATHnode2 grid 用戶:export ORACLE_BASE=/oracle/baseexport ORACLE_HOME=/oracle/gridexport ORACLE_SID=+ASM2export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH創(chuàng)建軟件安裝目錄# mkdir -p /oracle# chown -R oracle:oinstall /oracle# chmod

12、 -R 775 /oracle安裝 Grid Infrastructurep13390677_112040_Linux-x86-64_3of7.zipunzip p13390677_112040_Linux-x86-64_3of7.zipsu - grid設置DISPLAYS境變量$ export LANG=en_US$ ./runinstaller安裝截圖出來下面安裝界面,選擇最下面的Skip software updates, 然后選next歡迎下載5Orm。括 Grid Infitruciure - Spring up Grid Wwxructure - Step 1 of 10XUon

13、!oad SuttwdTe UpH$tcsOPACL.E'dataaascMwi枷前?flftwwu UpdMr,員已匕此30gAUKHklf與Da'.wiJoad 仁口為網 rw und it * s3 ti hr st altart:cn. Stif/1 j consiit ::<f rctcitiHtnd*d upstcs to(h(t Msr5litr sysTtrti require pi e»ii cr»c<Ks h2<T 'Jpcmti (PSUr-), 41nd 白 iht r士£口中呵七,】<iud

14、 p-MCtici.:噂片fl 白n。prtt'cfpIlQrig ppi|#*lsL*s* Mx Ori:it Supfjon cr* Jenuil; 3 cjwvio歡迎下載6Jrt L-r: JoviilL'idt J . -. riv-'-ir t u n U xv,- i t uf t、g。j pc ate ?選擇第一個安裝和配置集群環(huán)境,nextOrac Ie Grid Irtfrdstructur - Setiing up Grid infrastructure - Step 2 of 9歡迎下載7Select Intdllataon OptionDATA

15、BASEIrimlEKin Opuuii小I第i也工f0上S*isct WFf 小磨 fclicnniirtQ insfaintion apiions* ln$i卻«ml -ZonfiQurt Orvle <jrid Inrrairuciijr ior£口Mqure >3r斗士Ie £rd IcFr*找決悼片 tr 立 卻OC 4*rV*rupgrade Orme Grid Infrasiruciurc or Oracle 4uioinTic Storage1 ns-laJ: Oracle Grid InSf 土 rurtur電如f Dr lyHelp

16、L.jii'.rl選擇第二個高級安裝,next一Oracle Grid Irfrastrunure Setting up Grid Irtfrastructurt itep 3 0f 9MSelect ItKtJlUtion IvPOQMLW 1gDATABASE歡迎下載81i 二 a" In r a a+,。rirforrn «full 9fld inrlYmrvctun inntilMlvn Mifth hisk Gonngurttkn.?' . A 4 lr>J lViQnT.旭沖BUM"干",AIIOwue hdVitd C

17、dfiflurulan opunm such 31 Its,nan>e ztarage th口仁/ “dm口力配 hEtworkin fit3Eibiikyr imerK4ork withiFWI; tnd mure,nk &3亡址;on erf drtclc Aurcitinit tane M&n4gtment 口門vi忙。打.HelpNext >CariHl選上添加簡體中文,nextJqpfpct Frtiihxt LngiMgnsOPACLDATABASEPtudltiET &dnqiidqiE£ekci ibemorudud 崛n mnOr

18、acle Grid JnfrasTructure - Setting up Grid Infrastructure - Step 4 of 10歡迎下載34&dg«立史 _cm/此處集群名自己取,SCAN需要和/etc/hosts中的scan ip別名一致,端口默認,不選GNS,next添加busrac2節(jié)點,并進行 ssh測試,nextOracle Grid Infrastructure - Setting up Grid Infrastructure - Step 6 of 16ORM*DATABASE% Ai 熊 tM 卜 w,r hot 盯"Tn hi m

19、必能 d M Q節(jié) H± Cild 同石stsuxwPi 1怔廣出甥“no sir in? ihdVirtual Hojtn ame-n: taJlalian C pt ionItf Orle Cd kUn刑瞳&仁川,鼾部 be±r hIeetT ird DHCP if 4nat>lEdthen tPiEMirtmFHDEtnwine ismMe 劃匚al:,- conf igurtd-fsr each Putlic MoMVir'ual hosr-om t>iD-rage AptianPuUht HosUiiflitv oCing DliK S

20、torigt";c11 ,-:rrg 白-r :二rotjPcrreqwlJiH Checks.j»r hi , ,皂CdE。” ,印加6中1 nl訃%* Ouster 亡 *哂?。“口柞。*£.,HelpJnc ±1Meml A配置網絡接口 :選對網卡類型,nextOracle Grid Infrastructure Settfnq up Grid Hfrastructure * Step 6 of 1 faCluster Knrfp iFifnrrTiAtjnriPRAGUEDATABASETrTTr嶂&0 sofTDftereI r : t

21、l lih lc n Opt io«rI,-I- ueProc j " - =iri;. j- J;: 7二工0£乳立胃口/_內留hnUf *WK TemMIwi'urr.'jf , 1.1 i nQCft Jtcaj-e"CU& L'lJ!. Sl&'iCi;Opqr訓巾g ?YSttm 42"防lr:iUli Ji.r. .山八, ij'CfjL.k _':.;$ jH: tnrylr. Iflll Prcoui.lF .n i: h小丑j 觸 Ihfi jrf af TD:

22、w fc M H! aigi d 啊 ,門二la l-'.百:M,“t廣udu便“近打情目 勿先此 Hr. rtr .4 士?。?Virtual Hostnarr e.11 Or«ie Grid Nir mg iewct .CN; ?145 bttn Jtlecled arid DMCf is er able d I h e n: tM Virtual Hostnmrre ie HHBrti"匯 Mhr conriurtd far cacti ftiblic Mo dlr| 一 Fublic bosruiFne_ _M門hMHogum*;tnadf 1nodtl&#

23、39;vlf)|ri&dw2-wlo HE Stnml。出匚括 Grid Inifas tructure - Setting up Grid Infras true lure - Step 7 0fl 6Efjeut,hJetoik triFtfatt!ORACLEDATABASEidtm 的 tut planned n$t mr tufi gicbu imtrract ho«m in me t>o k below as Public. PrMre.or i>o u o; Uft. RiMwtt iftierftcu ve uq“ by Oncie Cid 嗣小n

24、njHu抬f«r i儀承叫蜒刖工.it iherfr it ri)t man nnu : utrn-r *正??诟 wm f iruemEE.浸科 change meiTi:'Yire£ ioor.t 1 ' 2 ;nrerf *7, hjfi mt h rh 卑:id z|rt ip-nl 號 urnM 手T,叫,nMcrwaik bifrfdLc Usaqej STo-raae OruornTTi/ ij' iDl' iG £ k KiVHf fl U-附口存儲選擇:選才A ASM, next建立OCRVOTE,選擇3塊2G的

25、盤 next設置密碼:nextOracle Grid Inirastructure - Setting up Grid Infra-srrircture - Step 10 316Spetih ASM PasswordORML Gdatabase午后:”;I 三:|H"I - 1T 丁 .r I I r.: L n : - e,T, J“: M刃3的小冷,Tbt nftvOrirle Autemuic M&ragement (Oracle ihftan» requiresrt? awi SYS M(h ¥T2*M pr.此事亡5 for弁門小田阿|0m。2

26、6r亡工電HIE5M TFW YOU仃"亡事枕野piN的?!敝柒?" Mh EYSMA prMlcgefie moitflor the ASM *nnanceTht pi?fwfifJfa ur icciLinlJC_ Uciffercm pas swords for thea accounts匚:相;," NfJC lr»fq箱a二夕At£rl43 心,3.'Ie%3, nt5-i£r*tl;ag«:Y< "i.i ad* '1 J1. «if. ¥心M Me u-oi

27、clQDC1(力口 Hi陞的,?、口£,JseauRte passwordsfnhese accountft5M?NhdPFrcreqMKP Chec二 3TLi .r,.rfl i -ad-jcr心丁二?孫,Specify Pasrd !NS-SOO 11 Th 口 WMSwsrd ent吧r世d d口也 no! coMom to th* Ora:cl« rt comm fended<anctiI djlur« 也ulatioii SuppurtORACLEDATABASE午r午r午IrP a-Elcad E事門”金t專 Jpd2:rc;mt a ii m

28、en 匚1口ier寸m r TrprPrt>cuct Lin gu±ge ;L'ld PluQ 叫 i : E 就C '. ' - -,j -,| 力“ . rM*r.pi.mtLC U; yt¥t(jf叫噌 t'fiOon,3f_ Lr,;<-;,ASM QFailure kmMia朝Oceratin口 HGbe Cro口口學Inn a ll-u i oil Location二謁:iin" yt1- 皿 iPi nullC+iucce or e ot 'l;e fo-' tnmric: -ijFure

29、sziiafun Si-ppcr- orUf? i:.ijse Imeriigent PI art form Mmageffitnt Irtftrfica (JPM ITh-,1- nsurc f u i;匚r m;fu-【t笳m-門 產卜怔 cniini J, n;. jh'c戶:,u 戶"1寸匚"口二尊。n?3m尼二1怔他。ar.J -Ui* 3 n,iu ; -P-isiu4rd A? not Mft ihtitiligtrK Nwme hgeintnt InurcvqPMl里中< |ack Q«xt>CancelOeacle Grid

30、Jr;i a$tructore - Ecttinq up Grid InfjstruLtLir - S-lejj 11 of 7Oracle<jnd Infra structure Setting up Grid Wrastructure Step 1 of 17HrjvilpRdGrtiupKORACL6' HRDATABASE%為 口。羽也:引I午 1nlst 醺T.7 卬小日UE LT 丫,.r匐/|S - UH r4, Failure I q ci 尊忡 n歸mmdi駛沁小LDiatiotr f曲口Kt ine nams of ih? aperitjng w;wn gro

31、up, qi 的i匚h ifie uiiyou vp mnmnQihU in廠如理“ n 匕引 m Entb#rp ihn y ol* uArtt Tfi u $ * 寸 or op.ntinq sy rttrt u7h(mit4ti4n io Oracle Autonmc £pr 俎/Oracle AdministratorfOWSMO Group.0仍皿我 ,Oracle M5M &BA 05 DBA fcrA5H)CnjupMnmli Ondt A£m Qerwi«rpSOPER fw 工5岬 Ciup (加力什1。|同telP Back ,鼻haL

32、ijii'.rl安裝路徑指定:選擇ORACLE_BAS醫(yī)口 ORACLE_HOME根據自己設置來,建議 ORACLE_BASE 不和RDBMS軟彳ORACLE_BAS不是同一個,方便管理Oracle Cnd Infrastructure - Setting up Grid Infrastructure - Step 1 J of 17Specify InstallaUon LocationORACLW |於DATABASET T 彳% r個 r T r0;Ei _ rj Xf k叁rt L l SlJnrtUJuifin-Opt '產insiaJImiofi-Type»

33、;,巾仃, 7; , in JMlj r:二HC auq uld PJi?匚 I ii£i er htod e I nftjmi 茶i or側q iriipdfe-C':.'f . C re a1«Dirk Ct-o upA5M ?*5SniO-dsifrtheoruie 5中3 rt mr * 匚知$i” qr“i* bt$«, Pr aerun, Qruft。時中 inrruiryKivn 玨infilled hi *p承n irvdicatiriQ me Oracle Qri(t infrijTnjnure mtie *nd grtd inF

34、rasirunurt sorrvwt o wrier.59打1時亂 locmcm for rtcnn(j Oruie tolT«ar( mi scpirarferrom conflQurvilon ril«r ihe* finri bis( (Hrnrrory Th* £。任3個|-摩 仆個匚1 匚 ry 俗 the 心斗口口 Crk 佰丁門型 nJG .jr= h。川=cjrp<lQry工erfrsn kjociiicm/oratie/gridBrcjfvrt-1;|l|tr rj II' ,r.甲口國IIniihHMioh Loe«t

35、ten對匕P-M!?f in: h< |Kk-蛻rt A檢測Z果:查看檢測結果,如果fixable為yes則可以通過按fix&check again,執(zhí)行腳本來修復(不 保證一定可以修復),如果不能,則只能手工修復, 經檢查,可以忽略,選才I ignore all 繼續(xù)安裝Oracle Grkl frrjstructurli - Setting up Grid。kMlrudw* - Step 15 fii 1&Pes I oirn Ppp«qut4ite t h ecksO1?ACLED JL T A I A Ewir由 i-qLu| f irgE E»

36、;nig rr-E 二巾 n m jti Fl 1為 酊立二 gqirGiENflUEEnl工 ai i« * hw Et Lir wm 唇 Ft-aie hi-七IM|H評l|JlH n7”.口止 L-tlW 吁 J-J.O 1 > i°.i M'I «: h I= 七|x 立 卜勺區(qū) 信"巴dd iqa"e'e J.:l,e用工-,:JlWtrli rh 叫H'erwiirHH? QwrkJm-nklypi h r1|,7 m|j Oracle Grid Infrastructure - Set ting up

37、 Grid Infrtructufe - St=ep 1 5 of 1BPet loi ni rierequisilt tiecksORACLE DATABASETT午ITrTrTC*o<Ar 1-3»1 i :i.i: e 1_ idafi t ii,id-i .n:CJ<Hii9riTyp£ Pracktl Lahgu迎上£ fiC P'nq 修科Chisler N&Ue IMrvtiuUohWiW'Ff" LL /crga CrpMn:,,:r4 ,.卜,j;l 為則 Pa; j>vord-alure 二、

38、二ont;iEr舊,|巾3 Sy-rwn : :ru.ii;laiiafi L凸匚ic r,Crenf inventcfy日更H? tiwrki$QEE*rycnrri-l ;rodLKtF I IISome of the mkn4ni uni rcqtiirenitnts for in stilltllon arc nert (ompltltd. Rninrnnd fli iht 打 fut$ 1丘正。n the fall ovng lable,占 nd r teiitekthr sv sttrn.口2網內 SfujFdhd - 白 MNodtj 討 Q Janore AllThis tm二

39、也,.ertfies ciust er Time synchroiiizaTicm an cluster: that use pJetn-ork. TiTie Pratoeo ;hT,:. -fcieCheck f ailed on Nodes irtode2, nodcll< BackCvic«l'i «-r工工 A二 Oracle Grid In力居truSuY -Ming upGnd Infrtructure -,!臺尹 1 & of "8SummaryORACLE l.gDATABASE-Oracle (rfci InUr«

40、irinritir*'CMibxl 'ten x,Ef卜二f ace: required E 5 au>ail able 5 4 CBInjt ill Ofjtron and Configure Oraclt Grid Mr4?trutturc for a ChmerOntl*tu-rfor0*ickCridInfrutrutiurt ortclc/b»4Grid home. /oratle/yrjciSource Lu:&tgiv fhwww/中l(wèi)orirl. inr'all/. /itige/products wmtPriv iiq B Op

41、e Qgg 二爐怩* Zro upi(nr;tai< (OSD&ft), oin:inl-hkfvrtnd 由”If七n/TY 。匚Mio。口匚忙/3口CcfiTrd 卜rwmn (gTalnvrmory)牛roup. 口in/訓- 命 kJ InliMtriMtu” Ml蛆害l甯n 口兩Clusttf Name: nde-dullerIJL'C" 1' J id 同.,mnijQU45ImhtOwti Qn LanflfonP.tmgfe Moies, ngpde2Csite invwn;3嚴lv'ngin :iin( Afgev7 Nim*噌

42、七出岬丁門??谄?4可明SCAN Pan LS21Pnh lir I lit rf at if 7 .Sanwrw*£«v± Atspcnie Filejr flail出Ip以root身份執(zhí)行腳本:root用戶執(zhí)行兩個腳本,一個節(jié)點執(zhí)行完后再執(zhí)行第二個節(jié)點Install Pri)4udHitnlOracle Crid Infrastructure - Settinq up Grid Inirastructure - Step 17 of 1Scuie onfigurar ion scripts ATAORACLE,Tn? folk wing canhgurMian

43、 scnpis need ic Da exteutea as the "noot* user in tach rww durr«r nodfr Each script in the lift Miow is fdkwed bva list of nodts區(qū)io os e ie< jTecfnftoel node?r >. ai:l.nod*?2Succeeded 專LKqe ede d Sti tettde d SuccHded Succeeded In Pro jnti t-e rdir giHtvvr*riiig fi-pithl XML, And 8*c

44、u*«FMmFhf II 由3l»_t-IfmtomnriQriManagern erftcancelNumber Script Locaiion/口皿舊/(a用詞力1口中/( rajriGRpot Hi/oracle/arid/root 5hto eKerme me confiQuniion s-rrtofs,L Oppn a vrmirfli 財na(w2 Log in &$ “rgf*3 Run we scripts in 也ach duster node4 Rei urn rc this wlndovx and click "orio r inun

45、ueRun the scripi on the local node first. Hie*r successful comp eiion.州u can rum the wen 口1 in parallel ors all he onier nodes.執(zhí)行腳本。一、/»汪后:root腳本在所有節(jié)點一定要成功完成如果root.sh執(zhí)行失敗?切換到 root,在失敗的節(jié)點執(zhí)行"$GRID_HOME/crs/install/rootcrs.pl -verbose-deconfig -force".注意不能是最后一個節(jié)點? 如果是deconfig整個集群,那么在執(zhí)行完第

46、一步后,在最后一個節(jié)點運行"$GRID_HOME/crs/install/rootcrs.pl -verbose -deconfig -force -lastnode". 這個命令 會清空OCR VOTE安裝完成:rootnode1 etc# /oracle/oraInventory/orainstRoot.shChanging permissions of/oracle/oralnventory.Adding read,write permissions for group.Removing read,write,execute permissions for world

47、.Changing groupname of /oracle/oraInventory to oinstall.The execution of the script is complete.rootnode1 etc# /oracle/grid/root.shPerforming root user operation for Oracle 11gThe following environment variables are set as:ORACLE_OWNER= gridORACLE_HOME= /oracle/gridEnter the full pathname of the loc

48、al bin directory: /usr/local/bin:Copying dbhome to /usr/local/bin .Copying oraenv to /usr/local/bin .Copying coraenv to /usr/local/bin .Creating /etc/oratab file.Entries will be added to the /etc/oratab file as needed byDatabase Configuration Assistant when a database is createdFinished running gene

49、ric part of root script.Now product-specific root actions will be performed.Using configuration parameter file: /oracle/grid/crs/install/crsconfig_paramsCreating trace directoryUser ignored Prerequisites during installationInstalling Trace File AnalyzerOLR initialization - successfulroot walletroot

50、wallet certroot cert exportpeer walletprofile reader walletpa walletpeer wallet keyspa wallet keyspeer cert requestpa cert requestpeer certpa certpeer root cert TPprofile reader root cert TPpa root cert TPpeer pa cert TPpa peer cert TPprofile reader pa cert TPprofile reader peer cert TPpeer user cer

51、tpa user certAdding Clusterware entries to upstartCRS-2672: Attempting to start 'ora.mdnsd' on 'node1'CRS-2676: Start of 'ora.mdnsd' on 'node1' succeededCRS-2672: Attempting to start 'ora.gpnpd' on 'node1'CRS-2676: Start of 'ora.gpnpd' on '

52、node1' succeededCRS-2672: Attempting to start 'ora.cssdmonitor' on 'node1'CRS-2672: Attempting to start 'ora.gipcd' on 'node1'CRS-2676: Start of 'ora.gipcd' on 'node1' succeededCRS-2676: Start of 'ora.cssdmonitor' on 'node1' succeed

53、edCRS-2672: Attempting to start 'ora.cssd' on 'node1'CRS-2672: Attempting to start 'ora.diskmon' on 'node1'CRS-2676: Start of 'ora.diskmon' on 'node1' succeededCRS-2676: Start of 'ora.cssd' on 'node1' succeededASM created and started su

54、ccessfully.Disk Group OCRVOTE created successfully.clscfg: -install mode specifiedSuccessfully accumulated necessary OCR keys.Creating OCR keys for user 'root', privgrp 'root'.Operation successful.CRS-4256: Updating the profileSuccessful addition of voting disk 540fb05eb3844feabfe395

55、9578c282f1.Successful addition of voting disk 5608478ff1cd4f1cbf70f9d01ea120a2.Successful addition of voting disk 108c03b12f8f4f43bf047c41c61e360c.Successfully replaced voting disk group with +OCRVOTE.CRS-4256: Updating the profileCRS-4266: Voting file(s) successfully replaced# STATE File Universal IdFile Name Disk group1. ONLINE 540fb05eb3844feabfe3959578c282f1 (/dev/asm-diskb) OCRVOTE2. ONLINE 5608478ff1cd4f1cbf70f9d01ea1

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論