Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2017-07-06 21:15:37 +0300
committerDouwe Maan <douwe@selenight.nl>2017-07-07 18:56:58 +0300
commit9a8130f9e257c9f4e7d43d8d494ec740d857da30 (patch)
treec6a221b21a15cddf244993b15c0b355c87da34dc /doc/update
parent2cfc58f5050105887141a4217e1ff6d26122c010 (diff)
Mention that 9.3 also needs `log_bin_trust_function_creators` on MySQL.
Diffstat (limited to 'doc/update')
-rw-r--r--doc/update/9.2-to-9.3.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/update/9.2-to-9.3.md b/doc/update/9.2-to-9.3.md
index 097b996ec31..910539acc70 100644
--- a/doc/update/9.2-to-9.3.md
+++ b/doc/update/9.2-to-9.3.md
@@ -164,6 +164,19 @@ permissions on the database:
```bash
mysql -u root -p -e "GRANT TRIGGER ON \`gitlabhq_production\`.* TO 'git'@'localhost';"
```
+
+If you use MySQL with replication, or just have MySQL configured with binary logging,
+you will need to also run the following on all of your MySQL servers:
+
+```bash
+mysql -u root -p -e "SET GLOBAL log_bin_trust_function_creators = 1;"
+```
+
+You can make this setting permanent by adding it to your `my.cnf`:
+
+```
+log_bin_trust_function_creators=1
+```
### 11. Update configuration files