Skip to content
Snippets Groups Projects
Commit 377a5bd5 authored by Ben Bodenmiller's avatar Ben Bodenmiller
Browse files

formatting changes, table->database

Make formatting consistent on page.

Change table -> database as they are database permissions.
parent a034a466
No related branches found
No related tags found
1 merge request!7743formatting changes, table->database
Loading
Loading
@@ -28,14 +28,14 @@ We do not recommend using MySQL due to various issues. For example, case [(in)se
# change $password in the command below to a real password you pick
mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
 
# Ensure you can use the InnoDB engine which is necessary to support long indexes.
# Ensure you can use the InnoDB engine which is necessary to support long indexes
# If this fails, check your MySQL config files (e.g. `/etc/mysql/*.cnf`, `/etc/mysql/conf.d/*`) for the setting "innodb = off"
mysql> SET storage_engine=INNODB;
# Create the GitLab production database
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
 
# Grant the GitLab user necessary permissions on the table.
# Grant the GitLab user necessary permissions on the database
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, LOCK TABLES ON `gitlabhq_production`.* TO 'git'@'localhost';
 
# Quit the database session
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment