search
HomeDatabaseMysql TutorialEM12c创建备库时找不到agent备库主机

现象: 在用EM12cR4创建备库时,不能搜索到备库的主机,但备库主机已经在主机列表中存在,而且备库主机上的agent也已经安装并状态正常。 原因: 在agent端插件目录缺少所需要的插件 解决: 安装代理插件 1. 登录EM12c 2. 在菜单 安装- Extensibility -Plug-i

现象:

在用EM12cR4创建备库时,不能搜索到备库的主机,但备库主机已经在主机列表中存在,而且备库主机上的agent也已经安装并状态正常。

原因:

在agent端插件目录缺少所需要的插件

解决:

安装代理插件

1. 登录EM12c

2. 在菜单 安装-> Extensibility -Plug-ins\>

3. 在Plug-ins页,选择 Database -> Oracle Database

\

4. 点击 Deploy On -> Management Agent

\


\

5. 点Continue为列出的主机添加agent插件

参考文档:
12c Creation of Standby Database Failed with "The grid control database plug-in must be deployed on the agent monitoring the selected host." (文档 ID 1510979.1)


修改时间:2012-12-15类型:PROBLEM

In this Document

Symptoms

Cause

Solution


APPLIES TO:

Enterprise Manager Base Platform - Version 12.1.0.2.0 to 12.1.0.2.0 [Release 12.1]
Information in this document applies to any platform.

SYMPTOMS

Creation of Standby Database from OEM 12.1.0.2 fails with the following error:

The grid control database plug-in must be deployed on the agent monitoring the select host.

\

CAUSE

Plugins directory at the agent side does not have the required plugin

/u01/app/oracle/product/agent12c/plugins
$ ls -ltr
total 20
drwxr-xr-x 7 oracle oracle 4096 Nov 29 14:05 oracle.sysman.xa.discovery.plugin_12.1.0.3.0
drwxr-xr-x 7 oracle oracle 4096 Nov 29 14:05 oracle.sysman.oh.discovery.plugin_12.1.0.2.0
drwxr-xr-x 7 oracle oracle 4096 Nov 29 14:05 oracle.sysman.db.discovery.plugin_12.1.0.2.0
drwxr-xr-x 10 oracle oracle 4096 Nov 29 14:05 oracle.sysman.oh.agent.plugin_12.1.0.2.0
drwxr-xr-x 9 oracle oracle 4096 Nov 29 14:05 oracle.sysman.emas.discovery.plugin_12.1.0.3.0

oracle.sysman.db.agent.plugin is missing which is required for monitoring.

SOLUTION

to create standby database on a new server, we still need a plugin to be deployed on the agent.

Please do the following steps:

1. Login to 12C Cloud Control
2. Navigate to Setup --> Extensibility
3. Select the option Plugins
4. Expand the option "Databases"
5. Select "Oracle Database"
6. Expand the option "Deploy On" and Choose "Management Agent"
7. In the page displayed, Click on "Add" to add the Agent on which plugin needs to be deployed (On the server where standby is created).
8. After adding the agent name, it will run the prerequisite check, after successful completion of prerequisite check, click on Next.
9. A Confirmation message about deployment of database plugin on Management Agent will be displayed.

This will complete the deployment of database plugin to management agent.

Once this is done, create standby database.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.