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:
319
319
320
320
mysql_secure_installation
321
321
322
- Login to MySQL:
322
+ Login to MySQL (type the database root password) :
323
323
324
324
mysql -u root -p
325
325
326
- Type the database root password.
327
326
328
327
Create a user for GitLab (change $password in the command below to a real password you pick):
329
328
330
- mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
329
+ CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
331
330
332
331
Ensure you can use the InnoDB engine which is necessary to support long indexes.
333
332
If this fails, check your MySQL config files (e.g. ` /etc/mysql/*.cnf ` , ` /etc/mysql/conf.d/* ` ) for the setting "innodb = off".
334
333
335
334
SET storage_engine=INNODB;
336
335
337
- Create the GitLab production database"
336
+ Create the GitLab production database:
338
337
339
338
CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
340
339
You can’t perform that action at this time.
0 commit comments