I have Jira running with MySQL DB in Linux
Is it possible to install confluence by using existing MySQL??
Please share the document for installing confluence in Linux
Hi Shrinivas,
Jira and Confluence can share the same database but need to have separate schemas. Please carefully review this article for the Dos and Don'ts of this configuration:
Essentially, when you create your Confluence user, you are creating a new schema.
mysql
' command as a MySQL super user. The default user is 'root' with a blank password.Create an empty Confluence database schema by running this command:
CREATE DATABASE confluence CHARACTER SET utf8 COLLATE utf8_bin; |
Create the Confluence database user by running this command. Replace 'confluenceuser' and 'confluencepass' with a username and password of your choice. If Confluence is not running on the same server as your MySQL database server, replace 'localhost' with the hostname or IP address of the Confluence server:
GRANT ALL PRIVILEGES ON confluence.* TO 'confluenceuser' @ 'localhost' IDENTIFIED BY 'confluencepass' ; |
To set up Confluence on Linux, you can follow this article closely:
Let us know if you have any trouble!
Kind Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.