Home > received logging > error 12541 received logging on to the standby

Error 12541 Received Logging On To The Standby

Contents

17, 2012 · Add Comment REFERENCE : How to Resolve Error in Remote Archiving [ID 799353.1] Problem : ORA-12541: TNS:no listener LNS: error 12154 received logging on to the standby Failed to archive log 5 thread 2 sequence 1101 (12541) Sun error 12154 received logging on to the standby 11g May 22 13:05:55 2011 Error 12541 received logging on to the standby Check whether the listener is error 12154 received logging on to the standby rac up and running. Solution : Step 1. Check the status of remote archive destination on primary database SELECT DESTINATION, STATUS, ERROR FROM V$ARCHIVE_DEST WHERE DEST_ID=2; DESTINATION          STATUS     ERROR ------------- ------ error 1031 received logging on to the standby --------------------------- ERPDR                 ERROR     ORA-12541: TNS:no listener Step 2. Defer and enable the remote archive destination ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_2=DEFER; ALTER SYSTEM SET LOG_ARCHIVE_DEST_STATE_2=ENABLE; Step 3. Perform 2 log switches on the Primary/Source database: ALTER SYSTEM SWITCH LOGFILE; ALTER SYSTEM SWITCH LOGFILE; Step 4. Check the status of remote archive destination again: SELECT DESTINATION, STATUS, ERROR FROM V$ARCHIVE_DEST

Error 1031 Received Logging On To The Standby Ora-01031 Insufficient Privileges

WHERE DEST_ID=2; DESTINATION          STATUS     ERROR ------------- ------ --------------------------- ERPDR                 ERROR     ORA-12541: TNS:no listener If the status of remote archive destination is error, then check the error code under Error. Resolve the error in the archiving and perform step 1 to 4 again. If there is no error in the remote archiving than status of remote archive destination will be "VALID" SELECT DESTINATION, STATUS, ERROR FROM V$ARCHIVE_DEST WHERE DEST_ID=2; DESTINATION          STATUS     ERROR -------------------- --------- ---------------------------------------- ERPDR             VALID Step 5. Check whether redo logs are getting received on the standby using: FROM STANDBY SELECT THREAD#,MAX(SEQUENCE#) FROM V$ARCHIVED_LOG GROUP BY THREAD#;THREAD# MAX(SEQUENCE#) ---------- -------------- 1         1087 2         1101 Perform 2 log switches on primary database: lang="sql">ALTER SYSTEM SWITCH LOGFILE; ALTER SYSTEM SWITCH LOGFILE; Check whether SEQUENCE# changes SELECT THREAD#,MAX(SEQUENCE#) FROM V$ARCHIVED_LOG GROUP BY THREAD#;THREAD# MAX(SEQUENCE#) ---------- -------------- 1         1087 2         1103 Remote archiving is working fine if the sequence# is moving. Proceed to step 6 if sequence# is not moving: Step 6. Check the value of log_archive_max_processes on p

provides two error 12514 received logging on to the standby types of standby databases:1. Physical Standby DatabaseArchived redo log error 12514 received logging on to the standby oracle transferred from primary database will be directly applied to the standby database.2. Logical Standby Databasewe create http://www.onlinedbasupport.com/2012/05/17/ora-12541-tns-no-listener-while-remote-archiving/ SQL statements then these statements will be applied to stand by database. The key advantage for logical standby databases is that they're opened read/write, even while they're in applied modeIt is http://anuj-singh.blogspot.com/2009/10/create-duplicate-auxiliary-oracle.html important to identify unsupported database objects on the primary database before you create a logical standby database.This is because changes made to unsupported datatypes, table, sequences, or views on the primary database will not be propagated to the logical standby database. Moreover, no error message will be returned.SELECT DISTINCT OWNER,TABLE_NAME FROM DBA_LOGSTDBY_UNSUPPORTED ORDER BY OWNER,TABLE_NAME;SELECT COLUMN_NAME,DATA_TYPE FROM DBA_LOGSTDBY_UNSUPPORTED WHERE OWNER='XXX' AND TABLE_NAME = 'XXXXX';==================We are creating physical standby database on same hostorcl instance is up and running on archive log mode .init ora file for orcl instance =================================[apt-amd-02:oracle:orcl]$ cat init_orcl.txtorcl.__db_cache_size=297795584orcl.__java_pool_size=4194304orcl.__large_pool_size=4194304orcl.__shared_pool_size=130023424orcl.__streams_pool_size=0*.audit_file_dest='/opt/app/oracle/admin/orcl/adump'*.background_dump_dest='/opt/app/oracle/admin/orcl/bdump'*.compatible='10.2.0.1.0'*.control_files='/opt/app/oracle/oradata/orcl/orcl/control01.ctl','/opt/app/oracle/oradata/orcl/orcl/control02.ctl','/opt/app/oracle/oradata/orcl/orcl/control03.ctl'*.core_dump_dest='/opt/app/oracle/admin/orcl/cdump'*.db_block_size=8192*.db_domain=''*.db_file_multiblock_read_count=16*.db_name='orcl'*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'*.job_queue_processes=10*.nls_language='ENGLISH'*.nls_territory='UNITED KINGDOM'*.open_cursors=300*.pga_aggregate_target=146800640*.processes=150*.remote_login_passwordfile='EXCLUSIVE'*.sga_target=440401920*.undo_management='AUTO'*.undo_tablespace='UNDOTBS1'*.user_dump_dest='/opt/app/oracle/admin/orcl/udump'*.log_archive_dest_1='LOCATION=/opt/app/oracle/archive/ MANDATORY'*.log_archive_de

