Install WebLogic in Linux Environment
We first create a user, for example, oracle. To create a user run the following commands under the root user: useradd oracle passwd oracle This creates a /home/oracle directory. To delete the user we can use: userdel -r oracle the option -r removes the /home/oracle directory. The following software versions will be used: JRockit JVM – jrrt-4.0.1-1.6.0-linux-x64 WebLogic Server – wls1035_generic First, we choose an installation directory, for example /home/oracle/weblogic. This will be our middleware home in the installation of WebLogic. To install JRockit we follow these steps: Run the file jrrt-4.0.1-1.6.0-linux-x64.bin. Click Next on the welcome screen. Define the install directory /home/oracle/weblogic/jrrt-4.0.1-1.6.0 and click Next. Optionally select extra components and click Next. When the installation is finished click Done. To install WebLogic we follow these steps: Navigate to t...