I am trying to install BPM free trail package in windows system.Installation scripts end with some exception.I am not able to get full exception details.Here I am attaching last installation screen and partial log from Install log.
From last screen I am assuming there is some error in running DB scripts.Can some suggest,if running only DB configuration will be fine or I need to re-install it from beginning.
Screen shots indicate “Missing or invalid password(s)”. Hence, it seems like username / password
(you used sys / 123 for accessing your Oracle DB) are not correct
You have to adapt settings of DBCFG_ADMIN_USERNAME / DBCFG_ADMIN_PASSWORD in your setup.properties
If you do not change the settings of any other DBCFG_* parameter, you should be able to get along without
re-install. Simply execute the following commands again:
...\bin\setenv.bat
grexec BpmsTrial -setup
If that does not work execute the following steps / commands
Thanks for details explanation.
I have send the below configuration details.
"DBCFG_ADMIN_USERNAME" is passed as Oracle default system Admin "sys" considering it will create new user asdefined in "DBCFG_USERNAME".With userid as "sys/123" I am able to logic through browser.Please suggest what userID I need to pass here.
(1) Privileges of user “Admin” in Oracle DB are looking good as far as I can tell.
Unfortunately, I am not an expert on Oracle, but that user needs to have capability to create other users.
Is the password for “Admin” really “123” - can you please verify that again?
The error message
I am using Oracle 10g. However this issue is resolved by removing some the Privileges for both Admin user and DB user.However still it is not working through command but working when I am running through DB configurator it is creating database table.
DB configurator have thrown exception on running some of the scripts.Please find attached DB configurator logs.
Please let me know if running DB configurator will serve the same purpose of running through command line.
As when I have started up IS server in JDBC pool i am getting error IScore/ISInternal/ProcessEngine/ProcessAudit saying associated pool alias does not exist.
this means that you are creating with system user instead of sys user.
please connect to your database via SQL Developer (available for free download from OTN) as sys (role Sysdba) and execute the following in the sql worksheet:
GRANT EXECUTE ON SYS.UTL_SMTP TO &user;
GRANT EXECUTE ON SYS.DBMS_ALERT TO &user;
GRANT EXECUTE ON SYS.DBMS_JOB TO &user;
GRANT EXECUTE ON SYS.PLITBLM TO &user;
GRANT SELECT ON SYS.V_$PARAMETER TO &user;
Replace ‘&user’ with the user you are currently trying to create.
After that rerun the script in DCC which has caused this error.
The first line applies to most DCC scripts (especially when using the Product-option), the last 4 lines only apply to DCC scripts referring to Optimize (i.e. Analytic, ProcessTracker, …).