Installation Note 49272: Updating an existing SAS® 9.3 (TS1M2) Foundation installation to use Java 7 in UNIX environments
This note assumes that you have read and are familiar with SAS Note 49296: "Using Java 7 with SAS® 9.3 TS1M2."
This SAS Note guides you through modifying your existing SAS Foundation installation, and optionally SAS Management Console, on Unix operating environment to use a 32-bit Java Runtime Environment (JRE) 7.
Important: Before starting this process, read through the entire note so that you are aware of all preliminary requirements and potential issues as well as optional ways to accomplish these tasks.
Steps that will lead to a successful update
- Your installation must be SAS 9.3 TS1M2 (SAS® 9.2 or earlier releases of SAS 9.3 are not supported).
If you are not currently running SAS 9.3 TS1M2 you must first update your installation by applying maintenance. You can request maintenance by completing this form, or by contacting your SAS Installation Representative, or by contacting your SAS account team. (If you need help with identifying your account team, call SAS directly at 1-800-727-0025, option 2.) Request an order that is at a product revision level of 13w18 or higher.
- Follow the steps in the SAS Hot Fix Analysis, Download and Deployment Tool's "Usage Guide" to download and apply hot fixes. Ensure that Java 7-specific hot fixes listed under the hot fix tabs in links at SAS Note 49296: "Using Java 7 with SAS® 9.3 TS1M2." are included as appropriate for products in your installation.
- Once you have installed your hot fixes validate your installation as documented in the "SAS® 9.3 Qualification Tools User’s Guide". If any products or tools do not validate contact the Unix System Team in SAS Technical Support.
- Download and install a supported 32-bit version 7 JRE. If you already have a 32-bit version 7 JRE on your system run the command ./java -version from its jre directory to ensure that its baseline is at or above our supported minimum baseline.
Links to vendor sites are provided on our Third Party page, for your convenience.
- Use the report produced in the previous script to verify JRE references have been updated.
- Complete the manual steps under "Installing SAS® 9.3 Fonts" to copy SAS Fonts into your JRE fonts directory.
- Run the code under the "Full Code" tab to verify your JRE updates and SAS/GRAPH hot fixes.
Operating System and Release Information
SAS System | Base SAS | 64-bit Enabled AIX | 9.3 TS1M2 | 9.4 TS1M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
This text will report the JRE being used in your environment, it will validate that JRE and will ensure known JRE issues in SAS/GRAPH have been corrected, assuming the appropriate hot fixes have been installed.
proc options option=jreoptions; run;
proc javainfo; run;
%let workdir=%trim(%sysfunc(pathname(work)));
ods _ALL_ close;
ods html path = "&workdir" (url=none)
file = "sastest.html";
ODS Graphics On;
proc genmod data=sashelp.class;
model height = weight / scale=Pearson;
assess var=(weight) / resample=10000
seed=603708000
crpanel ;
run;
ODS Graphics Off;
proc sgplot data=sashelp.class;
scatter x=height y=weight / group=sex;
discretelegend;
run;
ods html close;
ods listing;
Type: | Installation Note |
Priority: | alert |
Date Modified: | 2013-05-03 17:45:40 |
Date Created: | 2013-02-25 15:33:33 |