File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
328327Create 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
332331Ensure you can use the InnoDB engine which is necessary to support long indexes.
333332If 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
You can’t perform that action at this time.
0 commit comments