diff options
author | Marcel Amirault <ravlen@gmail.com> | 2018-11-21 23:15:01 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2018-11-21 23:15:01 +0000 |
commit | 4cee901dab76300e98fcedcb0a32f50f0d8dc105 (patch) | |
tree | 2974869f142be46ea958fc5630ce04b153fd9779 /doc/install | |
parent | 0b48c0eaf5800c91e4686dd50e76de9e67a896ae (diff) | |
download | gitlab-ce-4cee901dab76300e98fcedcb0a32f50f0d8dc105.tar.gz |
Docs: Cleaning up various links
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/database_mysql.md | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/install/database_mysql.md b/doc/install/database_mysql.md index 4cb8ca4f3e7..e89846107b6 100644 --- a/doc/install/database_mysql.md +++ b/doc/install/database_mysql.md @@ -97,7 +97,7 @@ Follow the below instructions to ensure you use the most up to date requirements #### Check for InnoDB File-Per-Table Tablespaces -We need to check, enable and maybe convert your existing GitLab DB tables to the [InnoDB File-Per-Table Tablespaces](http://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html) as a prerequisite for supporting **utfb8mb4 with long indexes** required by recent GitLab databases. +We need to check, enable and maybe convert your existing GitLab DB tables to the [InnoDB File-Per-Table Tablespaces](https://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html) as a prerequisite for supporting **utfb8mb4 with long indexes** required by recent GitLab databases. # Login to MySQL mysql -u root -p @@ -134,7 +134,7 @@ We need to check, enable and maybe convert your existing GitLab DB tables to the > You need **MySQL 5.5.3 or later** to perform this update. -Whatever the results of your checks above, we now need to check if your GitLab database has been created using [InnoDB File-Per-Table Tablespaces](http://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html) (i.e. `innodb_file_per_table` was set to **1** at initial setup time). +Whatever the results of your checks above, we now need to check if your GitLab database has been created using [InnoDB File-Per-Table Tablespaces](https://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html) (i.e. `innodb_file_per_table` was set to **1** at initial setup time). NOTE: **Note:** This setting is [enabled by default](http://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_file_per_table) since MySQL 5.6.6. @@ -163,7 +163,7 @@ Now, if you have a **different result** returned by the 2 commands above, it mea - **Case 2: a result equals to "0" OR not the same result for both commands** -Unfortunately, none or only some of your GitLab database tables use the GitLab requirement of [InnoDB File-Per-Table Tablespaces](http://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html). +Unfortunately, none or only some of your GitLab database tables use the GitLab requirement of [InnoDB File-Per-Table Tablespaces](https://dev.mysql.com/doc/refman/5.7/en/innodb-multiple-tablespaces.html). Let's enable what we need on the running server: @@ -297,8 +297,7 @@ GitLab database to `longtext` columns, which can persist values of up to 4GB (sometimes less if the value contains multibyte characters). Details can be found in the [PostgreSQL][postgres-text-type] and -[MySQL][mysql-text-types] manuals. +[MySQL](https://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html) manuals. [postgres-text-type]: http://www.postgresql.org/docs/9.2/static/datatype-character.html -[mysql-text-types]: http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html [ce-38152]: https://gitlab.com/gitlab-org/gitlab-ce/issues/38152 |