{"id":17488,"date":"2020-11-18T22:05:11","date_gmt":"2020-11-18T22:05:11","guid":{"rendered":"https:\/\/dbtut.com\/?p=17488"},"modified":"2020-11-18T22:10:21","modified_gmt":"2020-11-18T22:10:21","slug":"how-to-install-oracle-rac-19c-on-linux","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/","title":{"rendered":"How To Install Oracle RAC 19c on Linux"},"content":{"rendered":"<p>In today&#8217;s article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.<\/p>\n<h3>What is Oracle RAC?<\/h3>\n<p>Oracle Real Application Cluster is a cluster structure in which multiple servers work for a single service using shared disk technology prepared for an uninterrupted database access. Thanks to this structure that works with a minimum of two servers, we aim for uninterrupted service at maximum efficiency in production environments.<\/p>\n<p>For Real Application Cluster installation, we will use two Oracle Linux operating systems, two ethernet cards connected to these operating systems and a shared disk that can be seen by both operating systems.<\/p>\n<h3>Install Oracle RAC 19c on Linux<\/h3>\n<h4>Installation Steps:<\/h4>\n<p>Our installation steps will be as follows;<\/p>\n<p><strong>Step1: <a href=\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-linux\/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Install Oracle Linux<\/a><\/strong><\/p>\n<p><strong>Step2: <a href=\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-grid-infrastructure-19c-on-linux\/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Install Oracle Grid Infrastructure 19c on Linux<\/a><\/strong><\/p>\n<p><strong>Step3: How To Install Oracle 19c Database on Linux<\/strong><\/p>\n<p>First you should read <strong>Step1: <a href=\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-linux\/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Install Oracle Linux<\/a>.<\/strong> If you already have Oracle Linux, you should configure your operating systems as follows.<\/p>\n<h3>Network Configuration for Oracle RAC<\/h3>\n<p>We install our operating system by following the steps on the link above. In this way, we need to use two operations. I&#8217;ll use the names node1.bugraparlayan.local for the first operating system and node2.bugraparlayan.local for the second operating system.<\/p>\n<p>Now that the operating system is ready, let&#8217;s edit the network and packages.<\/p>\n<p>First of all, we make our Network settings. In this way, my servers can be accessed via the relevant ip address.<\/p>\n<p><strong>Public IP Definitions for Node1:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">IP Address : 192.168.132.130\r\nSubnet    : 255.255.255.0\r\nGateway   : 192.168.132.2\r\n \r\n# nano \/etc\/sysconfig\/network-scripts\/ifcfg-ens160\r\n \r\nPROXY_METHOD=none\r\nBROWSER_ONLY=no\r\nBOOTPROTO=none\r\nDEFROUTE=yes\r\nIPV4_FAILURE_FATAL=no\r\nIPV6INIT=yes\r\nIPV6_AUTOCONF=yes\r\nIPV6_DEFROUTE=yes\r\nIPV6_FAILURE_FATAL=no\r\nIPV6_ADDR_GEN_MODE=stable-privacy\r\nNAME=ens160\r\nUUID=2c37e065-760b-460c-a0eb-6d388b6c7134\r\nDEVICE=ens160\r\nONBOOT=yes\r\nIPADDR=192.168.132.130\r\nPREFIX=24\r\nGATEWAY=192.168.132.2\r\nDNS1=192.168.132.2<\/pre>\n<p><strong>Public IP Definitions for Node2:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">IP Address : 192.168.132.131\r\nSubnet    : 255.255.255.0\r\nGateway   : 192.168.132.2\r\n \r\n# nano \/etc\/sysconfig\/network-scripts\/ifcfg-ens160\r\n \r\nPROXY_METHOD=none\r\nBROWSER_ONLY=no\r\nBOOTPROTO=none\r\nDEFROUTE=yes\r\nIPV4_FAILURE_FATAL=no\r\nIPV6INIT=yes\r\nIPV6_AUTOCONF=yes\r\nIPV6_DEFROUTE=yes\r\nIPV6_FAILURE_FATAL=no\r\nIPV6_ADDR_GEN_MODE=stable-privacy\r\nNAME=ens160\r\nUUID=2c37e065-760b-460c-a0eb-6d388b6c7134\r\nDEVICE=ens160\r\nONBOOT=yes\r\nIPADDR=192.168.132.1301\r\nPREFIX=24\r\nGATEWAY=192.168.132.2\r\nDNS1=192.168.132.2<\/pre>\n<p>We configure our second ethernet card for interconnect connections.<\/p>\n<p><strong>Private IP Definitions for Node1:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">IP Address : 172.16.132.130\r\nSubnet    : 255.255.255.0\r\nGateway   : 172.16.132.2\r\n \r\n#nano \/etc\/sysconfig\/network-scripts\/ifcfg-ens224\r\n \r\nTYPE=Ethernet\r\nPROXY_METHOD=none\r\nBROWSER_ONLY=no\r\nBOOTPROTO=none\r\nDEFROUTE=yes\r\nIPV4_FAILURE_FATAL=no\r\nIPV6INIT=yes\r\nIPV6_AUTOCONF=yes\r\nIPV6_DEFROUTE=yes\r\nIPV6_FAILURE_FATAL=no\r\nIPV6_ADDR_GEN_MODE=stable-privacy\r\nNAME=ens224\r\nUUID=e0338812-35e5-48ad-b139-987da44807ed\r\nDEVICE=ens224\r\nONBOOT=no\r\nIPADDR=172.16.132.130\r\nPREFIX=24\r\nGATEWAY=172.16.132.2\r\nDNS1=172.16.132.2<\/pre>\n<p><strong>Private IP Definitions for Node2:<\/strong><\/p>\n<pre class=\"lang:default decode:true\">IP Address : 172.16.132.130\r\nSubnet    : 255.255.255.0\r\nGateway   : 172.16.132.2\r\n \r\n#nano \/etc\/sysconfig\/network-scripts\/ifcfg-ens224\r\n \r\nTYPE=Ethernet\r\nPROXY_METHOD=none\r\nBROWSER_ONLY=no\r\nBOOTPROTO=none\r\nDEFROUTE=yes\r\nIPV4_FAILURE_FATAL=no\r\nIPV6INIT=yes\r\nIPV6_AUTOCONF=yes\r\nIPV6_DEFROUTE=yes\r\nIPV6_FAILURE_FATAL=no\r\nIPV6_ADDR_GEN_MODE=stable-privacy\r\nNAME=ens224\r\nUUID=e0338812-35e5-48ad-b139-987da44807ed\r\nDEVICE=ens224\r\nONBOOT=no\r\nIPADDR=172.16.132.131\r\nPREFIX=24\r\nGATEWAY=172.16.132.2\r\nDNS1=172.16.132.2<\/pre>\n<h4>Restart NetworkManager Service on Oracle Linux<\/h4>\n<p>Since we have added public and private ip information on both our servers, we can restart our network service.<\/p>\n<h4>Disable Selinux on Oracle Linux<\/h4>\n<p>We disable Selinux on Node1 and Node2.<\/p>\n<pre class=\"lang:default decode:true \"># nano \/etc\/selinux\/config\r\n \r\nSELINUX=disable<\/pre>\n<h4>Disable Firewall on Oracle Linux<\/h4>\n<p>We disable Firewall services on Node1 and Node2.<\/p>\n<pre class=\"lang:default decode:true \"># systemctl stop firewalld.service\r\n \r\n# systemctl disable firewalld.service<\/pre>\n<h4>NTP Configuration on Oracle Linux<\/h4>\n<p>We do our NTP configuration for node 1 and node 2 and restart the service.<\/p>\n<pre class=\"lang:default decode:true \">nano \/etc\/chrony.conf\r\n \r\nserver tr.pool.ntp.org iburst\r\n \r\n# systemctl restart chronyd.service\r\n# systemctl enable chronyd.service<\/pre>\n<h4>Install Packages<\/h4>\n<p>We install our packages required for installations. The preinstall package will automatically create priority users for us. We run it for Node1 and Node2.<\/p>\n<pre class=\"lang:default decode:true \"># yum install oracle-database-preinstall-19c\r\n# yum install oracleasm-support\r\n \r\n# reboot<\/pre>\n<h4>Create Users<\/h4>\n<p>I create the following users on Node1 and Node2 and assign them to groups.<\/p>\n<pre class=\"lang:default decode:true \"># groupadd -g 54333 asmdba\r\n# groupadd -g 54334 asmoper\r\n# groupadd -g 54335 asmadmin\r\n# useradd -m -u 54341 -g oinstall -G dba,asmadmin,asmdba,asmoper -d \/home\/grid -s \/bin\/bash grid\r\n# usermod -a -G asmdba oracle\r\n# passwd oracle\r\n# passwd grid<\/pre>\n<p>I create the following folders on Node1 and Node2 and configure the related rights.<\/p>\n<pre class=\"lang:default decode:true \">mkdir -p \/u01\/app\/grid\/19.3.0\/gridhome_1\r\nmkdir -p \/u01\/app\/grid\/gridbase\/\r\nmkdir -p \/u01\/app\/oracle\/database\/19.3.0\/dbhome_1\r\nchown -R oracle.oinstall \/u01\/\r\nchown -R grid.oinstall \/u01\/app\/grid\r\nchmod -R 775 \/u01\/<\/pre>\n<p>Now we will make our profile definitions. This process will again be for Node1 and Node2.<\/p>\n<p>I am making the .bash_profile definitions for the &#8220;oracle&#8221; user on Node 1.<\/p>\n<pre class=\"lang:default decode:true \"># nano \/home\/oracle\/.bash_profile\r\n \r\n \r\n# Oracle Settings\r\n \r\nexport TMP=\/tmp\r\nexport TMPDIR=$TMP\r\nexport ORACLE_HOSTNAME=node1.bugraparlayan.local\r\nexport ORACLE_UNQNAME=BUGRA19C\r\nexport ORACLE_BASE=\/u01\/app\/oracle\/database\/19.3.0\/\r\nexport DB_HOME=$ORACLE_BASE\/dbhome_1\r\nexport ORACLE_HOME=$DB_HOME\r\nexport ORACLE_SID=BUGRA19C1\r\nexport ORACLE_TERM=xterm\r\nexport PATH=\/usr\/sbin:\/usr\/local\/bin:$PATH\r\nexport PATH=$ORACLE_HOME\/bin:$PATH\r\nexport LD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib\r\nexport CLASSPATH=$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib<\/pre>\n<p>I make the .bash_profile definitions for the &#8220;grid&#8221; user on Node 1.<\/p>\n<pre class=\"lang:default decode:true \"># nano \/home\/grid\/.bash_profile\r\n \r\n \r\n# Grid Settings\r\nexport TMP=\/tmp\r\nexport TMPDIR=$TMP\r\nexport ORACLE_HOSTNAME=node1.bugraparlayan.local\r\nexport ORACLE_BASE=\/u01\/app\/grid\/gridbase\/\r\nexport ORACLE_HOME=\/u01\/app\/grid\/19.3.0\/gridhome_1\r\nexport GRID_BASE=\/u01\/app\/grid\/gridbase\/\r\nexport GRID_HOME=\/u01\/app\/grid\/19.3.0\/gridhome_1\r\nexport ORACLE_SID=+ASM1\r\nexport ORACLE_TERM=xterm\r\nexport PATH=\/usr\/sbin:\/usr\/local\/bin:$PATH\r\nexport PATH=$ORACLE_HOME\/bin:$PATH\r\nexport LD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib\r\nexport CLASSPATH=$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib<\/pre>\n<p>I am making my .bash_profile definitions for the &#8220;oracle&#8221; user on Node2.<\/p>\n<pre class=\"lang:default decode:true \">#nano \/home\/oracle\/.bash_profile\r\n \r\nexport TMP=\/tmp\r\nexport TMPDIR=$TMP\r\nexport ORACLE_HOSTNAME=node2.bugraparlayan.local\r\nexport ORACLE_UNQNAME=BUGRA19C\r\nexport ORACLE_BASE=\/u01\/app\/oracle\/database\/19.3.0\/\r\nexport DB_HOME=$ORACLE_BASE\/dbhome_1\r\nexport ORACLE_HOME=$DB_HOME\r\nexport ORACLE_SID=BUGRA19C2\r\nexport ORACLE_TERM=xterm\r\nexport PATH=\/usr\/sbin:\/usr\/local\/bin:$PATH\r\nexport PATH=$ORACLE_HOME\/bin:$PATH\r\nexport LD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib\r\nexport CLASSPATH=$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib<\/pre>\n<p>Node2 \u00fczerindeki \u201d grid \u201d kullan\u0131c\u0131s\u0131 i\u00e7in .bash_profile tan\u0131mlar\u0131m\u0131 yap\u0131yorum.<\/p>\n<pre class=\"lang:default decode:true \"># Grid Settings\r\nexport TMP=\/tmp\r\nexport TMPDIR=$TMP\r\nexport ORACLE_HOSTNAME=rac2.bugraparlayan.local\r\nexport ORACLE_BASE=\/u01\/app\/grid\/gridbase\/\r\nexport ORACLE_HOME=\/u01\/app\/grid\/19.3.0\/gridhome_1\r\nexport GRID_BASE=\/u01\/app\/grid\/gridbase\/\r\nexport GRID_HOME=\/u01\/app\/grid\/19.3.0\/gridhome_1\r\nexport ORACLE_SID=+ASM2\r\nexport ORACLE_TERM=xterm\r\nexport PATH=\/usr\/sbin:\/usr\/local\/bin:$PATH\r\nexport PATH=$ORACLE_HOME\/bin:$PATH\r\nexport LD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib\r\nexport CLASSPATH=$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib<\/pre>\n<p>We add the following information to the Node1 and Node2 hosts file.<\/p>\n<pre class=\"lang:default decode:true \"># nano \/etc\/hosts\r\n \r\n192.168.132.130 node1 node1.bugraparlayan.local\r\n192.168.132.131 node2 node2.bugraparlayan.local\r\n192.168.132.132 node1-vip node1-vip.bugraparlayan.local\r\n192.168.132.133 node2-vip node2-vip.bugraparlayan.local\r\n192.168.132.134 bgrdb-scan bgrdb-scan.bugraparlayan.local\r\n192.168.132.135 bgrdb-scan bgrdb-scan.bugraparlayan.local\r\n192.168.132.136 bgrdb-scan bgrdb-scan.bugraparlayan.local\r\n172.16.132.10 node1-priv node1-priv.bugraparlayan.local\r\n172.16.132.11 node2-priv node2-priv.bugraparlayan.local<\/pre>\n<p>Step1 is completed. Now you should read below article to install oracle grid 19c.<\/p>\n<p><strong>Step2:<a href=\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-grid-infrastructure-19c-on-linux\/\" target=\"_blank\" rel=\"noopener noreferrer\">How To Install Oracle Grid Infrastructure 19c on Linux<\/a><\/strong><\/p>\n<h3>Step3:<\/h3>\n<h3>How To Install Oracle 19c on Linux<\/h3>\n<p>In Step1 and Step2, I explained the operating system and Grid installation. In this section, I will explain Oracle 19c Database installation on Grid infrastructure.<\/p>\n<p>We can quickly start our Oracle Database installation. First we will just install the software and then create the Database.<\/p>\n<pre class=\"lang:default decode:true \">[root@node1 ~]# su - oracle\r\n[oracle@node1 ~]$ cd $ORACLE_HOME\r\n[oracle@node1 ~]$ .\/runInstaller<\/pre>\n<p id=\"exEIoKJ\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17547 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb581b86d1d5.png\" alt=\"\" width=\"623\" height=\"480\" \/><\/p>\n<p id=\"tthAgLe\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17548 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb581d6f10a2.png\" alt=\"\" width=\"630\" height=\"481\" \/><\/p>\n<p id=\"PgPvnAr\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17549 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb581ff5a235.png\" alt=\"\" width=\"636\" height=\"487\" \/><\/p>\n<p>Since I will need some technical requirements, I want to take advantage of the &#8220;Enterprise Edition&#8221; benefits. For this reason, I will continue with &#8220;Enterprise Edition&#8221; selected.<\/p>\n<p id=\"jXyGeMb\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17550 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb58263ce971.png\" alt=\"\" width=\"680\" height=\"517\" \/><\/p>\n<p id=\"zCeivIF\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17551 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb582834fd94.png\" alt=\"\" width=\"683\" height=\"523\" \/><\/p>\n<p id=\"JtWsQJJ\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17552 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb582abd35ea.png\" alt=\"\" width=\"693\" height=\"528\" \/><\/p>\n<p>In the last step, it will ask us to run a script. You can make the script run automatically by selecting the pointed section below.<\/p>\n<p id=\"iqYIOKA\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17553 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5837360465.png\" alt=\"\" width=\"701\" height=\"534\" \/><\/p>\n<p id=\"RlTsWhE\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17554 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb58390df0d2.png\" alt=\"\" width=\"694\" height=\"535\" \/><\/p>\n<p id=\"ymDCskv\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17555 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb583b28e623.png\" alt=\"\" width=\"690\" height=\"532\" \/><\/p>\n<p>In this step, the &#8220;root.sh&#8221; script will be run on both servers.<\/p>\n<pre class=\"lang:default decode:true \">[root@node1 dbhome_1]# \/u01\/app\/oracle\/database\/19.3.0\/dbhome_1\/root.sh\r\n\r\nPerforming root user operation.\r\n\r\nThe following environment variables are set as:\r\nORACLE_OWNER= oracle\r\nORACLE_HOME= \/u01\/app\/oracle\/database\/19.3.0\/dbhome_1\/\r\n\r\nEnter the full pathname of the local bin directory: [\/usr\/local\/bin]:\r\nThe contents of \u201cdbhome\u201d have not changed. No need to overwrite.\r\nThe contents of \u201coraenv\u201d have not changed. No need to overwrite.\r\nThe contents of \u201ccoraenv\u201d have not changed. No need to overwrite.\r\n\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.<\/pre>\n<pre class=\"lang:default decode:true \">p\/oracle\/database\/19.3.0\/dbhome_1\/\r\n\r\nEnter the full pathname of the local bin directory: [\/usr\/local\/bin]:\r\nThe contents of \u201cdbhome\u201d have not changed. No need to overwrite.\r\nThe contents of \u201coraenv\u201d have not changed. No need to overwrite.\r\nThe contents of \u201ccoraenv\u201d have not changed. No need to overwrite.\r\n\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.<\/pre>\n<p id=\"RRRlWdP\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17556 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5841dd8170.png\" alt=\"\" width=\"659\" height=\"502\" \/><\/p>\n<h3>Create Oracle 19c Database<\/h3>\n<p id=\"xTgvixJ\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17557 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb584793a0db.png\" alt=\"\" width=\"658\" height=\"496\" \/><\/p>\n<p id=\"yPifXSX\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17558 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb584a3120d3.png\" alt=\"\" width=\"663\" height=\"505\" \/><\/p>\n<p id=\"RqJKBhR\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17559 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb584c9b6412.png\" alt=\"\" width=\"665\" height=\"508\" \/><\/p>\n<p id=\"rolxBeG\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17560 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb584edef511.png\" alt=\"\" width=\"666\" height=\"508\" \/><\/p>\n<p id=\"jVCLqjJ\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17561 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb58512c7758.png\" alt=\"\" width=\"669\" height=\"503\" \/><\/p>\n<p id=\"psAmrUE\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17562 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb585f41457c.png\" alt=\"\" width=\"679\" height=\"512\" \/><\/p>\n<p id=\"EPXbZfA\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17563 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5860f6432d.png\" alt=\"\" width=\"681\" height=\"519\" \/><\/p>\n<p id=\"cZzLIdr\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17564 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5863870245.png\" alt=\"\" width=\"685\" height=\"519\" \/><\/p>\n<p id=\"HYQZbvF\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17565 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb58658b13cb.png\" alt=\"\" width=\"685\" height=\"523\" \/><\/p>\n<p id=\"zbbWoBb\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17566 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5867beaf51.png\" alt=\"\" width=\"682\" height=\"522\" \/><\/p>\n<p id=\"quqhPdi\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17567 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb5869fcabcb.png\" alt=\"\" width=\"681\" height=\"514\" \/><\/p>\n<p id=\"LKqSvfF\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17568 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb586d445cf1.png\" alt=\"\" width=\"685\" height=\"518\" \/><\/p>\n<p id=\"SFTnVIS\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-17569 aligncenter\" src=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/img_5fb586fa9b1c9.png\" alt=\"\" width=\"683\" height=\"522\" \/><\/p>\n<pre class=\"lang:default decode:true \">[oracle@node1 ~]$ sqlplus \/ as sysdba\r\n\r\nSQL*Plus: Release 19.0.0.0.0 - Production on Thu Oct 1 10:34:28 2020\r\nVersion 19.3.0.0.0\r\n\r\nCopyright (c) 1982, 2019, Oracle.  All rights reserved.\r\n\r\n\r\nConnected to:\r\nOracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production\r\nVersion 19.3.0.0.0\r\n\r\nSQL&gt;<\/pre>\n<p>Finally, our database is ready. We have come to the end of our Oracle Database 19C Real Application Clusters RAC article. In the following articles, we will talk about the advantages of RAC usage and the most important services in detail.<\/p>\n<p>Hope to see you again,<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_17488\" class=\"pvc_stats all  \" data-element-id=\"17488\" 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 install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8. What is Oracle RAC? Oracle Real Application Cluster is a cluster structure in which multiple servers work for a single service using shared disk technology prepared for an uninterrupted database access. Thanks to this structure that &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_17488\" class=\"pvc_stats all  \" data-element-id=\"17488\" 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":17598,"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":[10242,10238],"class_list":["post-17488","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle","tag-create-oracle-19c-database","tag-how-to-install-oracle-rac-19c-on-linux"],"aioseo_notices":[],"a3_pvc":{"activated":true,"total_views":11545,"today_views":0},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Install Oracle RAC 19c on Linux - Database Tutorials<\/title>\n<meta name=\"description\" content=\"In today&#039;s article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.\" \/>\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\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Oracle RAC 19c on Linux - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"In today&#039;s article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-18T22:05:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-18T22:10:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"914\" \/>\n\t<meta property=\"og:image:height\" content=\"519\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\"},\"author\":{\"name\":\"Bu\u011fra PARLAYAN\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2\"},\"headline\":\"How To Install Oracle RAC 19c on Linux\",\"datePublished\":\"2020-11-18T22:05:11+00:00\",\"dateModified\":\"2020-11-18T22:10:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\"},\"wordCount\":685,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg\",\"keywords\":[\"Create Oracle 19c Database\",\"how to install oracle rac 19c on linux\"],\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\",\"name\":\"How To Install Oracle RAC 19c on Linux - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg\",\"datePublished\":\"2020-11-18T22:05:11+00:00\",\"dateModified\":\"2020-11-18T22:10:21+00:00\",\"description\":\"In today's article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg\",\"width\":914,\"height\":519},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Oracle RAC 19c on Linux\"}]},{\"@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":"How To Install Oracle RAC 19c on Linux - Database Tutorials","description":"In today's article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.","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\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Oracle RAC 19c on Linux - Database Tutorials","og_description":"In today's article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.","og_url":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/","og_site_name":"Database Tutorials","article_published_time":"2020-11-18T22:05:11+00:00","article_modified_time":"2020-11-18T22:10:21+00:00","og_image":[{"width":914,"height":519,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg","type":"image\/jpeg"}],"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\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/"},"author":{"name":"Bu\u011fra PARLAYAN","@id":"https:\/\/dbtut.com\/#\/schema\/person\/f07abb2de370d35d6c93e90d8eb2b9f2"},"headline":"How To Install Oracle RAC 19c on Linux","datePublished":"2020-11-18T22:05:11+00:00","dateModified":"2020-11-18T22:10:21+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/"},"wordCount":685,"commentCount":1,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg","keywords":["Create Oracle 19c Database","how to install oracle rac 19c on linux"],"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/","url":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/","name":"How To Install Oracle RAC 19c on Linux - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg","datePublished":"2020-11-18T22:05:11+00:00","dateModified":"2020-11-18T22:10:21+00:00","description":"In today's article, we will install Oracle RAC 19c on Linux. Our installation will be on Oracle Linux 8.","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/11\/oraclerac.jpg","width":914,"height":519},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/11\/18\/how-to-install-oracle-rac-19c-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Install Oracle RAC 19c on Linux"}]},{"@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\/17488","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=17488"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/17488\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/17598"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=17488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=17488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=17488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}