【GC】使用 agentDownload.linux完成Grid Control Agent的快速部署安裝
我這裡使用的作業系統是OEL4.8,完成GC的Agent部署有很多種方法,這裡給出最快速的方法:使用agentDownload.linux完成Grid Control Agent的部署安裝。
使用這種方法的特點:一次只能部署一個Agent;使用的是從GC伺服器上pull的技術;可以針對具體環境對指令碼進行修改;非互動性靜默型別的操作;純文字輸出等。
1.保證使用這種方法的先決條件被滿足
1)需要為Oracle建立使用者和組;
2)保證wget命令可用,因為安裝過程中需要使用這個命令從GC伺服器上下載安裝檔案;
3)在oracle使用者下完成安裝;
4)保證oracle使用者下Java程式jar可用;
5)確定Agent安裝的目錄,我們這裡指定的是“/u01/app/oracle/agent”。
2.agentDownload.linux指令碼完成的任務列表
1)建立所需的目錄;
2)下載installation response file;
3)下載jarred OUI;
4)靜默模式下安裝Agent;
5)自動發現主機上的targets,並啟動主機上的Agent。
3.記錄Agent安裝過程
1)將ocmdb2主機中agentDownload.linux複製到ocmdb1主機上
[oracle@ocmdb1 ~]$ scp ocmdb2:/u01/app/oracle/OracleHomes/oms10g/sysman/agent_download/10.2.0.1.0/linux/agentDownload.linux .
oracle@ocmdb2's password:
agentDownload.linux 100% 22KB 22.3KB/s 00:00
2)給指令碼授予執行許可權
[oracle@ocmdb1 ~]$ chmod 755 agentDownload.linux
3)執行agentDownload.linux完成在Agent的部署安裝
命令中“/u01/app/oracle/agent”表示Agent部署的路徑。
[oracle@ocmdb1 ~]$ ./agentDownload.linux -b /u01/app/oracle/agent
…… ……
……省略輸出的log資訊……
/u01/app/oracle/agent/agent10g/root.sh needs to be executed by root to complete this installation.
注意安裝完成之後,安裝日誌最後輸出的內容,需要在root使用者下執行root.sh指令碼。
4)在root使用者下執行root.sh指令碼
[oracle@ocmdb1 ~]$ su - root
Password:
[root@ocmdb1 ~]# sh /u01/app/oracle/agent/agent10g/root.sh
Running Oracle10 root.sh script...
The following environment variables are set as:
ORACLE_OWNER= oracle
ORACLE_HOME= /u01/app/oracle/agent/agent10g
Enter the full pathname of the local bin directory: [/usr/local/bin]:
The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root.sh script.
Now product-specific root actions will be performed.
Finished product-specific root actions.
到此,整個Agent就安裝完畢了。
4.在GC伺服器上配置新發現的資料庫例項
因為在ocmdb1主機上部署完成Agent後會自動發現其上執行著的資料庫例項,我們這裡是ocmdb例項和ocmgc例項。只需要簡單的配置一下便可在GC中對其進行監控和管理。
具體步驟如下。
1)點選“Targets”可以在“Hosts”欄目中看到GC自動識別到了兩臺主機
2)進一步點選“Database”可以看到,GC自動識別到了ocmdb1主機上的兩個資料庫例項
3)點選“Configure”對ocmdb例項進行配置,這裡僅需要給出dbsnmp使用者的密碼(oracle1)即可,其他內容是自動返填出來的,點選“Next”
4)此時直接進入到最後的Review階段,確定沒有問題,點選“Submit”
5)稍等片刻
6)提示ocmdb例項的屬性已經被更新
7)剛剛配置完畢時ocmdb的狀態資訊還不是很完整
8)此時可以點選右上角的Refresh圖示觀察ocmdb例項的狀態變化,最終該例項的所有狀態都會顯示出來
9)同樣的流程配置ocmgc例項,最終的狀態如下
5.小結
在Agent部署和GC配置的過程中遇到了幾次小的麻煩,重新安裝很多次後終於成功。
注意:在配置Agent之前記得一定要將所有資料庫例項中的dbsnmp使用者為unlock狀態!
Good luck.
secooler
10.07.10
-- The End --
使用這種方法的特點:一次只能部署一個Agent;使用的是從GC伺服器上pull的技術;可以針對具體環境對指令碼進行修改;非互動性靜默型別的操作;純文字輸出等。
1.保證使用這種方法的先決條件被滿足
1)需要為Oracle建立使用者和組;
2)保證wget命令可用,因為安裝過程中需要使用這個命令從GC伺服器上下載安裝檔案;
3)在oracle使用者下完成安裝;
4)保證oracle使用者下Java程式jar可用;
5)確定Agent安裝的目錄,我們這裡指定的是“/u01/app/oracle/agent”。
2.agentDownload.linux指令碼完成的任務列表
1)建立所需的目錄;
2)下載installation response file;
3)下載jarred OUI;
4)靜默模式下安裝Agent;
5)自動發現主機上的targets,並啟動主機上的Agent。
3.記錄Agent安裝過程
1)將ocmdb2主機中agentDownload.linux複製到ocmdb1主機上
[oracle@ocmdb1 ~]$ scp ocmdb2:/u01/app/oracle/OracleHomes/oms10g/sysman/agent_download/10.2.0.1.0/linux/agentDownload.linux .
oracle@ocmdb2's password:
agentDownload.linux 100% 22KB 22.3KB/s 00:00
2)給指令碼授予執行許可權
[oracle@ocmdb1 ~]$ chmod 755 agentDownload.linux
3)執行agentDownload.linux完成在Agent的部署安裝
命令中“/u01/app/oracle/agent”表示Agent部署的路徑。
[oracle@ocmdb1 ~]$ ./agentDownload.linux -b /u01/app/oracle/agent
…… ……
……省略輸出的log資訊……
/u01/app/oracle/agent/agent10g/root.sh needs to be executed by root to complete this installation.
注意安裝完成之後,安裝日誌最後輸出的內容,需要在root使用者下執行root.sh指令碼。
4)在root使用者下執行root.sh指令碼
[oracle@ocmdb1 ~]$ su - root
Password:
[root@ocmdb1 ~]# sh /u01/app/oracle/agent/agent10g/root.sh
Running Oracle10 root.sh script...
The following environment variables are set as:
ORACLE_OWNER= oracle
ORACLE_HOME= /u01/app/oracle/agent/agent10g
Enter the full pathname of the local bin directory: [/usr/local/bin]:
The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n)
[n]:
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root.sh script.
Now product-specific root actions will be performed.
Finished product-specific root actions.
到此,整個Agent就安裝完畢了。
4.在GC伺服器上配置新發現的資料庫例項
因為在ocmdb1主機上部署完成Agent後會自動發現其上執行著的資料庫例項,我們這裡是ocmdb例項和ocmgc例項。只需要簡單的配置一下便可在GC中對其進行監控和管理。
具體步驟如下。
1)點選“Targets”可以在“Hosts”欄目中看到GC自動識別到了兩臺主機
2)進一步點選“Database”可以看到,GC自動識別到了ocmdb1主機上的兩個資料庫例項
3)點選“Configure”對ocmdb例項進行配置,這裡僅需要給出dbsnmp使用者的密碼(oracle1)即可,其他內容是自動返填出來的,點選“Next”
4)此時直接進入到最後的Review階段,確定沒有問題,點選“Submit”
5)稍等片刻
6)提示ocmdb例項的屬性已經被更新
7)剛剛配置完畢時ocmdb的狀態資訊還不是很完整
8)此時可以點選右上角的Refresh圖示觀察ocmdb例項的狀態變化,最終該例項的所有狀態都會顯示出來
9)同樣的流程配置ocmgc例項,最終的狀態如下
5.小結
在Agent部署和GC配置的過程中遇到了幾次小的麻煩,重新安裝很多次後終於成功。
注意:在配置Agent之前記得一定要將所有資料庫例項中的dbsnmp使用者為unlock狀態!
Good luck.
secooler
10.07.10
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-667753/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【GC】OEL4.8解除安裝重新部署安裝Grid Control OMSGC
- 【GC】OEL4.8部署安裝 Grid Control OMSGC
- 【GC】Grid Control Agent完整刪除方法GC
- OCM實驗-grid control agent安裝
- 【GC】OEM Grid Control 11gR1部署之Agent部分GC
- 【DataGuard】使用Grid Control快速部署Oracle物理Data GuardOracle
- Grid Control的安裝
- Oracle 10g Grid Control 部署初步完成Oracle 10g
- 安裝Grid Control
- 安裝10.2.0.4 Grid Control之前需要安裝 10.2.0.3.0 Grid Control
- oracle10g GC agent安裝與解除安裝OracleGC
- 【GC】OEM Grid Control 11gR1部署之OMS部分GC
- OCM實驗-grid control安裝
- Step by step install grid control agent on linux 5.3 x86_64遠端安裝Linux
- zabbix agent 3.0部署文件 安裝部署
- 如何解除安裝Oracle Grid ControlOracle
- Step by step install grid control agent on linux 5.3 x86_64遠端安裝(二)Linux
- 【GC】OEM Grid Control 11gR1部署之WebLogic Server部分GCWebServer
- 【GC】Grid Control 11gR1安裝過程中遭遇ERROR: invalid entry CRCGCError
- 【GC】未建立或丟失密碼檔案導致 Grid Control OMS無法正常安裝GC密碼
- Oracle 12c OEM Cloud Control AGENT 安裝OracleCloud
- Zabbix Agent 安裝與使用
- zt_如何解除安裝oracle grid controlOracle
- Oracle10g Grid Control客戶端的安裝Oracle客戶端
- Grid Control一些術語GC、OMS、OMR、OMA的概念GC
- 【TAR】【安裝】Linux環境使用TAR命令快速部署安裝OracleLinuxOracle
- gc/Agent passwd resetGC
- Spark 安裝部署與快速上手Spark
- Oracle 10g Grid Control agent發現新建立的資料庫Oracle 10g資料庫
- zabbix安裝agent
- Zabbix Agent安裝
- 【ACOUG】Oracle Grid Control的使用與技巧Oracle
- 安裝GRID CONTROL The OPMN Process Manager failed to start報錯處理AI
- 安裝Grid Control , OPMN Process Manager failed to start 問題解決AI
- 【GC】How to Install Grid Control Agents on RAC Clusters? [ID 378037.1]GC
- 【GC】無法找到jar命令導致Download方式安裝Agent失敗的處理GCJAR
- WIN下安裝agent
- 安裝Oracle 10g Grid Control 時碰到 OUI-25031Oracle 10gUI