Confluence 6 MySQL CREATE DATABASE and database user

Source: Internet
Author: User
Tags mysql create mysql create database

Once you have successfully installed and configured the MySQL database server, you need to create a database and database user for your confluence:

  1. Run ' with Superuser in MySQL mysql . The default user is ' root ' and the password is empty.

  2. Create an empty Confluence db instance (for example confluence ):

    CREATE DATABASE <database-name> CHARACTER SET utf8 COLLATE utf8_bin;
  3. Create a Confluence database user (for example confluenceuser ):

    GRANT ALL PRIVILEGES ON <database-name>.* TO '<confluenceuser>'@'localhost'IDENTIFIED BY '<password>';

    If confluence does not run on the same server as your MySQL database, you will need to replace localhost to access your MySQL database's confluence server hostname or IP address for your confluence server.

Https://www.cwiki.us/display/CONFLUENCEWIKI/Database+Setup+For+MySQL


Confluence 6 MySQL CREATE DATABASE and database user

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.