{"id":29660,"date":"2022-02-15T18:30:05","date_gmt":"2022-02-15T18:30:05","guid":{"rendered":"https:\/\/dbtut.com\/?p=29660"},"modified":"2022-02-15T19:17:10","modified_gmt":"2022-02-15T19:17:10","slug":"oracle-data-guard-installation","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/","title":{"rendered":"Oracle Data Guard Installation"},"content":{"rendered":"<p>In today&#8217;s article, I will talk about Oracle Data Guard Installation.<\/p>\n<p>I used Oracle Linux 7.6 and Oracle Database 19C while installing.<\/p>\n<p>There are conditions that must be met in order to install Oracle Data Guard. These are as follows:<\/p>\n<p>Oracle database must be Enterprise edition.<br \/>\nBoth servers must have the same operating system.<br \/>\nOracle Software must be the same version on both servers.<\/p>\n<p>After these conditions are met, the necessary steps for installation can be started.<\/p>\n<p>First, we install Oracle Software on the Standby server. Then we create and start the listener service using \u201cnetca\u201d.<\/p>\n<p>We write the information of the servers in the &#8220;\/etc\/hosts&#8221; file in the Primary and Standby databases.<\/p>\n<pre class=\"lang:default decode:true \">vi \/etc\/hosts<\/pre>\n<p id=\"nRZqmdQ\"><img loading=\"lazy\" decoding=\"async\" width=\"446\" height=\"58\" class=\"size-full wp-image-29661 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_620be4a12c79a.png\" alt=\"\" \/><\/p>\n<h3>Settings to be made on the Primary Server:<\/h3>\n<p>1. The archive log mode of the database must be turned on. We check if it is open with the following command.<\/p>\n<pre class=\"lang:default decode:true \">select log_mode from v$database;<\/pre>\n<p>If the database is not in archive mode, we follow the steps below to put the database in archive mode.<\/p>\n<p>We close the database consistently and open it in mount mode.<\/p>\n<pre class=\"lang:default decode:true \">shutdown immediate;\r\nstartup mount;<\/pre>\n<p>We put the database in archive mode and open the database.<\/p>\n<pre class=\"lang:default decode:true \">alter database arhivelog;\r\nalter database open;<\/pre>\n<p>2. We log all transactions in the database with the following command.<\/p>\n<pre class=\"lang:default decode:true \">alter database force logging;<\/pre>\n<p>3. In the Primary, we learn the values of the &#8220;DB_NAME&#8221; and &#8220;DB_UNIQUE_NAME&#8221; parameters.<\/p>\n<pre class=\"lang:default decode:true \">show parameter db_name<\/pre>\n<p id=\"mtNbuUH\"><img loading=\"lazy\" decoding=\"async\" width=\"581\" height=\"74\" class=\"size-full wp-image-29663 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_620be61a26591.png\" alt=\"\" \/><\/p>\n<pre class=\"lang:default decode:true \">show parameter db_unique_name<\/pre>\n<p id=\"BZtYlbQ\"><img loading=\"lazy\" decoding=\"async\" width=\"574\" height=\"81\" class=\"size-full wp-image-29664 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_620be638908b0.png\" alt=\"\" \/><\/p>\n<p>4. We set the \u201cLOG_ARCHIVE_CONFIG\u201d parameter in the database.<br \/>\nFirst we write Primary database DB_UNIQUE_NAME and then we write standby database DB_UNIQUE_NAME.<\/p>\n<pre class=\"lang:default decode:true \">alter system set log_archive_config= \u2018dg_config=(ORCL,ORCLSTBY)\u2019<\/pre>\n<p>5. We configure the \u201cremote archive log\u201d option in the database.<\/p>\n<pre class=\"lang:default decode:true \">alter system set log_archive_dest_2=\u2019SERVICE=orclstby LGWR\r\nASYNC VALID_FOR=(ONLINE_LOGFILE,PRIMARY_ROLE)\r\nDB_UNIQUE_NAME=ORCLSTBY\u2019;<\/pre>\n<pre class=\"lang:default decode:true \">alter system set log_archive_dest_state_2=enable;<\/pre>\n<p>6.We set the parameters \u201cLOG_ARCHIVE_FORMAT\u201d, \u201cLOG_ARCHIVE_MAX_PROCESSES\u201d, \u201cREMOTE_LOGIN_PASSWORDFILE\u201d in the database as follows.<\/p>\n<pre class=\"lang:default decode:true \">alter system set log_archive_format=\u2019%t_%s_%r.arc\u2019 scope=spfile;\r\nalter system set log_archive_max_processes=30;\r\nalter system set remote_login_passwordfile=exclusive scope=spfile;<\/pre>\n<p>7. Considering the switchover situation, we set the following parameters so that the database is ready for migration, and then we restart the database.<\/p>\n<pre class=\"lang:default decode:true \">alter system set fal_server=orcl_stby;\r\nalter system set standby_file_management=auto;\r\nshutdown immediate;\r\nstartup;<\/pre>\n<p>8. We edit the tnsnames.ora file on both the primary and standby server. We write standby information to the primary server and primary server information to the standby server.<\/p>\n<pre class=\"lang:default decode:true \">vim $ORACLE_HOME\/network\/admin\/tnsnames.ora<\/pre>\n<p id=\"gNygKQc\"><img loading=\"lazy\" decoding=\"async\" width=\"772\" height=\"401\" class=\"size-full wp-image-29669 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_620be9a4ceb09.png\" alt=\"\" \/><\/p>\n<p>9. For the switchover situation, we create a page for the standby database from the redologs in the primary database. (It is not mandatory.)<\/p>\n<pre class=\"lang:default decode:true \">sqlplus \/ as sysdba\r\nalter database add standby logfile (\u2018\/u01\/app\/oracle\/oradata\/ORCL\/standby_redo01.log\u2019) size 50m;\r\nalter database add standby logfile (\u2018\/u01\/app\/oracle\/oradata\/ORCL\/standby_redo01.log\u2019) size 50m;\r\nalter database add standby logfile (\u2018\/u01\/app\/oracle\/oradata\/ORCL\/standby_redo02.log\u2019) size 50m;\r\nalter database add standby logfile (\u2018\/u01\/app\/oracle\/oradata\/ORCL\/standby_redo03.log\u2019) size 50m;<\/pre>\n<p>10. We take a backup of the primary database, including archive logs.<\/p>\n<pre class=\"lang:default decode:true \">rman target \/\r\nbackup database plus archivelog;<\/pre>\n<p>11. We create control file and pfile for standby database.<\/p>\n<pre class=\"lang:default decode:true \">alter database create standby controlfile as \u2018\/tmp\/orcl_stby.ctl\u2019;\r\ncreate pfile=\u2019\/tmp\/initorcl_stby.ora\u2019 from spfile;<\/pre>\n<p>12. We make arrangements for the standby database in the created initorcl_stby.ora file.<\/p>\n<pre class=\"lang:default decode:true \">vim \/tmp\/initorcl_stby.ora<\/pre>\n<pre class=\"lang:default decode:true \">*.db_name=\u2019orclstby\u2019\r\n*.db_unique_name=\u2019ORCL_STBY\u2019\r\n*.fal_server=\u2019ORCL\u2019\r\n*.log_archive_dest_1=\u2019SERVICE=orcl ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=ORCL\u2019<\/pre>\n<h3>Settings to be made in Standby Server:<\/h3>\n<p>1.We create the necessary directories on the standby server.<\/p>\n<pre class=\"lang:default decode:true \">mkdir -p \/u01\/app\/oracle\/oradata\/ORCL_STBY\r\ncd \/u01\/app\/oracle\/oradata\/ORCL_STBY\r\nmkdir controlfile datafile onlinelog\r\nmkdir -p \/u01\/app\/oracle\/fast_recovery_area\/ORCL_STBY\/\r\ncd \/u01\/app\/oracle\/fast_recovery_area\/ORCL_STBY\/\r\nmkdir archivelog backupset controlfile onlinelog\r\nmkdir -p $ORACLE_BASE\/admin\/$ORACLE_SID\/adump<\/pre>\n<p>2.Rman backup, archive logs, created control file, pfile and password file taken on the primary server are copied to the standby server using scp.<\/p>\n<pre class=\"lang:default decode:true \">scp \/tmp\/orcl_stby.ctl oracle@192.168.56.12:\/u01\/app\/oracle\/oradata\/ORCL_STBY\/controlfile\/<\/pre>\n<pre class=\"lang:default decode:true \">scp \/u01\/app\/oracle\/fast_recovery_area\/ORCL\/archivelog\/2021_03_23\/* oracle@192.168.56.12:\/u01\/app\/oracle\/fast_recovery_area\/ORCL\/archivelog\/2021_03_23\/<\/pre>\n<pre class=\"lang:default decode:true \">scp -P22 \/tmp\/initorcl_stby.ora oracle@192.168.56.12:\/u01\/app\/oracle\/product\/19.0.0\/dbhome_1\/dbs<\/pre>\n<pre class=\"lang:default decode:true \">scp -P22 $ORACLE_HOME\/dbs\/orapworcl oracle@192.168.56.12:\/u01\/app\/oracle\/product\/19.0.0\/dbhome_1\/dbs<\/pre>\n<p>3. The Listener restarts.<\/p>\n<pre class=\"lang:default decode:true \">lsnrctl reload<\/pre>\n<p>4. We return from the backup copied from the primary database on the server.<\/p>\n<pre class=\"lang:default decode:true \">export $ORACLE_SID=orcl_stby\r\nrman target \/\r\nstartup mount;\r\nrestore database;<\/pre>\n<p>5. After the necessary adjustments are made on both the primary and standby servers, we start the log apply process.<\/p>\n<pre class=\"lang:default decode:true \">alter database recover managed standby database using current logfile disconnect<\/pre>\n<p>6.\u00a0We can learn whether the archive log files are applied to the standby database with the following command.<\/p>\n<pre class=\"lang:default decode:true \">select sequence#, first_time, next_time, applied from v$archived_log order by sequence#;<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_29660\" class=\"pvc_stats all  \" data-element-id=\"29660\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s article, I will talk about Oracle Data Guard Installation. I used Oracle Linux 7.6 and Oracle Database 19C while installing. There are conditions that must be met in order to install Oracle Data Guard. These are as follows: Oracle database must be Enterprise edition. Both servers must have the same operating system. Oracle &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_29660\" class=\"pvc_stats all  \" data-element-id=\"29660\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":3068,"featured_media":29673,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[],"class_list":["post-29660","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle Data Guard Installation - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Data Guard Installation - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-15T18:30:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-15T19:17:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"776\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Melek Durdu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Melek Durdu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\"},\"author\":{\"name\":\"Melek Durdu\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b\"},\"headline\":\"Oracle Data Guard Installation\",\"datePublished\":\"2022-02-15T18:30:05+00:00\",\"dateModified\":\"2022-02-15T19:17:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\"},\"wordCount\":476,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\",\"name\":\"Oracle Data Guard Installation - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg\",\"datePublished\":\"2022-02-15T18:30:05+00:00\",\"dateModified\":\"2022-02-15T19:17:10+00:00\",\"description\":\"In today's article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg\",\"width\":776,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Data Guard Installation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b\",\"name\":\"Melek Durdu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g\",\"caption\":\"Melek Durdu\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Data Guard Installation - Database Tutorials","description":"In today's article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Data Guard Installation - Database Tutorials","og_description":"In today's article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.","og_url":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/","og_site_name":"Database Tutorials","article_published_time":"2022-02-15T18:30:05+00:00","article_modified_time":"2022-02-15T19:17:10+00:00","og_image":[{"width":776,"height":260,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg","type":"image\/jpeg"}],"author":"Melek Durdu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Melek Durdu","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/"},"author":{"name":"Melek Durdu","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b"},"headline":"Oracle Data Guard Installation","datePublished":"2022-02-15T18:30:05+00:00","dateModified":"2022-02-15T19:17:10+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/"},"wordCount":476,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/","url":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/","name":"Oracle Data Guard Installation - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg","datePublished":"2022-02-15T18:30:05+00:00","dateModified":"2022-02-15T19:17:10+00:00","description":"In today's article, I will talk about Oracle Data Guard Installation.I used Oracle Linux 7.6 and Oracle Database 19C while installing.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-7.jpg","width":776,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/15\/oracle-data-guard-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle Data Guard Installation"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b","name":"Melek Durdu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/58ca612f54e80376df00d6a004a13776cc9d0e2fe204974ec63003d803c26896?s=96&d=mm&r=g","caption":"Melek Durdu"},"url":"https:\/\/dbtut.com\/index.php\/author\/melekdurdu\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/29660","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/3068"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=29660"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/29660\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/29673"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=29660"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=29660"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=29660"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}