To identify the existing keystore
and key passwords run the following SQL script connected as the APPS
user:
SQL> 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;
/
This will output the passwords in the following order:
store password (spass)
key password (kpass)
SQL> 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;
/
This will output the passwords in the following order:
store password (spass)
key password (kpass)
No comments:
Post a Comment