亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Oracle cloud control 12c 的啟動(dòng)與關(guān)閉

系統(tǒng) 2165 0

??? Oracle cloud control 12c整個(gè)安裝比較復(fù)雜,光是安裝路徑的選擇,登錄password,端口號(hào)等眾多個(gè)配置不免讓人眼花繚亂,目不暇接。本文描寫敘述的是安裝完成后怎樣獲取安裝時(shí)設(shè)定的各類端口號(hào),URL以及怎樣啟動(dòng)、關(guān)閉cloud control等等,供大家參考。
??? 有關(guān)cloud control的安裝配置能夠參考:
Oracle Enterprise Manager Cloud Control 12c Release 3 Installation

?

1、當(dāng)前的環(huán)境配置
[oracle@oel63 ~]$ more ~/.bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
??????? . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_HOSTNAME=oel63.ycdata.net; export ORACLE_HOSTNAME
ORACLE_UNQNAME=ora11g; export ORACLE_UNQNAME
ORACLE_BASE=/u01/ora11g; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/db_1; export ORACLE_HOME
ORACLE_SID=ora11g; export ORACLE_SID

PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

export OMS_HOME=/u01/oms12cr3/oms
export AGENT_HOME=/u01/agent12cr2/core/12.1.0.3.0

[oracle@oel63 ~]$ more /etc/issue
Oracle Linux Server release 6.3
Kernel \r on an \m

[oracle@oel63 ~]$ sqlplus -v

SQL*Plus: Release 11.2.0.3.0 Production

?

2、啟動(dòng)repository DB及OMS
#啟動(dòng)oms前,須要先啟動(dòng)Repository DB,該DB用于存放收集到的監(jiān)控信息
#啟動(dòng)DB時(shí),同一時(shí)候須要啟動(dòng)監(jiān)聽器,否則收到Failed to connect to repository database.
#只是OMS會(huì)自己主動(dòng)重新啟動(dòng),當(dāng)偵測(cè)到DB和監(jiān)聽處于UP時(shí)(OMS will be automatically restarted once it identifies that database and listener are up.)
[oracle@oel63 ~]$ lsnrctl start
[oracle@oel63 ~]$ ps -ef | grep pmon | grep -v grep
[oracle@oel63 ~]$ sqlplus / as sysdba
SQL> startup
SQL> exit

?

#使用下面的命令啟動(dòng)oms以及agent
[oracle@oel63 ~]$ $OMS_HOME/bin/emctl start oms
[oracle@oel63 ~]$ $AGENT_HOME/bin/emctl start agent

?

3、查看安裝信息
#通過(guò)查看之前的安裝信息以及端口信息,然后據(jù)此連接到cloud control console
[oracle@oel63 ~]$ cd $OMS_HOME/install
[oracle@oel63 install]$ more eminstall.info
INSTALL_TYPE=NOSEED
UPGRADE=false
ORACLE_MIDDLEWARE_HOME_LOCATION=/u01/oms12cr3? #Weblogic安裝位置
OMS_HOME=/u01/oms12cr3/oms???????????????????? #OMS安裝位置
AGENT_HOME=/u01/agent12cr2/core/12.1.0.3.0???? #Agent安裝位置
AGENT_BASE_DIR=/u01/agent12cr2???????????????? #Agent基文件夾

?

#下面是一些重要的端口信息 Author : Leshami?? Blog : http://blog.csdn.net/leshami
[oracle@oel63 install]$ more portlist.ini
Enterprise Manager Upload Http Port=4889
Enterprise Manager Upload Http SSL Port=4903
Enterprise Manager Central Console Http SSL Port=7802
Node Manager Http SSL Port=7403
Managed Server Http Port=7202
Enterprise Manager Central Console Http Port=7788
Oracle Management Agent Port=3872
Admin Server Http SSL Port=7102
Managed Server Http SSL Port=7301

[oracle@oel63 install]$ more setupinfo.txt

This information is also available at:

??????? /u01/oms12cr3/oms/install/setupinfo.txt

See below for information pertaining to your Enterprise Manager installation:

?

#下面是登錄到cloud control console以及登錄到Weblogic的URL,依據(jù)這個(gè)URL登錄后進(jìn)行對(duì)應(yīng)的管理
Use the following URL to access:

??????? 1. Enterprise Manager Cloud Control URL: https://oel63.ycdata.net:7802/em
??????? 2. Admin Server URL: https://oel63.ycdata.net:7102/console

The following details need to be provided during the additional OMS install:

??????? 1. Admin Server Hostname: oel63.ycdata.net
??????? 2. Admin Server Port: 7102

You can find the ports details used by this deployment at : /u01/oms12cr3/oms/install/portlist.ini


?NOTE:
? ?An encryption key has been generated to encrypt sensitive data in the Management Repository. If this key is lost, all encrypted data in the Repository becomes unusable.

?? A backup of the OMS configuration is available in /u01/gc_inst/em/EMGC_OMS1/sysman/backup on host oel63.ycdata.net. See Cloud Control Administrators Guide for details on how to back up and recover an OMS.

? ?NOTE: This backup is valid only for the initial OMS configuration. For example, it will not reflect plug-ins installed later, topology changes like the addition of a load balancer, or changes to other properties made using emctl or emcli. Backups should be created on a regular basis to ensure they capture the current OMS configuration. Use the following command to backup the OMS configuration:
/u01/oms12cr3/oms/bin/emctl exportconfig oms -dir <backup dir>

?

4、關(guān)閉OMS及repository DB
[oracle@oel63 ~]$ $OMS_HOME/bin/emctl stop oms -all

[oracle@oel63 ~]$ $AGENT_HOME/bin/emctl stop agent
[oracle@oel63 ~]$ lsnrctl stop
[oracle@oel63 ~]$ export ORACLE_SID=ora11g
[oracle@oel63 ~]$ sqlplus / as sysdba
SQL> shutdown immediate;


?

鵬城DBA總?cè)? src=

Oracle cloud control 12c 的啟動(dòng)與關(guān)閉


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦!!!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 国产成+人+亚洲+欧美综合 | 四虎影视久久久免费 | 日韩国产欧美精品综合二区 | 久久99精品久久久久久国产人妖 | 色婷婷久久久swag精品 | 国产精品视频全国免费观看 | 亚洲精品中文一区不卡 | 欧美综合影院 | 美女在线看永久免费网址 | 12345国产精品高清在线 | 国产亚洲美女精品久久久2020 | 视频一区国产 | 在线成人精品国产区免费 | 国产在线美女 | 欧美伊人久久久久久久久影院 | 久久婷婷久久一区二区三区 | 99在线热播精品免费 | 欧美jizzhd极品欧美 | 日本一区二区三区免费看 | 欧美日韩在线播一区二区三区 | 色综合久久一区二区三区 | 99久久国产综合精品女小说 | 亚洲成a v人片在线观看 | 免费特黄级夫费生活片 | 欧美日本在线 | 免费一级特黄特色黄大任片 | 国产精品久久久久久久网站 | 亚洲视频日韩视频 | 久久亚洲私人国产精品va | 日本不卡在线观看免费v | 狠狠干夜夜 | 九九视频免费精品视频免费 | 国产精品麻豆视频 | 色婷婷综合久久久中文字幕 | 精品亚洲成a人在线观看 | 天天久久狠狠伊人第一麻豆 | 成人欧美日韩高清不卡 | 欧美日韩国产成人综合在线影院 | 天天射天天操天天色 | 操操操网站| 欧美成视频一theporn |