APPLIES TO:
Oracle Applications DBA - Version R11,R12Information in this document applies to any platform.
SYMPTOMS
When attempting to apply patch with the preinstall=y parameter , the following message is shown
AutoPatch needs the Key Store password in preinstall mode
in order to sign jar files.
Enter the Key Store password for signing Jar files:
in order to sign jar files.
Enter the Key Store password for signing Jar files:
SOLUTION
the Key Store password and Key password can be retrieved by running the following:
set serveroutput on
declare
spass varchar2(30);
kpass varchar2(30);
begin
ad_jar.get_jripasswords(spass, kpass);
dbms_output.put_line(spass);
dbms_output.put_line(kpass);
end;
/
set serveroutput on
declare
spass varchar2(30);
kpass varchar2(30);
begin
ad_jar.get_jripasswords(spass, kpass);
dbms_output.put_line(spass);
dbms_output.put_line(kpass);
end;
/
No comments:
Post a Comment
Note: only a member of this blog may post a comment.