Merge pull request #6867 from nextcloud/bugfix/noid/fix-mysql4-link

Fix link to mysql 4byte docs
This commit is contained in:
Morris Jobke
2021-06-17 10:34:24 +02:00
committed by GitHub

View File

@@ -48,7 +48,7 @@ database engine. To backup MySQL/MariaDB::
mysqldump --single-transaction -h [server] -u [username] -p[password] [db_name] > nextcloud-sqlbkp_`date +"%Y%m%d"`.bak
If you use `4 byte support <https://docs.nextcloud.com/server/latest/go.php?to=mysql_4byte_support`_ in MySQL/MariaDB (needed for emoji), you will need to add ``--default-character-set=utf8mb4`` like this::
If you use enabled MySQL/MariaDB 4-byte support (:doc:`../configuration_database/mysql_4byte_support`, needed for emoji), you will need to add ``--default-character-set=utf8mb4`` like this::
mysqldump --single-transaction --default-character-set=utf8mb4 -h [server] -u [username] -p[password] [db_name] > nextcloud-sqlbkp_`date +"%Y%m%d"`.bak