From 79b702f334fbca942c41123ef2aff5ba54cd236e Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Sun, 6 Apr 2014 02:24:13 +0300 Subject: [PATCH] Fix typos --- install/centos/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/install/centos/README.md b/install/centos/README.md index 7ed4511..5057c6f 100644 --- a/install/centos/README.md +++ b/install/centos/README.md @@ -319,22 +319,21 @@ Secure your installation: mysql_secure_installation -Login to MySQL: +Login to MySQL (type the database root password): mysql -u root -p -Type the database root password. Create a user for GitLab (change $password in the command below to a real password you pick): - mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password'; + CREATE USER 'git'@'localhost' IDENTIFIED BY '$password'; 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". SET storage_engine=INNODB; -Create the GitLab production database" +Create the GitLab production database: CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;