Download the Oracle SQL Developer command-line (SQLcl) tool (sqlcl-17.4.0.354.2224-no-jre.zip), and place the zip file (without extracting it!) into current folder. The Dockerfile uses the Weblogic and Database images from Docker Store. No modifications are necessary. The installation of Oracle WebLogic 12.1.3 for 64-bit platforms does not include the 64-bit JDK. Therefore, prior to installing Oracle WebLogic 12.1.3 for 64-bit platforms, you must manually download and install the requisite JDK.
The quick installer is intended for development purposes. It includes all Oracle WebLogic Server and Oracle Coherence runtime software, but excludes examples and localized WebLogic console help files. The supplemental installer can be used to add examples and localized WebLogic console files to an installation created with the quick installer. Download rstudio 3.4 4 for mac. Oracle Weblogic is one of the most widely used application servers. Recently I have installed it on Mac OS system and created a domain. This article is intended to provide the steps for installation and creating a domain and then starting and stopping domain with Terminal.
This post will walk you through the installation of Oracle Weblogic Application Server 12c on a Mac OSX machine.First of all, visit the official Oracle Weblogic download page and download the latest generic version. You would need to create a Oracle ID first. Accept the agreement and start the download. In this example, we would download the Weblogic v12.1.2. The filename in this case is wls_121200.jar
Also, note that the generic version does not come with JVM / JDK for its installation. So make sure, you have Java installed on your machine.
Once downloaded, note the following steps :
Run the following command to initiate the installer
java -d64 -Dspace.detection=true -Xmx1024m -jar wls_121200.jar
This will start the extraction of the wls_121200.jar and also perform some routine system pre-requisite checks. Note the arguments that we passed. The space.detection parameter is set to true to detect available space. Also, the max memory usage size by JVM is set to 1024m i.e 1 GB.