Skip to content

Commit 79b702f

Browse files
committed
Fix typos
1 parent d2134c9 commit 79b702f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

install/centos/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -319,22 +319,21 @@ Secure your installation:
319319

320320
mysql_secure_installation
321321

322-
Login to MySQL:
322+
Login to MySQL (type the database root password):
323323

324324
mysql -u root -p
325325

326-
Type the database root password.
327326

328327
Create a user for GitLab (change $password in the command below to a real password you pick):
329328

330-
mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
329+
CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
331330

332331
Ensure you can use the InnoDB engine which is necessary to support long indexes.
333332
If this fails, check your MySQL config files (e.g. `/etc/mysql/*.cnf`, `/etc/mysql/conf.d/*`) for the setting "innodb = off".
334333

335334
SET storage_engine=INNODB;
336335

337-
Create the GitLab production database"
336+
Create the GitLab production database:
338337

339338
CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
340339

0 commit comments

Comments
 (0)