{"id":8762,"date":"2015-12-04T11:10:37","date_gmt":"2015-12-04T15:10:37","guid":{"rendered":"http:\/\/onlineappsdba.com\/?p=8762"},"modified":"2017-04-07T06:35:20","modified_gmt":"2017-04-07T10:35:20","slug":"weblogic-12-1-3-on-centos-vagrant","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/","title":{"rendered":"WebLogic 12.1.3 on CentOS vagrant"},"content":{"rendered":"<p>This post is related to\u00a0<strong>Weblogic Vagrant<\/strong>\u00a0from our <a href=\"http:\/\/k21academy.com\/weblogic\" target=\"_blank\">Oracle Weblogic Administration\u00a0Training<\/a> (<span style=\"color: #ff0000;\">next batch starts on 8th April, 2017 \u2013\u00a0Register now <\/span>) where we cover <strong>Weblogic Installation, configuration, Clustering, Logging, Deployment, JDBC and JMS etc.<\/strong><\/p>\n<p><span style=\"text-decoration: underline;\"><strong>WebLogic Vagrant<\/strong><\/span><strong>:\u00a0<\/strong>The WebLogic Vagrant project is a set of subprojects that will help you create virtual machines pretty easily, by using Vagrant to set up the VMs with VirtualBox, and Puppet to help creating the necessary logical infrastructure.<\/p>\n<p><strong>1.<\/strong> <strong>Getting Started:\u00a0<\/strong><\/p>\n<p>Download the following on your Windows host machine. Here I am working on Windows 8.1 platform.<\/p>\n<ol>\n<li><a href=\"http:\/\/www.vagrantup.com\" target=\"_blank\">Vagrant latest version<\/a><\/li>\n<li><a href=\"http:\/\/www.virtualbox.org\" target=\"_blank\">Oracle Virtual Box latest stable version<\/a><\/li>\n<li><a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html\" target=\"_blank\">Oracle JDK latest version<\/a><\/li>\n<li><a href=\"http:\/\/www.oracle.com\/technetwork\/middleware\/downloads\/index-087510.html\" target=\"_blank\">Oracle WebLogic 12.1.3 generic version<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/git-for-windows\" target=\"_blank\">Git for Windows<\/a><\/li>\n<li><a href=\"http:\/\/www.chiark.greenend.org.uk\/~sgtatham\/putty\/download.html\" target=\"_blank\">PuTTy for Windows<\/a><\/li>\n<\/ol>\n<p>Install the Vagrant, Oracle VirtualBox, Git all are wizard based easy to install them.<\/p>\n<p><strong>2. Git Clone WebLogic-Vagrant:<\/strong><\/p>\n<p>You can get the puppet, shell scripts which are used to configure the WebLogic on CentOS VirtualBox.<\/p>\n<pre>git clone WebLogic-Vagrant\r\n<\/pre>\n<p>Sync folder guest CentOS with host Windows<\/p>\n<p>Make all binaries available in Software folder, Here I have used <strong>&#8216;F:\/Softwares&#8217;<\/strong> contains binaries <strong>JDK<\/strong>, <strong>WebLogic<\/strong> <strong>12c jar<\/strong> file.<\/p>\n<p><strong>3. Modifications in site.pp:<\/strong><\/p>\n<p>The puppet script which prepared according to the JDK1.7 available that time. Now latest JDK 1.8 and it varies. So you might need to modify these values on your machine as well according to young version of JDK.<\/p>\n<p>Here I am sharing the part of site.pp file.<\/p>\n<pre class=\"rb\">class java {\r\n  require os\r\n\r\n  $remove = [ \"java-1.7.0-openjdk.x86_64\", \"java-1.6.0-openjdk.x86_64\" ]\r\n\r\n  package { $remove:\r\n    ensure  =&gt; absent,\r\n  }\r\n\r\n  include jdk8\r\n\r\n  jdk8::install7{ 'jdk1.8.0_45':\r\n      version                   =&gt; \"8u45\" ,\r\n      fullVersion               =&gt; \"jdk1.8.0_45\",\r\n      alternativesPriority      =&gt; 18000,\r\n      x64                       =&gt; true,\r\n      downloadDir               =&gt; \"\/var\/tmp\/install\",\r\n\r\n      urandomJavaFix            =&gt; true,\r\n      rsakeySizeFix             =&gt; true,\r\n      cryptographyExtensionFile =&gt; \"UnlimitedJCEPolicyJDK8.zip\",\r\n      sourcePath                =&gt; \"\/software\",\r\n  }\r\n}\r\n<\/pre>\n<p>The most important one is first line where WebLogic domain template will be used to create new domain.<\/p>\n<p><strong>4. Changes in vagrantfile:<\/strong><\/p>\n<p>The vagrantfile contains a virtual machine definitions that contains WebLogic admin server, Further you can configure node1, node2 machines and have a production simulated environment.<\/p>\n<pre># -*- mode: ruby -*-\r\n# vi: set ft=ruby :\r\n\r\n# Vagrantfile API\/syntax version. Don't touch unless you know what you're doing!\r\nVAGRANTFILE_API_VERSION = \"2\"\r\n\r\nVagrant.configure(VAGRANTFILE_API_VERSION) do |config|\r\n  config.vm.define \"wls12cbox\" , primary: true do |config|\r\n  config.vm.box = \"centos-6.5-x86_64\"\r\n  config.vm.box_url = \"https:\/\/dl.dropboxusercontent.com\/s\/np39xdpw05wfmv4\/centos-6.5-x86_64.box\"\r\n   config.vm.hostname = \"vagrantcentos64.example.com\"\r\n  config.vm.network :forwarded_port, guest: 7001, host: 7001, auto_correct: true\r\n  config.vm.network :private_network, ip: \"192.168.33.10\"\r\n  config.vm.synced_folder \"F:\/Softwares\", \"\/vagrant_data\"\r\n\r\n  config.vm.provider :virtualbox do |vb|\r\n       vb.customize [\"modifyvm\", :id, \"--memory\", \"3072\"]\r\n  end\r\n  config.vm.provision :puppet do |puppet|\r\n    puppet.manifests_path = \"puppet\/manifests\"\r\n    puppet.module_path = \"puppet\/modules\"\r\n    puppet.manifest_file  = \"site.pp\"\r\n    puppet.options = \"--verbose\"\r\n  end\r\n  end\r\n end\r\n<\/pre>\n<p>Now this vagrant box is ready for execution.<\/p>\n<pre>vagrant up\r\n<\/pre>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\" wp-image-9188\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg\" alt=\"WebLogic Vagrant box up\" width=\"399\" height=\"322\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg 300w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp.jpg 754w\" sizes=\"auto, (max-width: 399px) 100vw, 399px\" \/><\/a><\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Vagrant Provision<\/strong><\/span><\/p>\n<p>There are many ways to provision the Virtual boxes we can even use Bash Shell scripts to ensure the required configurations made once boxes is launched.<\/p>\n<p>After the VirtualBox creation we can apply the configuration tool such as\u00a0puppet, Chef or Ansible\u00a0etc to make a reusable environment within number of minutes. Whereas same was took places in the earlier versions for months. So this configuration procedure would greatly improves the team work, and focus on the targeted issues rather than configuration of infrastructure this way it is helps Agility for JEE projects.<\/p>\n<p>vagrant provision some times requires reload the boxes reload will reapply the Vagrantfile changes.\u00a0We can further develop this to give better\u00a0box by editing the Vagrantfile and reloading it.<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantReloadProvision1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-9210\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantReloadProvision1-300x179.jpg\" alt=\"VagrantReloadProvision\" width=\"456\" height=\"272\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantReloadProvision1-300x179.jpg 300w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantReloadProvision1.jpg 985w\" sizes=\"auto, (max-width: 456px) 100vw, 456px\" \/><\/a><\/p>\n<p>Note that when the vagrant provision fails then we need to find the reasons and fix in the Vagrantfile. The vagrant reload command will help to reload the updated configuration for box.<\/p>\n<p><strong>5. Puppet Manifestation:<\/strong><\/p>\n<p>Puppet manifestation provisions that CentOS box must contain oracle user, WebLogic server required kernel parameters all OS level changes are configured and then install WebLogic with<strong> installwls.pp<\/strong> script. This provisioning uses silent mode installation where it required two files:<\/p>\n<ol>\n<li>responseFile which is provided in xml format silent_1213.xml.erb and<\/li>\n<li>oracle inventory defined by puppet.<\/li>\n<\/ol>\n<p>Here is the <strong>silent.xml.erb<\/strong> that is required for WebLogic 12.1.3. In this script the <strong>ORACLE_HOME<\/strong> is substituted from the calling puppet script <strong>installWls.pp<\/strong> file.<\/p>\n<pre>[ENGINE]\r\n \r\n#DO NOT CHANGE THIS.\r\nResponse File Version=1.0.0.0.0\r\n \r\n[GENERIC]\r\n \r\n#The oracle home location. This can be an existing Oracle Home or a new Oracle Home \r\nORACLE_HOME=&lt;%= @mdwHome %&gt;\r\n \r\n#Set this variable value to the Installation Type selected. \r\ne.g. WebLogic Server, Coherence, Complete with Examples.\r\nINSTALL_TYPE=WebLogic Server\r\n \r\n#Provide the My Oracle Support Username. If you wish to ignore Oracle \r\nConfiguration Manager configuration provide empty string for user name.\r\nMYORACLESUPPORT_USERNAME=\r\n \r\n#Provide the My Oracle Support Password\r\nMYORACLESUPPORT_PASSWORD=\r\n \r\n#Set this to true if you wish to decline the security updates. \r\nSetting this to true and providing empty string for My Oracle Support username will \r\nignore the Oracle Configuration   Manager configuration\r\nDECLINE_SECURITY_UPDATES=true\r\n \r\n#Set this to true if My Oracle Support Password is specified\r\nSECURITY_UPDATES_VIA_MYORACLESUPPORT=false\r\n \r\n#Provide the Proxy Host\r\nPROXY_HOST=\r\n \r\n#Provide the Proxy Port\r\nPROXY_PORT=\r\n \r\n#Provide the Proxy Username\r\nPROXY_USER=\r\n \r\n#Provide the Proxy Password\r\nPROXY_PWD=\r\n \r\n#Type String (URL format) Indicates the OCM Repeater URL which should be \r\nof the format [scheme[Http\/Https]]:\/\/[repeater host]:[repeater port]\r\nCOLLECTOR_SUPPORTHUB_URL=\r\n<\/pre>\n<p><strong>6. The nodemanager .pp configuration changes for WebLogic 12.1.3:<\/strong><\/p>\n<p>Here I have validating the <strong>$version<\/strong> value present in the <strong>nodemanager.pp<\/strong> file and executing the startNodeManager command with the existing value given error.<\/p>\n<p>Whenever the server is booted immediately Nodemanager will be launched. If you use puppet provision that will ensure the WebLogic admin server running when the box is launched.<\/p>\n<p>If you want to learn more issues like above or wish to discuss challenges you are hitting in Oracle Weblogic Server, register for our <a href=\"http:\/\/www.k21technologies.com\/oracle-weblogic-admin-training\" target=\"_blank\"><strong>Oracle Weblogic Administration\u00a0<\/strong><strong>Training<\/strong>.<\/a><\/p>\n<p><span style=\"color: #ff0000;\">We are so confident on quality and value of our training that We provide <strong>100% Money back guarantee<\/strong> so in unlikely case of you didn\u2019t get results in 60 Days provided that you attended sessions, did activity Guides, Applied for Jobs, just drop us a mail before third session and We\u2019ll refund FULL money.<\/span><\/p>\n<p>Did you subscribe to our <a href=\"https:\/\/www.youtube.com\/channel\/UCRgn-SAQZa4I41zLH03LoOQ?sub_confirmation=1\" target=\"_blank\">YouTube Channel<\/a>\u00a0(1536 already subscribed) and <a href=\"https:\/\/www.facebook.com\/groups\/k21technologies\" target=\"_blank\">Private FaceBook Group<\/a>\u00a0(2639 Members)\u00a0?<\/p>\n<p>&nbsp;<\/p>\n<div style=\"padding: 15px; margin-bottom: 15px; background: #ffffde; border: 1px solid #ddd; width: 85%;\" align=\"center\">\n<h2 align=\"left\">Learn Oracle Weblogic Server Administration<\/h2>\n<p>&nbsp;<\/p>\n<p>Live Interactive Sessions + Dedicated Machine To Practice + Lifetime Access To Membership Portal + FREE Retaking Sessions for Next 2 Years + On-Job Support + Project\u00a0Support and much more &#8230;<\/p>\n<p><a href=\"http:\/\/k21academy.com\/weblogic\/\" target=\"_blank\">Click here to\u00a0Register Today<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This post is related to\u00a0Weblogic Vagrant\u00a0from our Oracle Weblogic Administration\u00a0Training (next batch starts on 8th April, 2017 \u2013\u00a0Register now ) [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[217],"tags":[],"class_list":["post-8762","post","type-post","status-publish","format-standard","hentry","category-weblogic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WebLogic 12.1.3 on CentOS vagrant -<\/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:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WebLogic 12.1.3 on CentOS vagrant -\" \/>\n<meta property=\"og:description\" content=\"This post is related to\u00a0Weblogic Vagrant\u00a0from our Oracle Weblogic Administration\u00a0Training (next batch starts on 8th April, 2017 \u2013\u00a0Register now ) [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/\" \/>\n<meta property=\"article:published_time\" content=\"2015-12-04T15:10:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-07T10:35:20+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/\",\"name\":\"WebLogic 12.1.3 on CentOS vagrant -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg\",\"datePublished\":\"2015-12-04T15:10:37+00:00\",\"dateModified\":\"2017-04-07T10:35:20+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage\",\"url\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg\",\"contentUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WebLogic 12.1.3 on CentOS vagrant\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WebLogic 12.1.3 on CentOS vagrant -","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:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/","og_locale":"en_US","og_type":"article","og_title":"WebLogic 12.1.3 on CentOS vagrant -","og_description":"This post is related to\u00a0Weblogic Vagrant\u00a0from our Oracle Weblogic Administration\u00a0Training (next batch starts on 8th April, 2017 \u2013\u00a0Register now ) [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/","article_published_time":"2015-12-04T15:10:37+00:00","article_modified_time":"2017-04-07T10:35:20+00:00","og_image":[{"url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/","url":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/","name":"WebLogic 12.1.3 on CentOS vagrant -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage"},"thumbnailUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg","datePublished":"2015-12-04T15:10:37+00:00","dateModified":"2017-04-07T10:35:20+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#primaryimage","url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg","contentUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2015\/12\/VagrantUp-300x242.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2015\/12\/04\/weblogic-12-1-3-on-centos-vagrant\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"WebLogic 12.1.3 on CentOS vagrant"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/8762","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=8762"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/8762\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=8762"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=8762"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=8762"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}