diff options
-rw-r--r-- | doc/install/databases.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md index 61882602bba..2c4fb9dbfff 100644 --- a/doc/install/databases.md +++ b/doc/install/databases.md @@ -12,7 +12,7 @@ GitLab supports the following databases: sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev # Login to MySQL - $ mysql -u root -p + mysql -u root -p # Create a user for GitLab. (change $password to a real password) mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password'; |