Posts

Showing posts with the label Vagrant for Oracle SOA11g

Vagrant setup for Oracle SOA environment

Setup the Vagrant layer for SOA 11g on VirtualBox  Download the Centos7 box from below URL https://github.com/holms/vagrant-centos7-box/releases/download/7.1.1503.001/CentOS-7.1.1503-x86_64-netboot.box  create a directory for the centos and copy the box to this directory  Create a folder in your local machine for the shared folder which will host your SOA installations   Open the command prompt and go to the centos folder which you created in the step # 3  enter vagrant init , this will create vagrantfile in the same directory, Open the file and delete all the lines and copy below code into it and save the file # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.box = "centos7.box" config.vm.hostname = "Centos7forOracleSOA" config.vm.network :private_network, ip: "192.168.33.101" config.vm.synced_folder "E:/Software", "/u01/app/software" config.vm.synced_folder "E:/virtualboxes...