From 7907badac8b1908672d23af6c045053dc3fb0fc6 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Wed, 3 Oct 2018 19:50:55 +0200 Subject: [PATCH] Port using for MariaDB 10 (#6481) The text says that when using a MariaDB 10, you also need to add port 3307 in the link. If you use an external database that is, for example, run at a hosting provider, you have to be careful that you use the correct port! I had assumed (because my database is also MardiaDB 10) that I had to use port 3307, but on inquiry it turned out to be 3306. Hence my adjustment. --- source/_components/recorder.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/recorder.markdown b/source/_components/recorder.markdown index b4662ca0908..230ac6b1bc0 100644 --- a/source/_components/recorder.markdown +++ b/source/_components/recorder.markdown @@ -159,7 +159,7 @@ If the `recorder` component is activated then some components support `restore_s | MS SQL Server | `mssql+pymssql://user:pass@SERVER_IP/DB_NAME?charset=utf8` |

-If you use MariaDB 10 you need to add port 3307 to the SERVER_IP, e.g., `mysql://user:password@SERVER_IP:3307/DB_NAME?charset=utf8`. +If you use MariaDB 10 you need to add port 3307 (or another port depending on which port is used by, for example: your hosting provider.) to the SERVER_IP, e.g., `mysql://user:password@SERVER_IP:3307/DB_NAME?charset=utf8`.