{"id":372,"date":"2023-05-05T13:09:11","date_gmt":"2023-05-05T11:09:11","guid":{"rendered":"https:\/\/ptdb.ch\/?p=372"},"modified":"2023-05-05T13:09:11","modified_gmt":"2023-05-05T11:09:11","slug":"oracle-how-to-relink-oracle-restart-grid-infrastructure-21c-on-oel-8-7","status":"publish","type":"post","link":"https:\/\/ptdb.ch\/?p=372","title":{"rendered":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7"},"content":{"rendered":"<p>This blog is about showing you, how to relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7. In case you have a full cluster installation, you might want to check out the following link as well.<\/p>\n<p><a href=\"https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/cwlin\/relinking-oracle-grid-infrastructure-for-a-cluster-binaries.html\">https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/cwlin\/relinking-oracle-grid-infrastructure-for-a-cluster-binaries.html<\/a><\/p>\n<p><strong>Step 1:<\/strong> As the grid user (GRID owner) stop the (has) High Availability Services<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ id -a\nuid=54322(grid) gid=54321(oinstall) groups=54321(oinstall),54330(racdba),54331(asmadmin),54332(asmdba),54333(asmoper)\n\n&#x5B;grid@ocm199 ~]$ crsctl stop has\nCRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'ocm199'\nCRS-2673: Attempting to stop 'ora.FRA.dg' on 'ocm199'\nCRS-2673: Attempting to stop 'ora.DATA.dg' on 'ocm199'\nCRS-2673: Attempting to stop 'ora.LISTENER.lsnr' on 'ocm199'\nCRS-2677: Stop of 'ora.DATA.dg' on 'ocm199' succeeded\nCRS-2677: Stop of 'ora.FRA.dg' on 'ocm199' succeeded\nCRS-2677: Stop of 'ora.LISTENER.lsnr' on 'ocm199' succeeded\nCRS-2673: Attempting to stop 'ora.evmd' on 'ocm199'\nCRS-2673: Attempting to stop 'ora.asm' on 'ocm199'\nCRS-2677: Stop of 'ora.asm' on 'ocm199' succeeded\nCRS-2677: Stop of 'ora.evmd' on 'ocm199' succeeded\nCRS-2673: Attempting to stop 'ora.cssd' on 'ocm199'\nCRS-2677: Stop of 'ora.cssd' on 'ocm199' succeeded\nCRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'ocm199' has completed\nCRS-4133: Oracle High Availability Services has been stopped.\n<\/pre>\n<p><strong>Step 2:<\/strong> As root user, unlock the (has) High Availability Services<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ su -\nPassword:\n&#x5B;root@ocm199 ~]# . oraenv\nORACLE_SID = &#x5B;root] ? +ASM\nThe Oracle base has been set to \/u01\/app\/oracle\n&#x5B;root@ocm199 ~]#\n\n&#x5B;root@ocm199 ~]# $ORACLE_HOME\/crs\/install\/roothas.sh -unlock\nUsing configuration parameter file: \/u01\/grid\/21c\/crs\/install\/crsconfig_params\nThe log of current session can be found at:\n  \/u01\/app\/oracle\/crsdata\/ocm199\/crsconfig\/haunlock__2023-05-05_08-31-37AM.log\n2023\/05\/05 08:31:48 CLSRSC-347: Successfully unlock \/u01\/grid\/21c\n&#x5B;root@ocm199 ~]#\n<\/pre>\n<p><strong>Step 3:<\/strong> Relink the Oracle Grid Infrastructure Standalone installation as follows (as grid user)<\/p>\n<p>First of all, rename the $ORACLE_HOME\/rdbms\/lib\/config.o file to force the creation of a new one:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ ls -l $ORACLE_HOME\/rdbms\/lib\/config.o\n-rw-r--r-- 1 grid oinstall 1352 Apr 28 11:33 \/u01\/grid\/21c\/rdbms\/lib\/config.o\n&#x5B;grid@ocm199 ~]$ mv $ORACLE_HOME\/rdbms\/lib\/config.o $ORACLE_HOME\/rdbms\/lib\/config.o.20230504a\n&#x5B;grid@ocm199 ~]$ ls -l $ORACLE_HOME\/rdbms\/lib\/config.o*\n-rw-r--r-- 1 grid oinstall 1352 Apr 28 11:33 \/u01\/grid\/21c\/rdbms\/lib\/config.o.20230504a\n&#x5B;grid@ocm199 ~]$\n<\/pre>\n<p>Now, start the relink process.<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ script \/tmp\/relink_has.txt\nScript started, file is \/tmp\/relink_has.txt\n&#x5B;grid@ocm199 ~]$ id -a\nuid=54322(grid) gid=54321(oinstall) groups=54321(oinstall),54330(racdba),54331(asmadmin),54332(asmdba),54333(asmoper)\n&#x5B;grid@ocm199 ~]$ env| egrep 'ORA|PATH' | sort\nLD_LIBRARY_PATH=\/u01\/grid\/21c\/lib:\/u01\/grid\/21c\/lib32\nMANPATH=:\nMODULEPATH=\/etc\/scl\/modulefiles:\/etc\/scl\/modulefiles:\/usr\/share\/Modules\/modulefiles:\/etc\/modulefiles:\/usr\/share\/modulefiles\nMODULEPATH_modshare=\/usr\/share\/Modules\/modulefiles:2:\/etc\/modulefiles:2:\/usr\/share\/modulefiles:2\nMODULES_RUN_QUARANTINE=LD_LIBRARY_PATH LD_PRELOAD\nORACLE_BASE=\/u01\/app\/oracle\nORACLE_HOME=\/u01\/grid\/21c\nORACLE_SID=+ASM\nPATH=\/home\/grid\/.local\/bin:\/home\/grid\/bin:\/usr\/share\/Modules\/bin:\/usr\/local\/bin:\/usr\/bin:\/usr\/local\/sbin:\/usr\/sbin:\/u01\/grid\/21c\/bin:\/u01\/grid\/21c\/OPatch\n&#x5B;grid@ocm199 ~]$\n&#x5B;grid@ocm199 ~]$\n&#x5B;grid@ocm199 ~]$ $ORACLE_HOME\/bin\/relink all\nwriting relink log to: \/u01\/grid\/21c\/install\/relinkActions2023-05-05_08-34-39AM.log\n&#x5B;grid@ocm199 ~]$\n&#x5B;grid@ocm199 ~]$ exit\nexit\nScript done, file is \/tmp\/relink_has.txt\n&#x5B;grid@ocm199 ~]$\n<\/pre>\n<p>After the relink finished, make sure that a new config.o file is present.<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ ls -l $ORACLE_HOME\/rdbms\/lib\/config.o*\n-rw-r--r-- 1 grid oinstall 1352 May  5 08:34 \/u01\/grid\/21c\/rdbms\/lib\/config.o\n-rw-r--r-- 1 grid oinstall 1352 Apr 28 11:33 \/u01\/grid\/21c\/rdbms\/lib\/config.o.20230504a\n&#x5B;grid@ocm199 ~]$\n\n&#x5B;grid@ocm199 ~]$ ls -l $ORACLE_HOME\/bin\/oracle*\n-rwsr-s--x 1 grid oinstall 475027096 May  5 08:35 \/u01\/grid\/21c\/bin\/oracle\n&#x5B;grid@ocm199 ~]$\n<\/pre>\n<p><strong>Step 4:<\/strong> Connect as root user (different session) and lock back the Oracle Grid Infrastructure Standalone installation as follows:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ su -\nPassword:\n&#x5B;root@ocm199 ~]# . oraenv\nORACLE_SID = &#x5B;root] ? +ASM\nThe Oracle base has been set to \/u01\/app\/oracle\n&#x5B;root@ocm199 ~]#\n&#x5B;root@ocm199 ~]# $ORACLE_HOME\/crs\/install\/roothas.sh -postpatch\nUsing configuration parameter file: \/u01\/grid\/21c\/crs\/install\/crsconfig_params\nThe log of current session can be found at:\n  \/u01\/app\/oracle\/crsdata\/ocm199\/crsconfig\/hapatch_2023-05-05_08-48-16AM.log\n2023\/05\/05 08:48:18 CLSRSC-329: Replacing Clusterware entries in file 'oracle-ohasd.service'\n2023\/05\/05 08:48:53 CLSRSC-672: Post-patch steps for patching GI home successfully completed.\n&#x5B;root@ocm199 ~]#\n<\/pre>\n<p><strong>Step 5:<\/strong> Verify that the all the OHAS services (ASM instance, diskgroups, listeners, DB instances, etc.) started. You might want to use the crsctl command for that.<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n&#x5B;grid@ocm199 ~]$ crsctl stat res -t\n--------------------------------------------------------------------------------\nName           Target  State        Server                   State details\n--------------------------------------------------------------------------------\nLocal Resources\n--------------------------------------------------------------------------------\nora.DATA.dg\n               ONLINE  ONLINE       ocm199                   STABLE\nora.FRA.dg\n               ONLINE  ONLINE       ocm199                   STABLE\nora.LISTENER.lsnr\n               ONLINE  INTERMEDIATE ocm199                   Not All Endpoints Re\n                                                             gistered,STABLE\nora.asm\n               ONLINE  ONLINE       ocm199                   Started,STABLE\nora.ons\n               OFFLINE OFFLINE      ocm199                   STABLE\n--------------------------------------------------------------------------------\nCluster Resources\n--------------------------------------------------------------------------------\nora.cdb.db\n      1        OFFLINE OFFLINE                               Instance Shutdown,ST\n                                                             ABLE\nora.cdb.pdb1.pdb\n      1        OFFLINE OFFLINE                               STABLE\nora.cssd\n      1        ONLINE  ONLINE       ocm199                   STABLE\nora.diskmon\n      1        OFFLINE OFFLINE                               STABLE\nora.evmd\n      1        ONLINE  ONLINE       ocm199                   STABLE\n--------------------------------------------------------------------------------\n&#x5B;grid@ocm199 ~]$\n<\/pre>\n<p>Ready.<\/p>\n<h3>Conclusion<\/h3>\n<p>It is not so complicated to relink the Oracle Restart (Grid Infrastructure) 21c on OEL 8.7.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This blog is about showing you, how to relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7. In case you have a full cluster installation, you might want to check out the following link as well. https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/cwlin\/relinking-oracle-grid-infrastructure-for-a-cluster-binaries.html Step 1: As the grid user (GRID owner) stop the (has) High Availability Services &#x5B;grid@ocm199 ~]$ id -a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[4],"tags":[18],"class_list":["post-372","post","type-post","status-publish","format-standard","hentry","category-oracle","tag-oracle","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ptdb.ch\/?p=372\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB\" \/>\n<meta property=\"og:description\" content=\"This blog is about showing you, how to relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7. In case you have a full cluster installation, you might want to check out the following link as well. https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/cwlin\/relinking-oracle-grid-infrastructure-for-a-cluster-binaries.html Step 1: As the grid user (GRID owner) stop the (has) High Availability Services &#x5B;grid@ocm199 ~]$ id -a [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ptdb.ch\/?p=372\" \/>\n<meta property=\"og:site_name\" content=\"ptdb - Platinum DB\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-05T11:09:11+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/#\\\/schema\\\/person\\\/0b7baf52d23e71d85e1c95442306090b\"},\"headline\":\"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7\",\"datePublished\":\"2023-05-05T11:09:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372\"},\"wordCount\":911,\"keywords\":[\"Oracle\"],\"articleSection\":[\"Oracle\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372\",\"url\":\"https:\\\/\\\/ptdb.ch\\\/?p=372\",\"name\":\"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ptdb.ch\\\/#website\"},\"datePublished\":\"2023-05-05T11:09:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/ptdb.ch\\\/#\\\/schema\\\/person\\\/0b7baf52d23e71d85e1c95442306090b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ptdb.ch\\\/?p=372\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/?p=372#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ptdb.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/#website\",\"url\":\"https:\\\/\\\/ptdb.ch\\\/\",\"name\":\"ptdb - Platinum DB\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ptdb.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ptdb.ch\\\/#\\\/schema\\\/person\\\/0b7baf52d23e71d85e1c95442306090b\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/ptdb.ch\"],\"url\":\"https:\\\/\\\/ptdb.ch\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB","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:\/\/ptdb.ch\/?p=372","og_locale":"en_US","og_type":"article","og_title":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB","og_description":"This blog is about showing you, how to relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7. In case you have a full cluster installation, you might want to check out the following link as well. https:\/\/docs.oracle.com\/en\/database\/oracle\/oracle-database\/21\/cwlin\/relinking-oracle-grid-infrastructure-for-a-cluster-binaries.html Step 1: As the grid user (GRID owner) stop the (has) High Availability Services &#x5B;grid@ocm199 ~]$ id -a [&hellip;]","og_url":"https:\/\/ptdb.ch\/?p=372","og_site_name":"ptdb - Platinum DB","article_published_time":"2023-05-05T11:09:11+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ptdb.ch\/?p=372#article","isPartOf":{"@id":"https:\/\/ptdb.ch\/?p=372"},"author":{"name":"admin","@id":"https:\/\/ptdb.ch\/#\/schema\/person\/0b7baf52d23e71d85e1c95442306090b"},"headline":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7","datePublished":"2023-05-05T11:09:11+00:00","mainEntityOfPage":{"@id":"https:\/\/ptdb.ch\/?p=372"},"wordCount":911,"keywords":["Oracle"],"articleSection":["Oracle"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/ptdb.ch\/?p=372","url":"https:\/\/ptdb.ch\/?p=372","name":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7 - ptdb - Platinum DB","isPartOf":{"@id":"https:\/\/ptdb.ch\/#website"},"datePublished":"2023-05-05T11:09:11+00:00","author":{"@id":"https:\/\/ptdb.ch\/#\/schema\/person\/0b7baf52d23e71d85e1c95442306090b"},"breadcrumb":{"@id":"https:\/\/ptdb.ch\/?p=372#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ptdb.ch\/?p=372"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ptdb.ch\/?p=372#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ptdb.ch\/"},{"@type":"ListItem","position":2,"name":"ORACLE: How To Relink Oracle Restart (Grid Infrastructure) 21c on OEL 8.7"}]},{"@type":"WebSite","@id":"https:\/\/ptdb.ch\/#website","url":"https:\/\/ptdb.ch\/","name":"ptdb - Platinum DB","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ptdb.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/ptdb.ch\/#\/schema\/person\/0b7baf52d23e71d85e1c95442306090b","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1a3dffc48c5f6bae0b88a9f0b2a986d48d322673fbc2880c5abbfab96e45da8a?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/ptdb.ch"],"url":"https:\/\/ptdb.ch\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/ptdb.ch\/index.php?rest_route=\/wp\/v2\/posts\/372","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ptdb.ch\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ptdb.ch\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ptdb.ch\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ptdb.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=372"}],"version-history":[{"count":0,"href":"https:\/\/ptdb.ch\/index.php?rest_route=\/wp\/v2\/posts\/372\/revisions"}],"wp:attachment":[{"href":"https:\/\/ptdb.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=372"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ptdb.ch\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=372"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ptdb.ch\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=372"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}