From a7a2100f3d3344669d951665dc8e2253451d859f Mon Sep 17 00:00:00 2001 From: Marin Jankovski Date: Thu, 20 Feb 2014 10:51:58 +0100 Subject: [PATCH] Doc syntax highlighting. --- doc/install/database_mysql.md | 52 +++++++++++++++++------------------ 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/doc/install/database_mysql.md b/doc/install/database_mysql.md index f0d0e830d4c..bb4c3e1ede0 100644 --- a/doc/install/database_mysql.md +++ b/doc/install/database_mysql.md @@ -4,42 +4,42 @@ We do not recommend using MySQL due to various issues. For example, case [(in)se ## MySQL - # Install the database packages - sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev + # Install the database packages + sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev - # Pick a database root password (can be anything), type it and press enter - # Retype the database root password and press enter + # Pick a database root password (can be anything), type it and press enter + # Retype the database root password and press enter - # Secure your installation. - sudo mysql_secure_installation + # Secure your installation. + sudo mysql_secure_installation - # Login to MySQL - mysql -u root -p + # Login to MySQL + mysql -u root -p - # Type the database root password + # Type the database root password - # Create a user for GitLab - # do not type the 'mysql>', this is part of the prompt - # change $password in the command below to a real password you pick - mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password'; + # Create a user for GitLab + # do not type the 'mysql>', this is part of the prompt + # change $password in the command below to a real password you pick + mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password'; - # Create the GitLab production database - mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`; + # 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. - mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'git'@'localhost'; + # Grant the GitLab user necessary permissions on the table. + mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'git'@'localhost'; - # Quit the database session - mysql> \q + # Quit the database session + mysql> \q - # Try connecting to the new database with the new user - sudo -u git -H mysql -u git -p -D gitlabhq_production + # Try connecting to the new database with the new user + sudo -u git -H mysql -u git -p -D gitlabhq_production - # Type the password you replaced $password with earlier + # Type the password you replaced $password with earlier - # You should now see a 'mysql>' prompt + # You should now see a 'mysql>' prompt - # Quit the database session - mysql> \q + # Quit the database session + mysql> \q - # You are done installing the database and can go back to the rest of the installation. + # You are done installing the database and can go back to the rest of the installation.