From 9a2e2b403000d487aa6be675b4af8c3a4a1f101f Mon Sep 17 00:00:00 2001 From: Darklighter Date: Wed, 26 Feb 2025 20:58:27 +0000 Subject: [PATCH] =?UTF-8?q?2.3)=20Setup=20MariaDB=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2.3%29-Setup-MariaDB.md | 52 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 2.3%29-Setup-MariaDB.md diff --git a/2.3%29-Setup-MariaDB.md b/2.3%29-Setup-MariaDB.md new file mode 100644 index 0000000..b33e066 --- /dev/null +++ b/2.3%29-Setup-MariaDB.md @@ -0,0 +1,52 @@ +## 2.3) Setup MariaDB + +Create new connection parameters to a MariaDB server: + +```File --> Connection Manager --> Settings``` + +When you click the "New" button on the left bottom corner, you should be prompted to provide the details for the new connection. + +Type following setting entries on the right side: + +``` +Hostname / IP: 127.0.0.1 +Username: root +Password = yourpassword0 +Port: 3306 +``` + +Click on the left bottom corner the "Save" button and on the right bottom corner on the "Open" button. + +Next step is to include the database (sql file). Click on: + +``` +File --> Load SQL File +``` + +If this doesn't work click on: + +``` +File --> Execute SQL File +``` + +You have to ask the Admins for the database SQL file. This file is not attached on this post. + +Press F5 to refresh your DB overview + + +Also check your server configuration in the following path: +``` +Open my.ini in the folder C:\Program Files\MariaDB 11.6\data +``` +It should look something like that. Sometimes the line ssl=off are missing. +``` +[mysqld] +datadir=C:/Program Files/MariaDB 11.6/data +port=3306 +ssl=off +innodb_buffer_pool_size=6030M +[client] +port=3306 +plugin-dir=C:\Program Files\MariaDB 11.6/lib/plugin +``` +https://i.imgur.com/UHcLMmh.png \ No newline at end of file