{"id":30551,"date":"2022-02-26T15:09:44","date_gmt":"2022-02-26T15:09:44","guid":{"rendered":"https:\/\/dbtut.com\/?p=30551"},"modified":"2022-02-26T15:11:08","modified_gmt":"2022-02-26T15:11:08","slug":"installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/","title":{"rendered":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8"},"content":{"rendered":"<p>In today&#8217;s article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8.<\/p>\n<p>For this, we need to add three disks of the same size to our virtual machine.<\/p>\n<p>First of all, we will perform the actions that need to be done before the installation. These operations are:<\/p>\n<p>1.Disk partition with FDISK command<br \/>\n2.Configuring the ASM(Automatic Storage Management) level<br \/>\n3.Labekinh ASM Discs<br \/>\n4.Preparations before installation of Oracle Grid Infrastructure<br \/>\n5.Oracle Grid Infrastructure installation<\/p>\n<h4>1.DISK PARTITION WITH FDISK COMMAND:<\/h4>\n<p>First of all, we will make a disk partition using the fdisk command to use our previously added disks. We need to do this with the root user. Using the command below, we can list our three disks that we added earlier. The output will be as follows.<\/p>\n<pre class=\"lang:default decode:true \">ls \/dev\/sd*\r\n\/dev\/sda \/dev\/sda1 \/dev\/sda2 \/dev\/sdb \/dev\/sdc \/dev\/sdd<\/pre>\n<p>Let&#8217;s make a disk partition for the sdb disk. The same procedures should be applied for sdc and sdd disks. After typing the command and entering, it will ask questions as in the photo. These should be answered as follows. The description of the options in the photo is as follows.<\/p>\n<p>n: create a new partition<br \/>\np: create primary partition<br \/>\n1: partition number<br \/>\nw: writes changes to the partition table.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# fdisk \/dev\/sdb<\/pre>\n<p id=\"bXrsnTR\"><img loading=\"lazy\" decoding=\"async\" width=\"434\" height=\"259\" class=\"size-full wp-image-30552 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a2b9c715f7.png\" alt=\"\" \/><\/p>\n<p>After the process is done for all three disks, we can check with the following command.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# ls -ltrh \/dev\/sd*<\/pre>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/miro.medium.com\/max\/1066\/1*B9tgt4L2nyvO0UGl09fARA.png\" \/><\/p>\n<p>As we can see in the photo above, the root user has authority on the disks. In order for the Oracle user to write files to the disk group, we need to make the access permission and the owner an oracle user. For this we use the following commands.<\/p>\n<pre class=\"lang:default decode:true \">chown oracle:oinstall \/dev\/sdb1\r\nchown oracle:oinstall \/dev\/sdc1\r\nchown oracle:oinstall \/dev\/sdd1\r\nchmod 600 \/dev\/sdb1\r\nchmod 600 \/dev\/sdc1\r\nchmod 600 \/dev\/sdd1<\/pre>\n<p>After the authorizations are given, we can list them with the following command. As we can see in the photo below, the authority of the disks has passed to the oracle user.<\/p>\n<pre class=\"lang:default decode:true \">ls -ltrh \/dev\/sd*<\/pre>\n<p id=\"LACrhrr\"><img loading=\"lazy\" decoding=\"async\" width=\"605\" height=\"185\" class=\"size-full wp-image-30554 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a2c8611b37.png\" alt=\"\" \/><\/p>\n<h4>2.Configuring ASM(Automatic Storage Management) Level:<\/h4>\n<p>The following two packages must be installed with the root user so that we can configure the ASM service.<\/p>\n<pre class=\"lang:default decode:true \">yum install -y oracleasm\r\nyum install -y oracleasm-support<\/pre>\n<p>After the package installations are complete, we can configure the ASM service using the command below. The output will be as follows. It wants us to write who the authorized user is in the output.<\/p>\n<p>We wrote oracle because the authorized user is oracle. Authorized group oinstall, we completed the configuration by saying y to the question of whether ASM drivers should start at boot and y to scan ASM disks at boot.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# oracleasm configure -i<\/pre>\n<p>&nbsp;<\/p>\n<h3><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/miro.medium.com\/max\/1400\/1*q8RKBrfo2bdysztyjPxqBw.png\" \/><\/h3>\n<h4>3.LABELING ASM DISCS:<\/h4>\n<p>We need to introduce the disks we have added to ASM. For this process, we need to run the following commands for the disks, respectively.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# oracleasm createdisk DATA1 \/dev\/sdb1\r\n[root@orcl ~]# oracleasm createdisk DATA2 \/dev\/sdc1\r\n[root@orcl ~]# oracleasm createdisk RECO \/dev\/sdd1<\/pre>\n<p id=\"jbsyKca\"><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"58\" class=\"size-full wp-image-30557 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a2f61b143e.png\" alt=\"\" \/><\/p>\n<p>After introducing our disks, we can list them with the following command.<\/p>\n<pre class=\"lang:default decode:true \">[root@orcl ~]# oracleasm listdisks<\/pre>\n<p id=\"kzVBINv\"><img loading=\"lazy\" decoding=\"async\" width=\"368\" height=\"103\" class=\"size-full wp-image-30558 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a2f9719ea9.png\" alt=\"\" \/><\/p>\n<h4>4.Preparations Before Oracle Grid Infrastructure Installation:<\/h4>\n<p>After introducing our discs, we can start making preliminary preparations. There are packages that we need to install before the Grid installation. For this, we can install it with the following command.<\/p>\n<pre class=\"lang:default decode:true \">yum install -y oracle-database-preinstall-19c<\/pre>\n<p>After the package installation is completed, the directories to be used by the grid infrastructure are created and the oracle user is authorized to operate on these directories.<\/p>\n<pre class=\"lang:default decode:true \">mkdir -p \/u01\/app\/oracle\/grid\r\nchown -R oracle:oinstall \/u01\r\nchmod -R 775 \/u01<\/pre>\n<p>After creating the directory and authorizing it, the environment file is created with vi for the grid and we add the following lines into it.<\/p>\n<pre class=\"lang:default decode:true \">vi .asmenv<\/pre>\n<pre class=\"lang:default decode:true \">PATH=$PATH:$HOME\/.local\/bin:$HOME\/bin\r\nexport ORACLE_SID=+ASM\r\nexport ORACLE_BASE=\/u01\/app\/oracle\r\nexport ORACLE_HOME=\/u01\/app\/oracle \/grid\r\nexport PATH=$GRID_HOME\/bin:$ORACLE_HOME\/OPatch:$PATH<\/pre>\n<h3>5.Oracle Grid Infrastructure 19C Installation:<\/h3>\n<p>We have completed the preliminary preparations. Now we will start the installation. For installation, we go to the grid directory and extract the setup file that we downloaded earlier. If you haven&#8217;t downloaded it, you can download it using the link below.<\/p>\n<pre class=\"lang:default decode:true \">https:\/\/www.oracle.com\/database\/technologies\/oracle19c-linux-downloads.html<\/pre>\n<p id=\"vcWLRrs\"><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"200\" class=\"size-full wp-image-30560 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a31090cf36.png\" alt=\"\" \/><\/p>\n<pre class=\"lang:default decode:true \">unzip \/setup\/LINUX.X64_193000_grid_home.zip<\/pre>\n<p>After the unzip process is completed, we can start the grid software installation using the command below.<\/p>\n<pre class=\"lang:default decode:true \">. .asmenv\r\n.\/gridSetup.sh<\/pre>\n<p>Since we will install Standalone Server, we will continue by choosing the second option.<\/p>\n<p id=\"qyzGaIn\"><img loading=\"lazy\" decoding=\"async\" width=\"448\" height=\"355\" class=\"size-full wp-image-30561 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a319b259bc.png\" alt=\"\" \/><\/p>\n<p>In this step, we will create an ASM disk group named DATA. The discs will not appear on first boot. For this, we select the Change Discovery Path option and write the location of the disks.<\/p>\n<p id=\"PTGEwSI\"><img loading=\"lazy\" decoding=\"async\" width=\"448\" height=\"354\" class=\"size-full wp-image-30562 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a31fc988c9.png\" alt=\"\" \/><\/p>\n<p>After completing the above process, our disks will now be listed. Continue by selecting DATA1 and DATA2 disks.<\/p>\n<p id=\"QUFfeDi\"><img loading=\"lazy\" decoding=\"async\" width=\"448\" height=\"354\" class=\"size-full wp-image-30564 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a3227aded2.png\" alt=\"\" \/><\/p>\n<p>In this step, we set the password of the user responsible for managing the ASM disk group.<\/p>\n<p id=\"surFrPe\"><img loading=\"lazy\" decoding=\"async\" width=\"448\" height=\"354\" class=\"size-full wp-image-30566 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a3fa1dbfbb.png\" alt=\"\" \/><\/p>\n<p>I continued without registering Enterprise Manager Cloud Control. You can register if you want.<\/p>\n<p id=\"GYfPmie\"><img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"357\" class=\"size-full wp-image-30567 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a3fc5d19bc.png\" alt=\"\" \/><\/p>\n<p>It is requested to determine the authorized group regarding ASM. We continue by selecting the previously created dba group.<\/p>\n<p id=\"zREZQTn\"><img loading=\"lazy\" decoding=\"async\" width=\"451\" height=\"358\" class=\"size-full wp-image-30568 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a3ffc5d2a4.png\" alt=\"\" \/><\/p>\n<p>Indicates the directory where the Grid software will be installed. Since we created the environment file before, automatic locations came.<\/p>\n<p id=\"BlVTbJV\"><img loading=\"lazy\" decoding=\"async\" width=\"452\" height=\"357\" class=\"size-full wp-image-30569 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a401a5c9db.png\" alt=\"\" \/><\/p>\n<p>We continue by clicking next without changing anything.<\/p>\n<p id=\"YrgtGNP\"><img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"355\" class=\"size-full wp-image-30570 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a403140d51.png\" alt=\"\" \/><\/p>\n<p>We continue by saying Next.<\/p>\n<p id=\"pKrRCFM\"><img loading=\"lazy\" decoding=\"async\" width=\"452\" height=\"356\" class=\"size-full wp-image-30571 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a405aae256.png\" alt=\"\" \/><\/p>\n<p>After the necessary tests for the installation are done, we continue by ticking the Ignore All option.<\/p>\n<p id=\"CMqqJBt\"><img loading=\"lazy\" decoding=\"async\" width=\"455\" height=\"358\" class=\"size-full wp-image-30572 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a407d96d68.png\" alt=\"\" \/><\/p>\n<p>It shows the information about the installation that we will do. If we are not going to make any changes, we can start the installation by clicking Install.<\/p>\n<p id=\"DqjVTwd\"><img loading=\"lazy\" decoding=\"async\" width=\"450\" height=\"357\" class=\"size-full wp-image-30573 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a40a517953.png\" alt=\"\" \/><\/p>\n<p>As seen below, we have successfully installed the Grid.<\/p>\n<p id=\"uvnZitk\"><img loading=\"lazy\" decoding=\"async\" width=\"448\" height=\"354\" class=\"size-full wp-image-30574 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/img_621a40bf32675.png\" alt=\"\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_30551\" class=\"pvc_stats all  \" data-element-id=\"30551\" 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, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks of the same size to our virtual machine. First of all, we will perform the actions that need to be done before the installation. These operations are: 1.Disk partition with FDISK &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_30551\" class=\"pvc_stats all  \" data-element-id=\"30551\" 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":30578,"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-30551","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>Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks\" \/>\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\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-26T15:09:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-26T15:11:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"831\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\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=\"8 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\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\"},\"author\":{\"name\":\"Melek Durdu\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b\"},\"headline\":\"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8\",\"datePublished\":\"2022-02-26T15:09:44+00:00\",\"dateModified\":\"2022-02-26T15:11:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\"},\"wordCount\":805,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\",\"name\":\"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg\",\"datePublished\":\"2022-02-26T15:09:44+00:00\",\"dateModified\":\"2022-02-26T15:11:08+00:00\",\"description\":\"In today's article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg\",\"width\":831,\"height\":291},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8\"}]},{\"@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":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials","description":"In today's article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks","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\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/","og_locale":"en_US","og_type":"article","og_title":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials","og_description":"In today's article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks","og_url":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/","og_site_name":"Database Tutorials","article_published_time":"2022-02-26T15:09:44+00:00","article_modified_time":"2022-02-26T15:11:08+00:00","og_image":[{"width":831,"height":291,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg","type":"image\/jpeg"}],"author":"Melek Durdu","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Melek Durdu","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/"},"author":{"name":"Melek Durdu","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f9c7aff3fe68fef0255caa38a944ce4b"},"headline":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8","datePublished":"2022-02-26T15:09:44+00:00","dateModified":"2022-02-26T15:11:08+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/"},"wordCount":805,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/","url":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/","name":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg","datePublished":"2022-02-26T15:09:44+00:00","dateModified":"2022-02-26T15:11:08+00:00","description":"In today's article, we will talk about Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8. For this, we need to add three disks","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2022\/02\/Ekran-Alintisi-12.jpg","width":831,"height":291},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2022\/02\/26\/installing-oracle-grid-infrastructure-19c-on-oracle-linux-7-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Installing Oracle Grid Infrastructure 19C on Oracle Linux 7.8"}]},{"@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\/30551","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=30551"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/30551\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/30578"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=30551"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=30551"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=30551"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}