{"id":3294,"date":"2018-02-27T09:12:15","date_gmt":"2018-02-27T12:12:15","guid":{"rendered":"http:\/\/www.dbarj.com.br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/"},"modified":"2018-02-27T09:12:15","modified_gmt":"2018-02-27T12:12:15","slug":"creating-and-running-an-oracle-18-db-instance-on-oracle-linux","status":"publish","type":"post","link":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/","title":{"rendered":"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux"},"content":{"rendered":"<p>In my <a href=\"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/installing-oracle-database-18-on-ol-7\/\" target=\"_blank\" rel=\"noopener\">previous post<\/a> I showed how to install the Oracle 18c Exadata binaries in a Oracle Linux 7. Next step is to create and run a database in this environment.<\/p>\n<p><span style=\"color: #993300;\"><strong>Note that this is intended for study only and test the amazing new features of 18c, following this article can make you probably face very weird problems and don&#8217;t open any SR in case you face those errors because the steps below are not supported by oracle.<\/strong><\/span><\/p>\n<p>The biggest problem of running the Exadata binaries on a non-exa env is that when you try to run a &#8220;startup nomount&#8221;, you get a weird:\u00a0<strong>ORA-12754: Feature &#8216;startup&#8217; is disabled due to missing capability &#8216;Runtime Environment&#8217;.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">[oracle@ora18cserver ~]$ sqlplus \/ as sysdba\r\n\r\nSQL*Plus: Release 18.0.0.0.0 Production on Mon Feb 26 12:02:07 2018\r\nVersion 18.1.0.0.0\r\n\r\nCopyright (c) 1982, 2017, Oracle.  All rights reserved.\r\n\r\nConnected to an idle instance.\r\n\r\nSQL&gt; startup nomount;\r\nORA-12754: Feature 'startup' is disabled due to missing capability 'Runtime Environment'.\r\nSQL&gt; \r\n<\/pre>\n<p>This error ends up preventing you from creating or stating any instance, even with dbca.<\/p>\n<p>After investigating, I&#8217;ve found out that\u00a0one library is causing it:<\/p>\n<ul>\n<li><strong><span style=\"font-family: 'courier new', courier, monospace;\">$ORACLE_HOME\/lib\/libserver18.a<\/span>\u00a0&#8211; Size:\u00a0442 MB<\/strong><\/li>\n<\/ul>\n<p>This is the main oracle database library and it is responsible for\u00a0trowing the error above. Disassembling a library and modifying it contents to avoid the error above is <span style=\"text-decoration: underline;\"><strong>not<\/strong><\/span> something people can easily do (and probably even not legal). So my advise is to replace it with a working one, after installing the binaries.<\/p>\n<p>However, you are probably asking where can you find a working version of this library? My recommendation is to create an Oracle Cloud trial account and deploy a 18c DB in your own Oracle Cloud environment.<\/p>\n<p><a href=\"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-oracle-18c-database-in-oci-classic\/\" target=\"_blank\" rel=\"noopener\">I&#8217;ve written another article showing step by step how to create a 18c in Oracle Cloud. Take a look.<\/a><\/p>\n<p><span style=\"color: #800000;\"><strong>UPDATE:<\/strong><\/span><\/p>\n<p style=\"padding-left: 30px;\"><span style=\"color: #800000;\">After publishing this article, I&#8217;ve received a few feedback of other methods people used to create the DB. Two of them brought my attention:<\/span><\/p>\n<ul>\n<li><a href=\"https:\/\/mahmoudhatem.wordpress.com\/2018\/03\/01\/playing-with-oracle-db-18c-on-premises-before-official-release\/\" target=\"_blank\" rel=\"noopener\">https:\/\/mahmoudhatem.wordpress.com\/2018\/03\/01\/playing-with-oracle-db-18c-on-premises-before-official-release\/<\/a> by\u00a0<strong>Hatem Mahmoud<\/strong>, which involves using\u00a0systemtap interceptions.<\/li>\n<li>Changing hidden parameter &#8220;_exadata_feature_on=true&#8221; before starting nomount the DB. Add this custom parameter in dbca or in your init file. Thanks\u00a0<strong>Pankaj Dhar<\/strong> for showing me that.<\/li>\n<\/ul>\n<p>Continuing with the library method, let me do a demo in my environment running in a Virtualbox, after I got the\u00a0<strong><span style=\"font-family: 'courier new', courier, monospace;\">libserver18.a<\/span><\/strong> from my OPC.<\/p>\n<p>First, let&#8217;s try to start the instance in nomount and check what happens:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[oracle@ora18cserver ~]$ export ORACLE_HOME=\/u01\/app\/oracle\/product\/18.0.0\/dbhome_1\r\n[oracle@ora18cserver ~]$ export ORACLE_SID=orcl\r\n[oracle@ora18cserver ~]$ export PATH=$PATH:$ORACLE_HOME\/bin\r\n[oracle@ora18cserver ~]$ sqlplus \/ as sysdba\r\n\r\nSQL*Plus: Release 18.0.0.0.0 Production on Mon Feb 26 21:51:12 2018\r\nVersion 18.1.0.0.0\r\n\r\nCopyright (c) 1982, 2017, Oracle.  All rights reserved.\r\n\r\n\r\nConnected to:\r\nOracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\r\nVersion 18.1.0.0.0\r\n\r\nSQL&gt; startup nomount;\r\nORA-01078: failure in processing system parameters\r\nLRM-00109: could not open parameter file '\/u01\/app\/oracle\/product\/18.0.0\/dbhome_1\/dbs\/initorcl.ora'\r\nSQL&gt; exit\r\nDisconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\r\nVersion 18.1.0.0.0\r\n[oracle@ora18cserver ~]$<\/pre>\n<p>I forgot the pfile:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[oracle@ora18cserver ~]$ echo \"db_name=orcl\" &gt; $ORACLE_HOME\/dbs\/initorcl.ora\r\n[oracle@ora18cserver ~]$ sqlplus \/ as sysdba\r\n\r\nSQL*Plus: Release 18.0.0.0.0 Production on Mon Feb 26 21:58:29 2018\r\nVersion 18.1.0.0.0\r\n\r\nCopyright (c) 1982, 2017, Oracle.  All rights reserved.\r\n\r\nConnected to an idle instance.\r\n\r\nSQL&gt; startup nomount;\r\nORA-12754: Feature 'startup' is disabled due to missing capability 'Runtime Environment'.\r\nSQL&gt; exit\r\nDisconnected\r\n[oracle@ora18cserver ~]$<\/pre>\n<p>So here is the point we got the\u00a0<strong>ORA-12754<\/strong> error.<\/p>\n<p>Now let me replace the lib for the one from my OPC environment and see what happens:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"shell\">[oracle@ora18cserver ~]$ cd $ORACLE_HOME\/lib\r\n[oracle@ora18cserver lib]$ mv libserver18.a libserver18.a.orig\r\n[oracle@ora18cserver lib]$ unzip ~\/libserver18.a.zip -d .\/\r\nArchive:  \/home\/oracle\/libserver18.a.zip\r\n  inflating: .\/libserver18.a         \r\n[oracle@ora18cserver lib]$ cd\r\n[oracle@ora18cserver ~]$ relink all\r\nwriting relink log to: \/u01\/app\/oracle\/product\/18.0.0\/dbhome_1\/install\/relink_2018-02-26_22-01-57PM.log\r\n[oracle@ora18cserver ~]$ sqlplus \/ as sysdba\r\n\r\nSQL*Plus: Release 18.0.0.0.0 Production on Mon Feb 26 22:02:54 2018\r\nVersion 18.1.0.0.0\r\n\r\nCopyright (c) 1982, 2017, Oracle.  All rights reserved.\r\n\r\nConnected to an idle instance.\r\n\r\nSQL&gt; startup nomount;\r\nORACLE instance started.\r\n\r\nTotal System Global Area  243266936 bytes\r\nFixed Size\t\t    8656248 bytes\r\nVariable Size\t\t  180355072 bytes\r\nDatabase Buffers\t   50331648 bytes\r\nRedo Buffers\t\t    3923968 bytes\r\nSQL&gt; exit\r\nDisconnected from Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production\r\nVersion 18.1.0.0.0\r\n[oracle@ora18cserver lib]$<\/pre>\n<p>Note that the file\u00a0<strong>libserver18.a.zip\u00a0<\/strong>in my home is the lib file from my OPC. Also, I had to run a\u00a0<em><strong>relink all<\/strong><\/em> in the end. Otherwise the error would persist.<\/p>\n<p><strong>ORA-12754<\/strong> error is not showing anymore, let&#8217;s create an instance with dbca!<\/p>\n<p>I won&#8217;t cover here all the steps of dbca here because you are probably very used to it.<\/p>\n<p id=\"chyEbll\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3101 size-large\" src=\"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png\" alt=\"\" width=\"520\" height=\"396\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png 1024w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-300x228.png 300w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-768x584.png 768w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3.png 1604w\" sizes=\"auto, (max-width: 520px) 100vw, 520px\" \/><\/p>\n<p>Wait until all the actions are performed:<\/p>\n<p id=\"YWMOfXA\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3098 size-large\" src=\"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b4e0e1681-1024x779.png\" alt=\"\" width=\"520\" height=\"396\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b4e0e1681-1024x779.png 1024w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b4e0e1681-300x228.png 300w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b4e0e1681-768x584.png 768w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b4e0e1681.png 1604w\" sizes=\"auto, (max-width: 520px) 100vw, 520px\" \/><\/p>\n<p>And after some time it completed:<\/p>\n<p id=\"lboGaYA\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3100 size-large\" src=\"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b6653c6cb-1024x779.png\" alt=\"\" width=\"520\" height=\"396\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b6653c6cb-1024x779.png 1024w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b6653c6cb-300x228.png 300w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b6653c6cb-768x584.png 768w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b6653c6cb.png 1604w\" sizes=\"auto, (max-width: 520px) 100vw, 520px\" \/><\/p>\n<p>And lastly we can see we have our 18c database running in the Virtualbox:<\/p>\n<p id=\"ctLyTgL\"><img loading=\"lazy\" decoding=\"async\" width=\"2408\" height=\"1680\" class=\"alignnone size-full wp-image-3099 \" src=\"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b60b834aa.png\" alt=\"\" srcset=\"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b60b834aa.png 2408w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b60b834aa-300x209.png 300w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b60b834aa-768x536.png 768w, https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b60b834aa-1024x714.png 1024w\" sizes=\"auto, (max-width: 2408px) 100vw, 2408px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"color: #339966;\"><strong>Happy 18c playing.<\/strong><\/span><\/p>\n<p>&nbsp;<\/p>\n<b>Have you enjoyed? Please leave a comment or give a \ud83d\udc4d!<\/b>\n<div class='watch-action'><div class='watch-position align-left'><div class='action-like'><a class='lbg-style2 like-3294 jlk' href='javascript:void(0)' data-task='like' data-post_id='3294' data-nonce='de4404f630' rel='nofollow'><img class='wti-pixel' src='https:\/\/www.dbarj.com.br\/wp-content\/plugins\/wti-like-post\/images\/pixel.gif' title='Like' \/><span class='lc-3294 lc'>0<\/span><\/a><\/div><\/div> <div class='status-3294 status align-left'><\/div><\/div><div class='wti-clear'><\/div>","protected":false},"excerpt":{"rendered":"<p>In my previous post I showed how to install the Oracle 18c Exadata binaries in a Oracle Linux 7. Next step is to create and run a database in this environment. Note that this is intended for study only and test the amazing new features of 18c, following this article can make you probably face &hellip; <\/p>\n<p><a class=\"more-link btn\" href=\"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/\">Continue lendo<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,49],"tags":[],"class_list":["post-3294","post","type-post","status-publish","format-standard","hentry","category-database","category-virtualbox","item-wrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux - DBA - Rodrigo Jorge - Oracle Tips and Guides<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"DBA RJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/\"},\"author\":{\"name\":\"DBA RJ\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"headline\":\"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux\",\"datePublished\":\"2018-02-27T12:12:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/\"},\"wordCount\":513,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/img_5a94b80a1c1e3-1024x779.png\",\"articleSection\":[\"Oracle Database General\",\"VirtualBox\"],\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/\",\"name\":\"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux - DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/img_5a94b80a1c1e3-1024x779.png\",\"datePublished\":\"2018-02-27T12:12:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/img_5a94b80a1c1e3-1024x779.png\",\"contentUrl\":\"http:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/img_5a94b80a1c1e3-1024x779.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/2018\\\/02\\\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#website\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/\",\"name\":\"DBA - Rodrigo Jorge - Oracle Tips and Guides\",\"description\":\"Blog about Databases, Security and High Availability\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/pt-br\\\/#\\\/schema\\\/person\\\/28a44ca3a6633fe4156ad1ea209d40a9\",\"name\":\"DBA RJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"url\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"contentUrl\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\",\"width\":712,\"height\":712,\"caption\":\"DBA RJ\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.dbarj.com.br\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/RodrigoJorgePOUG19.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux - DBA - Rodrigo Jorge - Oracle Tips and Guides","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:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/","twitter_misc":{"Escrito por":"DBA RJ","Est. tempo de leitura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#article","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/"},"author":{"name":"DBA RJ","@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"headline":"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux","datePublished":"2018-02-27T12:12:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/"},"wordCount":513,"commentCount":0,"publisher":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"image":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#primaryimage"},"thumbnailUrl":"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png","articleSection":["Oracle Database General","VirtualBox"],"inLanguage":"pt-BR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/","url":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/","name":"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux - DBA - Rodrigo Jorge - Oracle Tips and Guides","isPartOf":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#primaryimage"},"thumbnailUrl":"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png","datePublished":"2018-02-27T12:12:15+00:00","breadcrumb":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#primaryimage","url":"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png","contentUrl":"http:\/\/www.dbarj.com.br\/wp-content\/uploads\/2018\/02\/img_5a94b80a1c1e3-1024x779.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbarj.com.br\/pt-br\/2018\/02\/creating-and-running-an-oracle-18-db-instance-on-oracle-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dbarj.com.br\/pt-br\/"},{"@type":"ListItem","position":2,"name":"Creating and running an Oracle 18.0.0.0.0 DB instance on Oracle Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.dbarj.com.br\/pt-br\/#website","url":"https:\/\/www.dbarj.com.br\/pt-br\/","name":"DBA - Rodrigo Jorge - Oracle Tips and Guides","description":"Blog about Databases, Security and High Availability","publisher":{"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbarj.com.br\/pt-br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":["Person","Organization"],"@id":"https:\/\/www.dbarj.com.br\/pt-br\/#\/schema\/person\/28a44ca3a6633fe4156ad1ea209d40a9","name":"DBA RJ","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","url":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","contentUrl":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png","width":712,"height":712,"caption":"DBA RJ"},"logo":{"@id":"https:\/\/www.dbarj.com.br\/wp-content\/uploads\/2019\/09\/RodrigoJorgePOUG19.png"}}]}},"_links":{"self":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts\/3294","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/comments?post=3294"}],"version-history":[{"count":0,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/posts\/3294\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/media?parent=3294"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/categories?post=3294"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbarj.com.br\/pt-br\/wp-json\/wp\/v2\/tags?post=3294"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}