Advertisement
Guest User

Untitled

a guest
Feb 4th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. Weblogic Installation
  2.  
  3. 1. Download Oracle WebLogic Server 11gR1 (10.3.5) + Coherence - Package Installer from:
  4.  
  5. http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-main-097127.html
  6.  
  7. Select the generic version.
  8.  
  9. 2. Make the wls1035_generic.jar executable:
  10.  
  11. $ chmod +x wls1035_generic.jar
  12.  
  13. 3. Start the installation:
  14.  
  15. $ ./wls1035_generic.jar or java -jar -d64 wls1035_generic.jar (AIX)
  16.  
  17. 4. In the first screen that appears, select next.
  18.  
  19. 5. In the next screen, check the "Create a new Middleware home" option and specify the path to the directory:
  20.  
  21. e.g. /home/$user/Oracle/Middleware
  22.  
  23. 6. In the next few screens you're requested to fill your contact details, to be informed for updates and bug fixes. Do as you please.
  24.  
  25. 7. Once you reach the "Choose Products and Components" screen can click next.
  26.  
  27. 8. The next screen is about the JDK selection. Since you have already the $JAVA_HOME variable setup for your linux Server the "local JDK" will be setup pointing to that path. (AIX - will probably be set at /usr/java6_64 which is IBM java and it is ok)
  28. You can click next.
  29.  
  30. 9. In the next window the installation wizard requests you to confirm the installation Directories. Click next.
  31.  
  32. 10. You're now in the "Installation Summary". Click next to install the Weblogic Server.
  33.  
  34. 11. Finally, uncheck the "Run Quickstart" option and select Done.
  35.  
  36.  
  37. ADF Installation
  38.  
  39. 1. Download the Application Development Runtime realease 11.1.1.6.0 from:
  40.  
  41. http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html
  42.  
  43. 2. Unzip ofm_appdev_generic_11.1.1.6.0_disk1_1of1.zip
  44.  
  45. $ unzip ofm_appdev_generic_11.1.1.6.0_disk1_1of1.zip
  46.  
  47. 3. Change directory to Disk1
  48.  
  49. $ cd Disk1
  50.  
  51. 4. Make the installer executable:
  52.  
  53. $ chmod +x runIstaller
  54.  
  55. 5. Make sure you setup your environment variables to define the ORACLE_HOME:
  56. export ORACLE_HOME=/home/$user/Oracle/Middleware/oracle_common
  57.  
  58. 6. Execute the installer:
  59.  
  60. $ ./runInstaller
  61.  
  62. 7. In case you see the message:
  63.  
  64. Some requirement checks failed. You must fulfill these requirements before
  65.  
  66. continuing with the installation,
  67.  
  68. Continue? (y/n) [n]
  69.  
  70. Type y and hit enter.
  71.  
  72. The installer will request you to set the JRE/JDK path:
  73.  
  74. >>> Ignoring required pre-requisite failures. Continuing...
  75. Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-08-08_11-11-19AM. Please wait ...
  76. Please specify JRE/JDK location ( Ex. /home/jre ), <location>/bin/java should exist :
  77.  
  78. Type the path to your systems JDK/JRE, e.g. /usr/java/jdk1.6.0_31 or /usr/java/java6_64 (for AIX) and hit enter.
  79.  
  80. 8. In the first screen that appears click next.
  81.  
  82. 9. In the next few screens you're requested to fill your contact details, to be informed for updates and bug fixes. Do as you please.
  83.  
  84. 10. In the "Preresequite Checks" window, in case you fail to pass some of the tests you might have to istall some rpm packages to your server or configure some kernel parameters.
  85.  
  86. Click continue.
  87.  
  88. 11. In the next screen you should already have "Oracle Middleware Home" populated with the value of the ORACLE_HOME variable (step 5). Click next.
  89.  
  90. 12. In this window make sure "WebLogic Server" is checked and click next.
  91.  
  92. 13. Ensure everything is correct by reading the installation summary and click Install.
  93.  
  94. 14. Click next.
  95.  
  96. 15. Click Finish.
  97.  
  98. apply ADF patches p13952743 and p13956635
  99.  
  100. 1. unzip the patches and cd into the extracted dir
  101. 2. execute command opatch apply (opatch apply -jre /usr/java6_64 for AIX)
  102.  
  103. repeat the same for the p13956635
  104.  
  105. Create a new Domain on Weblogic to host Fusion Client
  106.  
  107. 1. Navigate to the /home/$user/Oracle/Middleware/wlserver_10.3/common/bin
  108.  
  109. $ cd /home/$user/Oracle/Middleware/wlserver_10.3/common/bin
  110.  
  111. 2. Run the config.sh
  112.  
  113. $ ./config.sh
  114.  
  115. 3. In the firsr screem select "Create New WebLogic Domain" and click next
  116.  
  117. 4. In "Select Domain Source" choose Oracle JRF 11.1.1.0 (oracle_common) and click next
  118.  
  119. 5. Provide any domain name and a path where the domains will be build (their combination will be referred as Domain Path)
  120. e.g. DomainName: mydomain
  121. DomainLocation: /home/$user/Oracle/Middleware/user_projects/domains
  122.  
  123. 6. Provide account details - pick a name and a password (8 characters at least ) and click next
  124. e.g. Name: weblogic
  125. User Password: ********
  126. Confirm User Password: ********
  127. Description: This user is the default administrator.
  128.  
  129. 7. In "JDK Selection" under "Available JDKs" you should see "Sun SDK<version> /usr/java/jdk.....". Select "Production Mode" as Startup Mode and click next.
  130.  
  131. 8. In the "Select Optional Configuration" screen tick the "Administration Server" checkbox, click next and modify the "Listen address" to the hostname of your server and click next.
  132.  
  133. 9. Click Create.
  134.  
  135. 10. Click Done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement