I install confluence on JIRA same server , but it delete cwd_user from jira_db !!! what i do wrong?
You'll need to explain what you have set up and configured.
Are the JIRA and Confluence databases totally separate (different schema)? Did you tell Confluence to use JIRA's user directory?
I follow the step here ,https://confluence.atlassian.com/doc/installing-confluence-on-linux-143556824.html
and set up the oracle connection for confluence with new table space
https://confluence.atlassian.com/doc/database-setup-for-oracle-173821.html
create user confluence identified by welcome1 default tablespace confluence_space quota unlimited on confluence_space;
grant connect to confluence;
grant resource to confluence;
grant create table to confluence;
grant create sequence to confluence;
grant create trigger to confluence;
create view confluence.all_objects as select * from sys.all_objects where owner = upper('confluence');
.... how to set NOT user JIRA directory? "Did you tell Confluence to use JIRA's user directory?"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, that looks good, assuming JIRA is in a totally separate database. Now what did you configure for the user directories?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.