Commit 0c06b7fe20594c1f37bc7bee4ba12f22d2aaa46f

Authored by Dmitriy Zaporozhets
2 parents 3d45d300 c13f9ada

Merge pull request #3106 from davidosomething/patch-1

Update doc/install/databases.md
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
doc/install/databases.md
... ... @@ -12,7 +12,7 @@ GitLab supports the following databases:
12 12 sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev
13 13  
14 14 # Login to MySQL
15   - $ mysql -u root -p
  15 + mysql -u root -p
16 16  
17 17 # Create a user for GitLab. (change $password to a real password)
18 18 mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password';
... ...