entry for my Data Guard series. First things first, below are the specs of my test environment: - HP G60-445DX (w/ 4GB RAM) - Ubuntu 9.04 64-bit (instead of Vista Home http://im-a-dba.blogspot.com/2009/09/settting-up-oracle-dataguard.html premium to maximize the RAM) - VMWare 2.0 For the Oracle Data Guard Configuration http://dba-village.com/village/dvp_forum.OpenThread?ThreadIdA=51881 I created 2 Virtual Machines, each with the ff. specs: RAM: 1GB (have tried this with 512 MB before, but very slow) OS : Oracle Enterprise Linux 4 (can be downloaded from e-delivery.oracle.com) DB: Oracle 10g R2 (10.2.0.4) HD: 30 GB (not pre-allocated) I assumed that you guys already have background in database administration, so I will received logging be skipping the fundamentals (e.g DB installation, patching etc.) I named my Primary database as "prim10g" and its host as "oel41", while my Physical Standby database as "stby10g" and its host as "oel42". Setting Up Oracle Data Guard (Physical Standby Database) 1. Turn on archiving on the Primary database [root@oel41 ~]# su - oracle [oracle@oel41 ~]$ export ORACLE_SID=prim10g [oracle@oel41 ~]$ sqlplus / as sysdba SQL*Plus: Release 10.2.0.4.0 - Production on Tue received logging on Sep 1 14:20:03 2009 Copyright (c) 1982, 2007, Oracle. All Rights Reserved. Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> alter system set log_archive_dest='/u02/oradata/archive/' scope=both; System altered. SQL> shutdown immediate Database closed. Database dismounted. ORACLE instance shut down. SQL> SQL> startup mount ORACLE instance started. Total System Global Area 285212672 bytes Fixed Size 1267044 bytes Variable Size 104860316 bytes Database Buffers 171966464 bytes Redo Buffers 7118848 bytes Database mounted. SQL> alter database archivelog; Database altered. SQL> alter database open 2 / Database altered. 2. Gather necessary files to create a physical standby database and perform an RMAN backup 2.1 Create a staging directory on Primary and Standby host [oracle@oel41 ~]$ mkdir -p /u02/stage [oracle@oel41 ~]$ 2.2 Create a copy of the init.ora (pfile) SQL> create pfile='/u02/stage/initprim10g.ora' from spfile; 2.3 Backup the database including archivelogs and create a backup of the current controlfile for standby database [oracle@oel41 ~]$ rman target / Recovery Manager: Release 10.2.0.4.0 - Production on Tue Sep 1 14:54:14 2009 Copyright (c) 1982, 2007, Oracle. All rights reserved. connected to target database: PRIM10G (DBID=3316445735) RMAN> run { allocate channel c1 type disk; 2> backup database format '/u02/stage/db%U' 3> plus archivelog format '/u02/stage/arc%U'; 4> b

Web and Mobile SQL*Plus Data Warehousing Installation Networking Backup Recovery Security Tuning PLSQL Oracle Applications Scripts Administration ORA-HOWTO Web and Mobile SQL*Plus Data Warehousing Installation Networking Backup Recovery Security Tuning PLSQL Oracle Applications Papers Administration ORA-HOWTO Web and Mobile SQL*Plus Data Warehousing Installation Networking Backup Recovery Security Tuning PLSQL Oracle Applications Forum All threads Best last month Links Oracle official Oracle Technical Info Tools (free) Tools (commercial) Oracle FAQ Other DBA-sites Oracle development Not Oracle specific Oracle Blogs Imho Fqa Pirats | Start a new thread | All threads | Best last month | No question at this time DBA Top 10 1 M. Cadot 37400 2 F. Diaz 33800 3 J. Schnackenberg 18400 4 B. Vroman 16350 5 A. Kavsek 15950 6 P. Wisse 14750 7 T. Boles 14400 8 M. Hidayathullah ... 11500 9 A. Hudspith 8600 10 A. Khan 4400 About Advertise here Download PLATOThe free tool for auditing and tuning your databaseVersion 55 now available Sep 02, 2016 The DBA-Village forum as RSS feed Site StatisticsEver registered users47779Total active users2112Act. users last 24h3Act. users last hour2Registered user hits last week561Registered user hits last month6457 Go up Heartbeat failed to connect to standby Next thread: Steps to fasten import Prev thread: "Oracle Clusterware Configuration Assistant" failed Message Score Author Date Dear Masters, i m getting following error very ...... javed akhtar May 30, 2012, 10:56 From doc.... If the Primary ARCn-Process is n...... Tarun Biswas May 30, 2012, 12:24 Check the network connection. On Dr site try to...... Raj thakur May 30, 2012, 14:25 Follow up by mail Click here Subject: Heartbeat failed to connect to standby Author: javed akhtar, India Date: May 30, 2012, 10:56, 1594 days ago Os info: aix6 Oracle info: 11gr2 Message: Dear Masters, i m getting following error very frequently in my log. Error 12154 received logging on to the standby Errors in file /oracle/oracle/diag/rdbms/primary/primary/trace/primary_arc2_24379410.trc: ORA-12154: TNS:could not resolve the connect identifier specified PING[ARC2]: Heartbeat failed to connect to standby 'stand'. Error is 12154. bash-3.2$ tnsping stand TNS Ping

 

Related content

error #1034 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p and SafetyAsset NetworkAsset Operations error received logging on to the standby and MaintenanceCommerceOverviewSubscription Billing and Revenue ManagementMaster Data error received logging on to the standby g Management for CommerceOmnichannel CommerceFinanceOverviewAccounting and Financial CloseCollaborative Finance OperationsEnterprise Risk error received

error 1017 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby g a li li a href Ora Primary Log Shipping Client Not Logged On Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p standby 'STBYKOL' Error is Hi Guys Here is an relatedl Interesting case and I was stuck with the error received logging on to the standby ora problem since last days and a half In fact p

error 1017 received logging on to the standby oracle

Error Received Logging On To The Standby Oracle table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Oracle a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p Message Navigator E-mail to friend Standby database error primary failed to connect to standby message Mon relatedl May tomvdduin Messages Registered May error received logging on to the standby ora Location Huizen Junior Member This is my

error 1031 received logging on to the standby oracle

Error Received Logging On To The Standby Oracle table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby Oracle a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p free to correct me if I'm making relatedl some mistakes in this blog Pages Home My Profile error received logging on to the standby rac Sunday April Steps to resolve Error received logging p

error 1031 connecting to destination

Error Connecting To Destination table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li ul td tr tbody table p logging of LOG ARCHIVE DEST Fri Nov Error received logging on to the standby relatedl Suppressing further error logging of LOG ARCHIVE DEST Fri Nov error received logging on to the standby rac Error received logging on to the standby Suppressing ping arc heartbeat failed to connect to standby error is further error logging of LOG ARCHIVE DEST Fri Nov Error received logging on to the

error 1031 received logging on to the standby insufficient privileges

Error Received Logging On To The Standby Insufficient Privileges table id toc tbody tr td div id toctitle Contents div ul li a href Ping Arc Heartbeat Failed To Connect To Standby Error Is a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p ourselves Always be positive and keep relatedl smiling have a great day friends Source heartbeat failed to connect to standby error is Internet March Error received logging on to p h id Ping Arc

error 1031 received logging on to the standby 11g

Error Received Logging On To The Standby g table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href V pwd file users a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p free to correct me if I'm making some mistakes in relatedl this blog Pages Home My Profile Sunday April error received logging on to the standby rac Steps to resolve Error received logging on to the standby p

error 1031 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Virtual Driver Error a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p ourselves Always be positive and keep smiling have a relatedl great day friends Source Internet March p h id Error Received Logging On To The Standby Ora-

error 1031 received logging on to the standby ora 01031

Error Received Logging On To The Standby Ora table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby Rac a li li a href Error Creating Remote Archivelog File a li ul td tr tbody table p ourselves Always be positive relatedl and keep smiling have a great day friends error received logging on to the standby ora- insufficient privileges Source Internet March Error received logging p h id Error Received Logging On To The

error 12170 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p not send to the standby message error received logging on to the standby Wed February andy huang error received logging on to the standby g Messages Registered July Senior Member Dear all The archive log can not error

error 12154 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby g a li li a href Ping Arc Heartbeat Failed To Connect To Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p Web and Mobile SQL Plus Data Warehousing Installation Networking Backup Recovery Security relatedl Tuning PLSQL Oracle Applications Scripts Administration ORA-HOWTO error received logging on

error 12537 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware relatedl SupportRemote Support SPAN Development Implementation Consulting error received logging on to the standby StaffConsulting PricesHelp Wanted Oracle PostersOracle Books Oracle Scripts Ion error

error 12560 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p to friend Error with shipping redo log from primary to standby message Tue November trantuananh hg relatedl Messages Registered January Location Ha Noi Viet Nam error received logging on to the standby Senior Member Good morning I've got error yesterday Let me describe I error received logging on

error 12637 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p DatabaseOracleopenwares DG maximize availability alert orcl log Fri Jul ORA- LGWR received timedout error relatedl from KSR LGWR Attempting destination LOG ARCHIVE DEST network reconnect error received logging on to the standby LGWR Destination LOG ARCHIVE DEST network

error 12521 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby g a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p hexmanju Messages Registered September Location MUMBAI Member Hi I am trying to configure Physical relatedl Standby Database When i see the Alert Log of error received

error 12505 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p to friend Error with shipping redo log from primary to standby message Tue November relatedl trantuananh hg Messages Registered January Location Ha Noi error received logging on to the standby Viet Nam Senior Member Good morning I've got

error 12545 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p Broker fails error received logging on to the standby to enable databse message Sat error received logging on to the standby g March farnaw u Messages Registered October Location pakistan Junior Member p h id Error Received Logging

error 12547 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby g a li li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p connect to standby message Mon September Alps Messages Registered November Location Toronto Junior Member relatedl Hi guys My alert for primary is showing me error received logging on to the standby these errors Errors

error 12520 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it will not work correctly

error 12504 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Oracle a li ul td tr tbody table p to friend Error with shipping redo log from primary to standby message Tue relatedl November trantuananh hg Messages Registered January Location error received logging on to the standby Ha Noi Viet Nam Senior Member Good morning I've got

error 12514 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby g a li li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it will relatedl not work correctly without it enabled Please turn error received logging on

error 28547 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Ping Arc Heartbeat Failed To Connect To Standby Error Is a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers relatedl to any questions you might have Meta Discuss error received logging on to the standby the workings and policies of this site About Us Learn more about p h

error 39710 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p The DNS server returned Name Error The domain name does not p h id Error Received Logging On To The Standby Ora- Insufficient Privileges p exist This means that the cache was not able to resolve the hostname presented in the URL Check if the address is correct

error 604 received logging on to the standby

Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby Rac a li li a href Error Received Logging On To The Standby Ora- Insufficient Privileges a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p Comments When setting up relatedl the environment for Change Data Capture CDC which uses alter system register logfile streams and in our case

fal client user error 16191 connecting to

Fal Client User Error Connecting To table id toc tbody tr td div id toctitle Contents div ul li a href Fal client User Error Connecting To For Fetching Gap Sequence a li li a href Fal client User Error a li li a href Ora- a li ul td tr tbody table p before applying anything on production You can reach to me at neeraj vishen gmail com Wednesday relatedl November ORA- Primary log shipping client not logged error received logging on to the standby on standby Once I have changed the password of the primary database error received

fal client user error 1031 connecting

Fal Client User Error Connecting table id toc tbody tr td div id toctitle Contents div ul li a href Fal client User Error Connecting To For Fetching Gap Sequence a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p standby SQL select relatedl from v archive gap THREAD LOW SEQUENCE HIGH SEQUENCE ---------- fal client user error connecting to for fetching gap sequence ------------- --------------

oracle 11g error 1034 received logging on to the standby

Oracle g Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Heartbeat Failed To Connect To Standby Error Is a li li a href Ora- Server Not In Data Guard Configuration a li li a href Error Received Logging On To The Standby a li ul td tr tbody table p and relatedl SafetyAsset NetworkAsset Operations and MaintenanceCommerceOverviewSubscription p h id Heartbeat Failed To Connect To Standby Error Is p Billing and Revenue ManagementMaster Data Management for ping arc heartbeat failed to connect to standby error is

oracle 11g error 1031 received logging on to the standby

Oracle g Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby Ora Insufficient Privileges a li li a href Heartbeat Failed To Connect To Standby Error Is a li li a href Error Received Logging On To The Standby a li li a href Ping Arc Heartbeat Failed To Connect To Standby Error Is a li ul td tr tbody table p logging of LOG ARCHIVE DEST Fri Nov Error received logging on to relatedl the standby Suppressing further error

oracle error 1034 received logging on to the standby

Oracle Error Received Logging On To The Standby table id toc tbody tr td div id toctitle Contents div ul li a href Ping Arc Heartbeat Failed To Connect To Standby Error Is a li li a href Ping arc Heartbeat Failed To Connect To Standby Error Is a li li a href Ora- Server Not In Data Guard Configuration a li ul td tr tbody table p and SafetyAsset NetworkAsset p h id Ping Arc Heartbeat Failed To Connect To Standby Error Is p Operations and MaintenanceCommerceOverviewSubscription Billing and Revenue ManagementMaster Data p h id Ping arc Heartbeat Failed