{"id":55175,"date":"2023-10-16T18:15:51","date_gmt":"2023-10-16T18:15:51","guid":{"rendered":"https:\/\/dbtut.com\/?p=55175"},"modified":"2023-10-22T13:09:13","modified_gmt":"2023-10-22T13:09:13","slug":"single-instance-19c-database-installation-2","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/","title":{"rendered":"Single Instance 19C Database Installation Part 2"},"content":{"rendered":"<p>In today&#8217;s article, we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.<\/p>\n<p>For the first part:<\/p>\n<pre class=\"lang:default decode:true \">https:\/\/dbtut.com\/index.php\/2023\/08\/30\/single-instance-19c-database-installation\/<\/pre>\n<p>In Part 1, we will use 2 additional disks in the virtual machine we created for the Grid.<\/p>\n<p>One of these disks will be used as +DATA and the other as +FRA area.<\/p>\n<p>For this reason, if you haven&#8217;t added one, you need to add two extra disks.<\/p>\n<p>These added disks will appear as &#8220;sdb&#8221; and &#8220;sdc&#8221; in our operating system.<\/p>\n<p>Before starting the grid installation, some packages need to be installed.<\/p>\n<p>We make the following updates one by one and install the Grid and database setups for 19C via Oracle Delivery Cloud.<\/p>\n<pre class=\"lang:default decode:true \">https:\/\/edelivery.oracle.com\/osdc\/faces\/Home.jspx<\/pre>\n<p>Now we can start our operations by opening a new terminal window.<\/p>\n<p><strong>#:<\/strong> root user<br \/>\n<strong>$:<\/strong> oracle user<\/p>\n<pre class=\"lang:default decode:true \"># yum install -y oracle-database-preinstall-19c\r\n# yum update -y<\/pre>\n<p>We organize our hosts file according to our needs.<\/p>\n<pre class=\"lang:default decode:true \"># vi \/etc\/hosts\r\n192.168.100.90 database.parlayan.local database<\/pre>\n<p>We are shutting down our Selinux service.<\/p>\n<pre class=\"lang:default decode:true \">#vi \/etc\/selinux\/config\r\n \r\nSELINUX=disabled<\/pre>\n<p>We are shutting down our firewall services.<\/p>\n<pre class=\"lang:default decode:true \"># systemctl stop firewalld\r\n# systemctl disable firewalld<\/pre>\n<p>We create folders for Grid and Database.<\/p>\n<pre class=\"lang:default decode:true \">mkdir -p \/u01\/app\/oracle\/product\/19.0.0.0\/db\r\nmkdir -p \/u01\/app\/19.0.0.0\/grid\r\nchown -R oracle:oinstall \/u01\r\nchmod -R 775 \/u01<\/pre>\n<p>We create variables.<\/p>\n<p>Here you need to edit your Host and SID names according to your needs.<\/p>\n<pre class=\"lang:default decode:true \"># su - oracle\r\n$ cd \/home\/oracle\r\n$ vi .setEnv\r\n \r\nTMP=\/tmp; export TMP\r\nTMPDIR=$TMP; export TMPDIR\r\n \r\nORACLE_HOSTNAME=database.parlayan.local; export ORACLE_HOSTNAME\r\nORACLE_UNQNAME=BUGRA; export ORACLE_UNQNAME\r\nORACLE_BASE=\/u01\/app\/oracle; export ORACLE_BASE\r\nGRID_HOME=\/u01\/app\/19.0.0.0\/grid; export GRID_HOME\r\nDB_HOME=$ORACLE_BASE\/product\/19.0.0.0\/db; export DB_HOME\r\nORACLE_HOME=$DB_HOME; export ORACLE_HOME\r\nORACLE_SID=BUGRA; export ORACLE_SID\r\nORACLE_HOME_LISTNER=$ORACLE_HOME export ORACLE_HOME_LISTNER\r\nORACLE_TERM=xterm; export ORACLE_TERM\r\nBASE_PATH=\/usr\/sbin:$PATH; export BASE_PATH\r\nPATH=$ORACLE_HOME\/bin:$BASE_PATH; export PATH\r\n \r\nLD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib; export LD_LIBRARY_PATH\r\nCLASSPATH=$ORACLE_HOME\/JRE:$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib; export CLASSPATH\r\n \r\n \r\nalias grid_env='. \/home\/oracle\/.grid'\r\nalias db_env='. \/home\/oracle\/.db'<\/pre>\n<pre class=\"lang:default decode:true \"># su - oracle\r\n$ cd \/home\/oracle\r\n$ vi .db\r\n \r\nORACLE_SID=BUGRA; export ORACLE_SID\r\nORACLE_HOME=$DB_HOME; export ORACLE_HOME\r\nPATH=$ORACLE_HOME\/bin:$BASE_PATH; export PATH\r\n \r\nLD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib; export LD_LIBRARY_PATH\r\nCLASSPATH=$ORACLE_HOME\/JRE:$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib; export CLASSPATH\r\n<\/pre>\n<pre class=\"lang:default decode:true \"># su - oracle\r\n$ cd \/home\/oracle\r\n$ vi .grid\r\n \r\nORACLE_SID=+ASM; export ORACLE_SID\r\nORACLE_HOME=$GRID_HOME; export ORACLE_HOME\r\nPATH=$ORACLE_HOME\/bin:$BASE_PATH; export PATH\r\n \r\nLD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib; export LD_LIBRARY_PATH\r\nCLASSPATH=$ORACLE_HOME\/JRE:$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib; export CLASSPATH<\/pre>\n<p>We created our variables.<\/p>\n<p>Now we will prepare our disks for ASM.<\/p>\n<pre class=\"lang:default decode:true \"># ls \/dev\/sd*\r\n# \/dev\/sda  \/dev\/sda1  \/dev\/sdb  \/dev\/sdc<\/pre>\n<pre class=\"lang:default decode:true \"># fdisk \/dev\/sdb\r\n \r\nWelcome to fdisk (util-linux 2.23.2).\r\n \r\nChanges will remain in memory only, until you decide to write them.\r\nBe careful before using the write command.\r\n \r\nDevice does not contain a recognized partition table\r\nBuilding a new DOS disklabel with disk identifier 0xed980ecd.\r\n \r\nCommand (m for help): n\r\nPartition type:\r\n   p   primary (0 primary, 0 extended, 4 free)\r\n   e   extended\r\nSelect (default p): p\r\nPartition number (1-4, default 1):\r\nFirst sector (2048-2147483647, default 2048):\r\nUsing default value 2048\r\nLast sector, +sectors or +size{K,M,G} (2048-2147483647, default 2147483647):\r\nUsing default value 2147483647\r\nPartition 1 of type Linux and of size 1024 GiB is set\r\n \r\nCommand (m for help): w\r\nThe partition table has been altered!\r\n \r\nCalling ioctl() to re-read partition table.\r\nSyncing disks.<\/pre>\n<p>To-do list<\/p>\n<p>1.We give the &#8220;n&#8221; option in the question.<\/p>\n<p>2.The question asks for its type, we give the &#8220;p&#8221; option and create it as primary.<\/p>\n<p>3.We give the default option by saying &#8220;1&#8221; in the question.<\/p>\n<p>4.We give the default option to the 4th and 5th questions by pressing the &#8220;enter&#8221; key.<\/p>\n<p>6.We apply the changes by pressing the &#8220;w&#8221; key in the question.<\/p>\n<pre class=\"lang:default decode:true \"># fdisk \/dev\/sdbc\r\n \r\nWelcome to fdisk (util-linux 2.23.2).\r\n \r\nChanges will remain in memory only, until you decide to write them.\r\nBe careful before using the write command.\r\n \r\nDevice does not contain a recognized partition table\r\nBuilding a new DOS disklabel with disk identifier 0xed980ecd.\r\n \r\nCommand (m for help): n\r\nPartition type:\r\n   p   primary (0 primary, 0 extended, 4 free)\r\n   e   extended\r\nSelect (default p): p\r\nPartition number (1-4, default 1):\r\nFirst sector (2048-2147483647, default 2048):\r\nUsing default value 2048\r\nLast sector, +sectors or +size{K,M,G} (2048-2147483647, default 2147483647):\r\nUsing default value 2147483647\r\nPartition 1 of type Linux and of size 1024 GiB is set\r\n \r\nCommand (m for help): w\r\nThe partition table has been altered!\r\n \r\nCalling ioctl() to re-read partition table.\r\nSyncing disks.<\/pre>\n<p>To-do list<\/p>\n<p>1.We give the &#8220;n&#8221; option in the question.<\/p>\n<p>2.The question asks for its type, we give the &#8220;p&#8221; option and create it as primary.<\/p>\n<p>3.We give the default option by saying &#8220;1&#8221; in the question.<\/p>\n<p>4.We make the 4th and 5th questions the default option by pressing the &#8220;enter&#8221; key.<\/p>\n<p>6.We apply the changes by pressing the &#8220;w&#8221; key in the question.<\/p>\n<pre class=\"lang:default decode:true \"># ls \/dev\/sd*\r\n\/dev\/sda  \/dev\/sda1  \/dev\/sdb  \/dev\/sdb1  \/dev\/sdc  \/dev\/sdc1<\/pre>\n<p>We specify the disks we configure for ASM.<\/p>\n<pre class=\"lang:default decode:true \">#oracleasm configure -i\r\n \r\nConfiguring the Oracle ASM library driver.\r\n \r\nThis will configure the on-boot properties of the Oracle ASM library\r\ndriver.  The following questions will determine whether the driver is\r\nloaded on boot and what permissions it will have.  The current values\r\nwill be shown in brackets ('[]').  Hitting &lt;ENTER&gt; without typing an\r\nanswer will keep that current value.  Ctrl-C will abort.\r\n \r\nDefault user to own the driver interface []: oracle\r\nDefault group to own the driver interface []: dba\r\nStart Oracle ASM library driver on boot (y\/n) [n]: y\r\nScan for Oracle ASM disks on boot (y\/n) [y]: y\r\nWriting Oracle ASM library driver configuration: done<\/pre>\n<pre class=\"lang:default decode:true \"># oracleasm init<\/pre>\n<pre class=\"lang:default decode:true \"># oracleasm createdisk DATA1 \/dev\/sdb1\r\n# oracleasm createdisk FRA1 \/dev\/sdc1<\/pre>\n<p>Now we can start the installation.<\/p>\n<p>From now on, we will continue with our Oracle user.<\/p>\n<pre class=\"lang:default decode:true \"># su - oracle \r\n$ cd \/home\/oracle\r\n$ . .setEnv\r\n$ . .grid\r\n$ cd $ORACLE_HOME\r\nunzip V982068-01.zip\r\n.\/gridSetup.sh<\/pre>\n<figure style=\"width: 801px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_00.jpg\" alt=\"\" width=\"801\" height=\"600\" \/><figcaption class=\"wp-caption-text\">We will install Standalone, say &#8220;Configure Oracle Infrastructure for a Standalone Server&#8221; and continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 802px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_01.jpg\" alt=\"\" width=\"802\" height=\"605\" \/><figcaption class=\"wp-caption-text\">We will specify the disks we previously determined for ASM. We press the &#8220;Change Discovery Path&#8221; button.<\/figcaption><\/figure>\n<figure style=\"width: 801px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_1-1.jpg\" alt=\"\" width=\"801\" height=\"602\" \/><figcaption class=\"wp-caption-text\">Our disks are located under &#8220;\/dev\/oracleasm\/disks&#8221;. We write it in the Path field and press the &#8220;OK&#8221; button.<\/figcaption><\/figure>\n<figure style=\"width: 802px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_2-1.jpg\" alt=\"\" width=\"802\" height=\"601\" \/><figcaption class=\"wp-caption-text\">Disk Group Name will remain DATA, we select DATA1 among the disks listed in the middle and External as Redundancy and continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 802px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_3-1.jpg\" alt=\"\" width=\"802\" height=\"607\" \/><figcaption class=\"wp-caption-text\">We are setting a password for ASM, make a note of this password because you will need it. We set our password and continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 801px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_4-1.jpg\" alt=\"\" width=\"801\" height=\"601\" \/><figcaption class=\"wp-caption-text\">It warns us because we entered a short password. We say &#8220;YES&#8221;.<\/figcaption><\/figure>\n<figure style=\"width: 798px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_5-1.jpg\" alt=\"\" width=\"798\" height=\"604\" \/><figcaption class=\"wp-caption-text\">We continue with NEXT without touching here.<\/figcaption><\/figure>\n<figure style=\"width: 799px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_6-1.jpg\" alt=\"\" width=\"799\" height=\"604\" \/><figcaption class=\"wp-caption-text\">We DBA the group parts and continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 808px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_7-1.jpg\" alt=\"\" width=\"808\" height=\"604\" \/><figcaption class=\"wp-caption-text\">We say YES.<\/figcaption><\/figure>\n<figure style=\"width: 801px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_8-2.jpg\" alt=\"\" width=\"801\" height=\"607\" \/><figcaption class=\"wp-caption-text\">We continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 802px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_9-1.jpg\" alt=\"\" width=\"802\" height=\"603\" \/><figcaption class=\"wp-caption-text\">We continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 800px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_10-1.jpg\" alt=\"\" width=\"800\" height=\"602\" \/><figcaption class=\"wp-caption-text\">We continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 797px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_12-1.jpg\" alt=\"\" width=\"797\" height=\"605\" \/><figcaption class=\"wp-caption-text\">It gave a warning for our swap area. We select &#8220;ignore all&#8221; at the top right and continue with NEXT.<\/figcaption><\/figure>\n<figure style=\"width: 799px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_14-1.jpg\" alt=\"\" width=\"799\" height=\"604\" \/><figcaption class=\"wp-caption-text\">We say YES<\/figcaption><\/figure>\n<figure style=\"width: 804px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_15-1.jpg\" alt=\"\" width=\"804\" height=\"607\" \/><figcaption class=\"wp-caption-text\">We start the installation by clicking INSTALL.<\/figcaption><\/figure>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_16-1.jpg\" \/><\/p>\n<p id=\"tAlFxNz\"><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_17-1.jpg\" \/><\/p>\n<p>It asks us to run two scripts specified with the root user.<\/p>\n<p>We run it by opening a new terminal window.<\/p>\n<pre class=\"lang:default decode:true \"># cd \/u01\/app\/oraInventory\/\r\n# .\/orainstRoot.sh\r\n \r\nChanging permissions of \/u01\/app\/oraInventory.\r\nAdding read,write permissions for group.\r\nRemoving read,write,execute permissions for world.\r\n \r\nChanging groupname of \/u01\/app\/oraInventory to oinstall.\r\nThe execution of the script is complete.<\/pre>\n<pre class=\"lang:default decode:true \"># cd oracle\/19.3.0.0\/grid\/\r\n# .\/root.sh\r\nPerforming root user operation.\r\n \r\nThe following environment variables are set as:\r\n    ORACLE_OWNER= oracle\r\n    ORACLE_HOME=  \/u01\/app\/oracle\/19.3.0.0\/grid\r\n \r\nEnter the full pathname of the local bin directory: [\/usr\/local\/bin]:\r\n   Copying dbhome to \/usr\/local\/bin ...\r\n   Copying oraenv to \/usr\/local\/bin ...\r\n   Copying coraenv to \/usr\/local\/bin ...\r\n \r\n \r\nCreating \/etc\/oratab file...\r\nEntries will be added to the \/etc\/oratab file as needed by\r\nDatabase Configuration Assistant when a database is created\r\nFinished running generic part of root script.\r\nNow product-specific root actions will be performed.\r\nUsing configuration parameter file: \/u01\/app\/oracle\/19.3.0.0\/grid\/crs\/install\/crsconfig_params\r\nThe log of current session can be found at:\r\n  \/u01\/app\/oracle\/crsdata\/database\/crsconfig\/roothas_2020-04-17_04-05-08PM.log\r\n2020\/04\/17 16:05:15 CLSRSC-363: User ignored prerequisites during installation\r\nLOCAL ADD MODE\r\nCreating OCR keys for user 'oracle', privgrp 'oinstall'..\r\nOperation successful.\r\nLOCAL ONLY MODE\r\nSuccessfully accumulated necessary OCR keys.\r\nCreating OCR keys for user 'root', privgrp 'root'..\r\nOperation successful.\r\nCRS-4664: Node database successfully pinned.\r\n2020\/04\/17 16:05:25 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.service'\r\n \r\n \r\nDatabase     2020\/04\/17 16:06:22 \/u01\/app\/oracle\/crsdata\/database\/olr\/backup_20200417_160622.olr     724960844\r\n2020\/04\/17 16:06:23 CLSRSC-327: Successfully configured Oracle Restart for a standalone server\r\n<\/pre>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_18-1.jpg\" \/><\/p>\n<figure style=\"width: 801px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_19-1.jpg\" alt=\"\" width=\"801\" height=\"609\" \/><figcaption class=\"wp-caption-text\">The installation process is completed. Now we will create our FRA area.<\/figcaption><\/figure>\n<pre class=\"lang:default decode:true \">$ cd \/home\/oracle\r\n$ . .setEnv\r\n$ . .grid\r\n$ asmca<\/pre>\n<figure style=\"width: 953px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_20-1.jpg\" alt=\"\" width=\"953\" height=\"599\" \/><figcaption class=\"wp-caption-text\">Right click on the Disk Group on the left and click &#8220;Create&#8221;.<\/figcaption><\/figure>\n<figure style=\"width: 952px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_21-1.jpg\" alt=\"\" width=\"952\" height=\"602\" \/><figcaption class=\"wp-caption-text\">We select our FRA1 disk by typing FRA in the Disk Group Name field, External for Redundancy and click &#8220;OK&#8221;.<\/figcaption><\/figure>\n<p><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_22-1.jpg\" \/><\/p>\n<figure style=\"width: 948px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.cozumpark.com\/wp-content\/uploads\/2020\/04\/Screenshot_23-1.jpg\" alt=\"\" width=\"948\" height=\"598\" \/><figcaption class=\"wp-caption-text\">FRA area is created.<\/figcaption><\/figure>\n<p><strong>for control:<\/strong><\/p>\n<pre class=\"lang:default decode:true \">$ . .setEnv\r\n$ . .grid\r\n$ asmca\r\n$ asmcmd\r\nASMCMD&gt; ls\r\nDATA\/\r\nFRA\/\r\nASMCMD&gt;<\/pre>\n<p>Now that our disks are visible, our Grid installation is complete.<\/p>\n<p>After this, we will continue with the database installation.<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_55175\" class=\"pvc_stats all  \" data-element-id=\"55175\" 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 be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure. For the first part: https:\/\/dbtut.com\/index.php\/2023\/08\/30\/single-instance-19c-database-installation\/ In Part 1, we will use 2 additional disks in the virtual machine we created for the Grid. One of these disks will be used as +DATA and the &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_55175\" class=\"pvc_stats all  \" data-element-id=\"55175\" 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":574,"featured_media":55199,"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-55175","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>Single Instance 19C Database Installation Part 2 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.\" \/>\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\/2023\/10\/16\/single-instance-19c-database-installation-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Single Instance 19C Database Installation Part 2 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-16T18:15:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-22T13:09:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png\" \/>\n\t<meta property=\"og:image:width\" content=\"706\" \/>\n\t<meta property=\"og:image:height\" content=\"284\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Bu\u011fra PARLAYAN\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bu\u011fra PARLAYAN\" \/>\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\/2023\/10\/16\/single-instance-19c-database-installation-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\"},\"author\":{\"name\":\"Bu\u011fra PARLAYAN\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2\"},\"headline\":\"Single Instance 19C Database Installation Part 2\",\"datePublished\":\"2023-10-16T18:15:51+00:00\",\"dateModified\":\"2023-10-22T13:09:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\"},\"wordCount\":729,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png\",\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\",\"name\":\"Single Instance 19C Database Installation Part 2 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png\",\"datePublished\":\"2023-10-16T18:15:51+00:00\",\"dateModified\":\"2023-10-22T13:09:13+00:00\",\"description\":\"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png\",\"width\":706,\"height\":284},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Single Instance 19C Database Installation Part 2\"}]},{\"@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\/f07abb2de370d35d6c93e90d8eb2b9f2\",\"name\":\"Bu\u011fra PARLAYAN\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g\",\"caption\":\"Bu\u011fra PARLAYAN\"},\"description\":\"Burgra Parlayan is an experienced Database and Weblogic Administrator. After completing his technical \/ relevant training he has got involved with a serious amount of projects. He successfully managed database upgrade, database migration, database performance tuning projects for various public institutions.Currently he has been employed by one of the leading financial institutions called Turkiye Hayat &amp; Emeklilik as responsible administrator for Oracle Database and Oracle Middleware. He has been sharing his experience and knowledge by face to face training, personal blog and various social networking accounts to support the Oracle ecosystem continuously since 2010.\",\"sameAs\":[\"http:\/\/www.bugraparlayan.com.tr\/\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/bugraparlayan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Single Instance 19C Database Installation Part 2 - Database Tutorials","description":"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.","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\/2023\/10\/16\/single-instance-19c-database-installation-2\/","og_locale":"en_US","og_type":"article","og_title":"Single Instance 19C Database Installation Part 2 - Database Tutorials","og_description":"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.","og_url":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/","og_site_name":"Database Tutorials","article_published_time":"2023-10-16T18:15:51+00:00","article_modified_time":"2023-10-22T13:09:13+00:00","og_image":[{"width":706,"height":284,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png","type":"image\/png"}],"author":"Bu\u011fra PARLAYAN","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Bu\u011fra PARLAYAN","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/"},"author":{"name":"Bu\u011fra PARLAYAN","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2"},"headline":"Single Instance 19C Database Installation Part 2","datePublished":"2023-10-16T18:15:51+00:00","dateModified":"2023-10-22T13:09:13+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/"},"wordCount":729,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png","articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/","url":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/","name":"Single Instance 19C Database Installation Part 2 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png","datePublished":"2023-10-16T18:15:51+00:00","dateModified":"2023-10-22T13:09:13+00:00","description":"we will be explaining the 2nd part of Single Instance (Standalone) 19C Database Installation with Oracle Grid Infrastructure.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2023\/10\/Ekran-goruntusu-2023-10-16-211323.png","width":706,"height":284},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2023\/10\/16\/single-instance-19c-database-installation-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Single Instance 19C Database Installation Part 2"}]},{"@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\/f07abb2de370d35d6c93e90d8eb2b9f2","name":"Bu\u011fra PARLAYAN","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8fe63334d745f00f79f9f47b870aa143dd0f7615580c741a3b078aa4d09fa071?s=96&d=mm&r=g","caption":"Bu\u011fra PARLAYAN"},"description":"Burgra Parlayan is an experienced Database and Weblogic Administrator. After completing his technical \/ relevant training he has got involved with a serious amount of projects. He successfully managed database upgrade, database migration, database performance tuning projects for various public institutions.Currently he has been employed by one of the leading financial institutions called Turkiye Hayat &amp; Emeklilik as responsible administrator for Oracle Database and Oracle Middleware. He has been sharing his experience and knowledge by face to face training, personal blog and various social networking accounts to support the Oracle ecosystem continuously since 2010.","sameAs":["http:\/\/www.bugraparlayan.com.tr\/"],"url":"https:\/\/dbtut.com\/index.php\/author\/bugraparlayan\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55175","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\/574"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=55175"}],"version-history":[{"count":2,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55175\/revisions"}],"predecessor-version":[{"id":55216,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/55175\/revisions\/55216"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/55199"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=55175"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=55175"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=55175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}