From fd0f90da94d492040a8c93d3cb1b7c5c866d76c3 Mon Sep 17 00:00:00 2001 From: jeffh0821 Date: Thu, 21 Feb 2019 14:00:21 -0500 Subject: [PATCH] Clarify use of alternate ports in MariaDB connections --- 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 9870481c72dc..72d308c00bd2 100644 --- a/source/_components/recorder.markdown +++ b/source/_components/recorder.markdown @@ -150,7 +150,7 @@ Purging does not necessarily remove all entries before a given date. For example | MS SQL Server | `mssql+pymssql://user:password@SERVER_IP/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`. +Some installations of MariaDB/MySQL may require an ALTERNATE_PORT (3rd-party hosting providers or parallel installations) to be added to the SERVER_IP, e.g., `mysql://user:password@SERVER_IP:ALTERNATE_PORT/DB_NAME?charset=utf8`.