成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專(zhuān)欄INFORMATION COLUMN

oracle最佳連接方式之service維護(hù)(中)

IT那活兒 / 2083人閱讀
oracle最佳連接方式之service維護(hù)(中)
點(diǎn)擊上方“IT那活兒”公眾號(hào),關(guān)注后了解更多內(nèi)容,不管IT什么活兒,干就完了?。?!

接上篇《oracle最佳連接方式之service簡(jiǎn)介及創(chuàng)建》,本章節(jié)涉及數(shù)據(jù)庫(kù)service的維護(hù)操作:

  • 查看service配置;
  • 查看服務(wù)狀態(tài);
  • 啟停數(shù)據(jù)庫(kù)service;
  • service切換、刪除等標(biāo)準(zhǔn)操作。

查看service配置

su – oracle
srvctl config service {-db  [-service ] [-verbose]

示例:

[oracle@server01 admin]$ srvctl config service -db DGORCL -verbose
Service name: ORCL_RD_S1
Server pool:
Cardinality: 1
Service role: PHYSICAL_STANDBY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Global: false
Commit Outcome: false
Failover type:
Failover method:
Failover retries:
Failover delay:
Failover restore: NONE
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Edition:
Pluggable database name: ORCL
Hub service:
Maximum lag time: ANY
SQL Translation Profile:
Retention: 86400 seconds
Replay Initiation Time: 300 seconds
Drain timeout:
Stop option:
Session State Consistency: DYNAMIC
GSM Flags: 0
Service is enabled
Preferred instances: orcl1
Available instances: orcl2
CSS critical: no
Service uses Java: false

Service name: ORCL_RD_S2
Server pool:
Cardinality: 1
Service role: PHYSICAL_STANDBY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Global: false
Commit Outcome: false
Failover type:
Failover method:
Failover retries:
Failover delay:
Failover restore: NONE
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Edition:
Pluggable database name: ORCL
Hub service:
Maximum lag time: ANY
SQL Translation Profile:
Retention: 86400 seconds
Replay Initiation Time: 300 seconds
Drain timeout:
Stop option:
Session State Consistency: DYNAMIC
GSM Flags: 0
Service is enabled
Preferred instances: orcl2
Available instances: orcl1
CSS critical: no
Service uses Java: false

查看service服務(wù)狀態(tài)

srvctl status service {-db  [-service "
" | -pdb ] [-db
]} [-force] [-verbose]

示例:

srvctl status service -d DGORCL –verbose

Service ORCL_rd_s1 is running on instance(s) orcl2
Service ORCL_rd_s2 is running on instance(s) orcl2

srvctl status service -d DGORCL -pdb ORCL

Service ORCL_rd_s1 is running on instance(s) orcl2
Service ORCL_rd_s2 is running on instance(s) orcl2

啟停service

srvctl start service { -node | -db
[-node | -instance ]
[-service "" | -pdb
[-role] [-startoption ][-verbose]

--啟動(dòng)service
srvctl start service -db DGORCL -service ORCL_RD_S1
--檢查
srvctl status service -db DGORCL -service ORCL_RD_S1
Service ORCL_RD_S1 is running on instance(s) orcl1

--停止service
srvctl stop service -db DGORCL -service ORCL_RD_S1
--檢查
srvctl status service -db DGORCL -service ORCL_RD_S1
Service ORCL_RD_S1 is not running.

srsctl status res –t
ora.DGORCL.ORCL_rd_s1.svc
1        OFFLINE OFFLINE                                STABLE
ora.DGORCL.ORCL_rd_s2.svc
ONLINE  ONLINE       server02 STABLE

service切換relocate

srvctl relocate service -db 
[-service  | -pdb ]
{-oldinst  [-newinst ]
[-force [-noreplay]

示例:

ora.DGORCL.ORCL_rd_s1.svc
1 ONLINE  ONLINE       server01                STABLE
ora.DGORCL.ORCL_rd_s2.svc
2 ONLINE  ONLINE       server02                STABLE

server01ORCL_rd_s1 relocateserver02上面

srvctl relocate service -db DGORCL -service ORCL_RD_S1 -oldinst orcl1 -newinst orcl2
--檢查狀態(tài)

ora.DGORCL.ORCL_rd_s1.svc
2 ONLINE  ONLINE       server02                STABLE
ora.DGORCL.ORCL_rd_s2.svc
ONLINE  ONLINE       server02                STABLE

修改service配置

srvctl modify service -d  -s  
-n -i "" [-a ""] [-f]
可以修改service的諸多選項(xiàng),詳情請(qǐng)獲取幫助。
srvctl modify service -h

示例:

[oracle@emrep01 ~]$ srvctl config service -d EMREP -s EMREP_r_s1
Service name: EMREP_R_S1
Service is enabled
Server pool: EMREP_EMREP_R_S1
Cardinality: 1
Disconnect: false
Service role: PRIMARY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Failover type: NONE
Failover method: NONE
TAF failover retries: 0
TAF failover delay: 0
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Edition:
Preferred instances: EMREP1
Available instances: EMREP2

將EMREP_R_S1的首選實(shí)例調(diào)整為EMREP2,備選實(shí)例調(diào)整為EMREP1:

srvctl modify service -d EMREP -s EMREP_R_S1 -n -i EMREP2 -a EMREP1

檢查service:

[oracle@emrep01 ~]$ srvctl config service -d EMREP -s EMREP_r_s1
Service name: EMREP_R_S1
Service is enabled
Server pool: EMREP_EMREP_R_S1
Cardinality: 1
Disconnect: false
Service role: PRIMARY
Management policy: AUTOMATIC
DTP transaction: false
AQ HA notifications: false
Failover type: NONE
Failover method: NONE
TAF failover retries: 0
TAF failover delay: 0
Connection Load Balancing Goal: LONG
Runtime Load Balancing Goal: NONE
TAF policy specification: NONE
Edition:
Preferred instances: EMREP2
Available instances: EMREP1

刪除service

srvctl remove service -d  -s  
[-i ] [-f]
建議先停止service,再刪除service:
srvctl stop service -d EMREP -s EMREP_r_s1
srvctl remove service -d EMREP -s EMREP_r_s1

建議配置:

  • service1 啟動(dòng)到節(jié)點(diǎn)1,service2 啟動(dòng)到節(jié)點(diǎn)2;
  • rd(read only)服務(wù)要確保啟動(dòng)在備庫(kù),建議啟動(dòng)在MRP的節(jié)點(diǎn);切換或者維護(hù)的場(chǎng)景,結(jié)合實(shí)際情況手動(dòng)relocate服務(wù);
  • 主/備庫(kù)發(fā)生重啟后,要檢查服務(wù)是否啟動(dòng)在正確的實(shí)例上,連接備庫(kù)就是rd(read only)服務(wù),備庫(kù)如果都宕了,就把rd的service在主庫(kù)拉起來(lái),結(jié)合實(shí)際情況。

本文作者:王爾貴(上海新炬王翦團(tuán)隊(duì))

本文來(lái)源:“IT那活兒”公眾號(hào)

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/129322.html

相關(guān)文章

  • Oracle最佳連接方式service最佳實(shí)踐及測(cè)試(下)

    Oracle最佳連接方式之service最佳實(shí)踐及測(cè)試(下) img{ display:block; margin:0 auto !important; width:100%; } body{ width:75%...

    IT那活兒 評(píng)論0 收藏1656
  • 關(guān)于云平臺(tái),開(kāi)發(fā)者需要做哪些準(zhǔn)備?

    摘要:微軟已經(jīng)很久沒(méi)有支持開(kāi)源社區(qū)了,這也是很多公司不采用的原因之一。當(dāng)然微軟總是致力于提供無(wú)的工具簡(jiǎn)單的語(yǔ)法和良好的教程,他們最近也意識(shí)到,開(kāi)源可以為提供更多的創(chuàng)新和業(yè)務(wù)。 得益于CTO、CEO和CDO們積極的推動(dòng),IT基礎(chǔ)設(shè)施正在向云環(huán)境遷移,底層架構(gòu)師則在熱烈討論圍繞著云原生應(yīng)用的SaaS、PaaS和微服務(wù)架構(gòu),而開(kāi)發(fā)者們正在大顯身手,努力探索云計(jì)算的魔盒,找出什么是對(duì)業(yè)務(wù)有價(jià)值的,什...

    newtrek 評(píng)論0 收藏0
  • 甲骨文通過(guò)創(chuàng)新技術(shù)擴(kuò)展開(kāi)放集成的云平臺(tái)

    摘要:年月日甲骨文今日發(fā)布了最新的集成產(chǎn)品,以幫助企業(yè)更便利地運(yùn)用變革性技術(shù)。甲骨文提供下一代用戶(hù)體驗(yàn),包括基于個(gè)人角色使用所有功能,同時(shí)通過(guò)預(yù)先制作的集成模板加速產(chǎn)品上市時(shí)間,為企業(yè)創(chuàng)造更多的價(jià)值。2017年10月11日 –甲骨文今日發(fā)布了最新的集成PaaS產(chǎn)品,以幫助企業(yè)更便利地運(yùn)用變革性技術(shù)。除了最新的自治數(shù)據(jù)管理云服務(wù)、大數(shù)據(jù)分析和人工智能功能之外,甲骨文宣布在其應(yīng)用程序開(kāi)發(fā)平臺(tái)、數(shù)據(jù)集成...

    lordharrd 評(píng)論0 收藏0
  • DBASK問(wèn)答集萃(2)

    摘要:新晉技術(shù)專(zhuān)家下面是墨天輪部分新晉的技術(shù)專(zhuān)家。大家可以點(diǎn)擊往期閱讀墨天輪技術(shù)專(zhuān)家邀請(qǐng)函了解詳情,申請(qǐng)成為我們的技術(shù)專(zhuān)家,加入專(zhuān)家團(tuán)隊(duì),與我們一起創(chuàng)建一個(gè)開(kāi)放互助的數(shù)據(jù)庫(kù)技術(shù)社區(qū)。新關(guān)聯(lián)公眾號(hào)墨天輪是一個(gè)開(kāi)放互助的數(shù)據(jù)庫(kù)技術(shù)社區(qū)。 引言 近期我們?cè)贒BASK小程序增加了數(shù)據(jù)庫(kù) MongoDB、Redis、 Elasticsearch、DB2、Weblogic 等新的的專(zhuān)題欄目和一些新的技術(shù)...

    liuchengxu 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<