<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - MySQL Workbench</title>
        <description>Forum for New Users of MySQL Workbench.</description>
        <link>https://forums.mysql.com/list.php?152</link>
        <lastBuildDate>Wed, 11 Mar 2026 01:18:26 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741629,741629#msg-741629</guid>
            <title>Workbench running as background task after start, connect, exit (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741629,741629#msg-741629</link>
            <description><![CDATA[ I’ve just installed MySQL Workbench Version 8.0.44 build 5549652 CE (64 bits) Community on Windows 11 Pro OS Build 26200.7840, Version 25H2.<br />
<br />
I start the program, connect to a remote database and then exit the program.  The program will no longer start from its shortcut.  Task Manager reveals that it’s running as a background task, not as a service, just as a background task.  <br />
<br />
Killing the background task enables the program to start from its shortcut.  <br />
<br />
I did initially have MySql running as a service via xampp but I’ve subsequently uninstalled that service and rebooted.  Still have the issue.<br />
<br />
What’s going on?<br />
<br />
Thanks in advance.<br />
<br />
Ron James]]></description>
            <dc:creator>Ron James</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 17 Feb 2026 17:19:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741622,741622#msg-741622</guid>
            <title>MacBook compatbility? (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741622,741622#msg-741622</link>
            <description><![CDATA[ I am currently running WorkBench 8 on a MacBook Pro 2019 with 2.6 ghz 6core Intel i7, 16 GM RAM, 2 TB hard drive.  I am considering upgrading to MacBook M4 Max 16core, 48GB RAM, 4 TB hard drive.  <br />
Will I have any compatibility issues with your application?<br />
How do I migrate?]]></description>
            <dc:creator>PATRICK DIXON</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 13 Feb 2026 01:20:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741506,741506#msg-741506</guid>
            <title>My SQL Workbench: Check for updates error solved in macOS (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741506,741506#msg-741506</link>
            <description><![CDATA[ # Fix para HTTPS en MySQL Workbench<br />
<br />
## Problema<br />
El módulo SSL de Python en MySQL Workbench no puede cargar `libssl.3.dylib` debido a que la aplicación usa &quot;hardened runtime&quot; en macOS.<br />
<br />
Error:<br />
```<br />
dlopen(.../_ssl.cpython-312-darwin.so, 0x0002): Library not loaded: libssl.3.dylib<br />
Reason: tried: &#039;libssl.3.dylib&#039; (relative path not allowed in hardened program)<br />
```<br />
<br />
## Solución<br />
Modificar el archivo `wb_utils_grt.py` para usar `curl` en lugar del módulo SSL de Python.<br />
<br />
## Archivo a modificar<br />
`/Applications/MySQLWorkbench.app/Contents/Resources/plugins/wb_utils_grt.py`<br />
<br />
## Cambios a aplicar<br />
<br />
### Cambio 1: Líneas ~590-600 (importación de SSL)<br />
<br />
**ANTES:**<br />
```python<br />
self.is_running = True<br />
try:<br />
    import urllib.request, urllib.error, urllib.parse<br />
    import json<br />
    import base64<br />
    import ssl<br />
```<br />
<br />
**DESPUÉS:**<br />
```python<br />
self.is_running = True<br />
try:<br />
    import urllib.request, urllib.error, urllib.parse<br />
    import json<br />
    import base64<br />
    <br />
    # Check if SSL module is available<br />
    ssl_available = False<br />
    try:<br />
        import ssl<br />
        ssl_available = True<br />
    except (ImportError, OSError):<br />
        # SSL module not available, will use curl as fallback<br />
        pass<br />
```<br />
<br />
### Cambio 2: Líneas ~717-760 (petición HTTPS)<br />
<br />
**ANTES:**<br />
```python<br />
urllib.request.install_opener(opener)<br />
<br />
self.json = json.load(urllib.request.urlopen(&quot;<a href="https://workbench.mysql.com/current-release&quot"  rel="nofollow">https://workbench.mysql.com/current-release&quot</a>;))<br />
```<br />
<br />
**DESPUÉS:**<br />
```python<br />
urllib.request.install_opener(opener)<br />
<br />
# Try to fetch update information<br />
url = &quot;<a href="https://workbench.mysql.com/current-release&quot"  rel="nofollow">https://workbench.mysql.com/current-release&quot</a>;<br />
<br />
# First, try using curl as it has its own SSL/TLS support<br />
try:<br />
    import subprocess<br />
    result = subprocess.run([&#039;curl&#039;, &#039;-s&#039;, &#039;-L&#039;, url], <br />
                          capture_output=True, <br />
                          text=True, <br />
                          timeout=10)<br />
    if result.returncode == 0 and result.stdout:<br />
        self.json = json.loads(result.stdout)<br />
    else:<br />
        raise Exception(&quot;curl failed or returned empty response&quot;)<br />
except Exception as curl_error:<br />
    # Fallback to urllib if curl fails<br />
    if not ssl_available:<br />
        raise Exception(&quot;HTTPS support is not available.\n\n&quot;<br />
                       &quot;The SSL module cannot be loaded and curl is not available.\n&quot;<br />
                       &quot;You can check for updates manually at:\n&quot;<br />
                       &quot;<a href="https://www.mysql.com/downloads/workbench/&quot"  rel="nofollow">https://www.mysql.com/downloads/workbench/&quot</a>;)<br />
    <br />
    try:<br />
        context = ssl._create_unverified_context()<br />
        self.json = json.load(urllib.request.urlopen(url, context=context))<br />
    except AttributeError:<br />
        self.json = json.load(urllib.request.urlopen(url))<br />
    except urllib.error.URLError as e:<br />
        error_msg = str(e)<br />
        if &#039;unknown url type: https&#039; in error_msg or &#039;CERTIFICATE_VERIFY_FAILED&#039; in error_msg:<br />
            raise Exception(&quot;HTTPS support is not available.\n&quot;<br />
                           &quot;You can check for updates manually at:\n&quot;<br />
                           &quot;<a href="https://www.mysql.com/downloads/workbench/&quot"  rel="nofollow">https://www.mysql.com/downloads/workbench/&quot</a>;)<br />
        else:<br />
            raise<br />
```<br />
<br />
## Cómo funciona la solución<br />
<br />
1. **Detección de SSL**: Intenta importar el módulo `ssl` pero captura el error sin fallar<br />
2. **Uso de curl**: Usa `curl` (que tiene su propio soporte SSL/TLS) como método principal<br />
3. **Fallback a urllib**: Si curl falla y SSL está disponible, intenta con urllib<br />
4. **Mensajes claros**: Proporciona mensajes de error informativos al usuario<br />
<br />
## Ventajas<br />
<br />
- ✅ No requiere modificar binarios del sistema<br />
- ✅ No requiere deshabilitar SIP<br />
- ✅ No requiere enlaces simbólicos de bibliotecas<br />
- ✅ Usa herramientas del sistema (curl) que tienen SSL integrado<br />
- ✅ Mantiene compatibilidad si SSL funciona en futuras versiones<br />
<br />
## Aplicar después de actualizar<br />
<br />
Si MySQL Workbench se actualiza y el problema persiste, simplemente vuelve a aplicar estos cambios al nuevo archivo `wb_utils_grt.py`.<br />
<br />
---<br />
Fecha: 28 de diciembre de 2025]]></description>
            <dc:creator>Alex Garcia Alegre</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sun, 28 Dec 2025 03:47:55 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741330,741330#msg-741330</guid>
            <title>Trying to install MySQL WorkBenck Community 8.0.44 on Debian 13 Trixie from sources (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741330,741330#msg-741330</link>
            <description><![CDATA[ Hi there!<br />
<br />
I&#039;m following the instructions from INSTALL file for building on Linux on Debian 13 Trixie, and I&#039;m getting this:<br />
<br />
<pre class="bbcode">
leandro@Leandro:~/Descargas/mysql-workbench-community-8.0.44-src$ sudo apt-get remove iodbc
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package &#039;iodbc&#039; is not installed, so it will not be removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

leandro@Leandro:~/Descargas/mysql-workbench-community-8.0.44-src$ sudo apt-get install build-essential cmake cmake-data autoconf automake pkg-config libtool libzip-dev libxml2-dev \
                          libsigc++-2.0-dev libglade2-dev libglu1-mesa-dev libgl1-mesa-glx \
                          mesa-common-dev libmysqlclient-dev libmysqlcppconn-dev uuid-dev libpixman-1-dev libpcre3-dev \
                          libpango1.0-dev libcairo2-dev python-dev \
                          libboost-dev mysql-client python-pysqlite2 libsqlite3-dev \
                          swig libvsqlitepp-dev libgdal-dev libgtk-3-dev libgtkmm-3.0-dev libssl-dev \
                          libsecret-1-dev libproj-dev

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done

Package libgl1-mesa-glx is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available
from another source.

Package libmysqlclient-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available
from another source.
However, the following packages replace it:
  libmariadb-dev-compat:i386 libmariadb-dev:i386 libmariadb-dev-compat libmariadb-dev

Package mysql-client is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available
from another source.
However, the following packages replace it:
  mariadb-client-compat

Package libpcre3-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available
from another source.

Package python-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or is only available
from another source.
However, the following packages replace it:
  python-dev-is-python3

E: Unable to locate package libglade2-dev
E: Package &#039;libgl1-mesa-glx&#039; has no installation candidate
E: Package &#039;libmysqlclient-dev&#039; has no installation candidate
E: Package &#039;libpcre3-dev&#039; has no installation candidate
E: Package &#039;python-dev&#039; has no installation candidate
E: Package &#039;mysql-client&#039; has no installation candidate
E: Unable to locate package python-pysqlite2</pre>
<br />
Any suggestions?<br />
<br />
Thank&#039;s a lot!<br />
Leandro]]></description>
            <dc:creator>Leandro Caplan</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 29 Oct 2025 02:28:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741203,741203#msg-741203</guid>
            <title>Setting up a schema in windows localhost (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741203,741203#msg-741203</link>
            <description><![CDATA[ When setting up a new connection in MySQL Workbench what to do enter for <br />
Hostname, port and username?<br />
<br />
127.0.0.1, 3306, root fails the connection test.<br />
localhost, 3306, root  fails the connection test.<br />
<a href="https://localhost"  rel="nofollow">https://localhost</a>, 3306, root  fails the connection test.]]></description>
            <dc:creator>Gregary Boyles</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sun, 14 Sep 2025 06:33:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741134,741134#msg-741134</guid>
            <title>MySQL Workbench tab layout (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741134,741134#msg-741134</link>
            <description><![CDATA[ The current behavior for the UI when the number of tabs exceeds the width of the window is to continue adding them to the right which forces me to scroll to access them. I would like it if there was an option to instead have the tabs stack vertically, creating a new row of tabs beneath the existing row when the number of tabs exceeds the width of the window. This would eliminate scrolling for me and allow me to see all open tabs at once.]]></description>
            <dc:creator>Andy Macy</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 27 Aug 2025 15:28:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741059,741059#msg-741059</guid>
            <title>Problème d&#039;accès récurrent à MySQL avec l&#039;utilisateur root (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741059,741059#msg-741059</link>
            <description><![CDATA[ Bonjour,<br />
<br />
Je me permets de vous contacter concernant un problème récurrent que je rencontre avec MySQL.<br />
<br />
À chaque fois que je tente de me connecter avec l&#039;utilisateur root via MySQL Workbench sur l&#039;adresse 127.0.0.1:3306, j&#039;obtiens l&#039;erreur suivante :<br />
<br />
&quot;Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: YES)&quot;<br />
<br />
J’ai vérifié les points suivants :<br />
<br />
Le service MySQL est bien en cours d’exécution.<br />
<br />
Le port 3306 est ouvert et accessible.<br />
<br />
Je saisis le bon mot de passe.<br />
<br />
Les droits d’accès semblent en ordre au moment de l’installation.<br />
<br />
Cependant, ce problème revient régulièrement, et la seule solution temporaire que j’ai trouvée est de désinstaller complètement MySQL et de le réinstaller, ce qui est très contraignant.<br />
<br />
Je vous contacte pour :<br />
<br />
Obtenir une explication technique sur les causes possibles de ce problème.<br />
<br />
Avoir une solution durable, évitant les réinstallations répétées.<br />
<br />
Merci par avance pour votre aide. <br />
mon mail : <a href="mailto:&#109;&#111;&#108;&#107;&#97;&#46;&#109;&#105;&#115;&#115;&#97;&#111;&#117;&#105;&#64;&#101;&#115;&#112;&#114;&#105;&#116;&#46;&#116;&#110;">&#109;&#111;&#108;&#107;&#97;&#46;&#109;&#105;&#115;&#115;&#97;&#111;&#117;&#105;&#64;&#101;&#115;&#112;&#114;&#105;&#116;&#46;&#116;&#110;</a>]]></description>
            <dc:creator>molka missaoui</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Thu, 07 Aug 2025 12:16:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741020,741020#msg-741020</guid>
            <title>MySQL workbench quitting automatically (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741020,741020#msg-741020</link>
            <description><![CDATA[ I&#039;m on macos 12.5.7 and whenever I click the execute single query button on &quot;SELECT * FROM table_name;&quot; the sql wrokbench gets automatically quitted, anyone please help]]></description>
            <dc:creator>Omkar Potphode</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Mon, 28 Jul 2025 15:05:30 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740987,740987#msg-740987</guid>
            <title>Is the MYSQL Workbench Community edition free for commercial usage? (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740987,740987#msg-740987</link>
            <description><![CDATA[ Is the MySQL Workbench Community edition free for commercial usage?]]></description>
            <dc:creator>ARUMUGAM Natarajan</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Thu, 17 Jul 2025 18:43:22 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740945,740945#msg-740945</guid>
            <title>How to enable editing in results grid of MYSQL bench (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740945,740945#msg-740945</link>
            <description><![CDATA[ I am trying to edit the values in RESULT GRID in MYSQL Workbench of a query result - but can&#039;t see an option to edit - where to enable it in MYSQl Workbench?]]></description>
            <dc:creator>Neha SHarma</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 08 Jul 2025 17:02:43 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740911,740911#msg-740911</guid>
            <title>Compare Schemas bug (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740911,740911#msg-740911</link>
            <description><![CDATA[ It appears there is a bug with the compare schemas wizard when setting the destination to model instead of keeping source as the model.<br />
<br />
When doing the above, it prompts for two connections instead of one.<br />
<br />
If you open a model and start the comparison with the model as the source, it only prompts for one connection.]]></description>
            <dc:creator>Matthew Baker</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 02 Jul 2025 21:51:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740910,740910#msg-740910</guid>
            <title>Compare two models (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740910,740910#msg-740910</link>
            <description><![CDATA[ I would like to compare two models in Workbench. According to the docs this is possible, but I cant see the option to select more than one model.<br />
<br />
<a href="https://dev.mysql.com/doc/workbench/en/wb-design-schema.html"  rel="nofollow">https://dev.mysql.com/doc/workbench/en/wb-design-schema.html</a><br />
<br />
If I open a model and choose &quot;Database -&gt; Compare Schemas&quot; or &quot;Database -&gt; Synchronize With Any Source&quot;, the model option is only enabled on one database not both source and destination.]]></description>
            <dc:creator>Matthew Baker</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 02 Jul 2025 21:44:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740802,740802#msg-740802</guid>
            <title>MySQL Workbench: Connecting to Oracle DB (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740802,740802#msg-740802</link>
            <description><![CDATA[ In MySQL Workbench can I connect to a remote Oracle DB? I need to load data from an Oracle DB into a MySQL DB. When I researched this topic online there were several conflicting suggestions.<br />
<br />
Thanks!]]></description>
            <dc:creator>Kevin Murphy</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 10 Jun 2025 15:20:26 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740779,740779#msg-740779</guid>
            <title>installation of mysql workbench (4 replies)</title>
            <link>https://forums.mysql.com/read.php?152,740779,740779#msg-740779</link>
            <description><![CDATA[ Does MySQL 8.0.21 still work? I have been struggling to install it, but to no avail. <br />
<br />
How can I install MySQL Workbench?]]></description>
            <dc:creator>Chouffo Fusi Emmanuel</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Wed, 18 Feb 2026 21:49:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740653,740653#msg-740653</guid>
            <title>MySQL Server v8.4 LTS - not fully supported by latest Workbench (2 replies)</title>
            <link>https://forums.mysql.com/read.php?152,740653,740653#msg-740653</link>
            <description><![CDATA[ Following on from my post about old Python still featuring in the latest Workbench versions - when will we see full support for Server v8.4 in Workbench?<br />
<br />
8.4 LTS has been out for a year, surely &#039;it will connect but not do everything&#039; is a poor position, for the official MySQL management tool?]]></description>
            <dc:creator>YSJ Developers</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 25 Jul 2025 10:48:34 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740652,740652#msg-740652</guid>
            <title>Out of date Python - how to update / why is it not being updated by Oracle (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,740652,740652#msg-740652</link>
            <description><![CDATA[ We are getting warnings that, even on the latest version (8.0.42 CE) that it is using out of date Python 3.12 - with multiple CVEs attached to it.<br />
<br />
If I rename the python.exe and python312.dll files, and replace with a v3.13 python.exe (and the associated python313.dll file) - workbench won&#039;t load.<br />
<br />
Presumably, it doesn&#039;t like the lack of the 312 DLL file.<br />
If I fudge it (leave my v3.13 python exe, but rename 313 dll to 312.dll) - that doesn&#039;t work either.<br />
<br />
While having 3.13 exe with the 3.12 dll is letting Workbench load, it&#039;s not a proper security fix.<br />
<br />
I would really like to know why, when a new version of Python comes out, they are not patching Workbench (I get a new version needs to tested, but when there are CVEs involved then there should be say a 2 week turnaround on releasing an updated Workbench once it&#039;s been certified tested).<br />
<br />
Python 3.13 came out late last year from memory (according to our test web server, I updated it there early December) - so why is a version of workbench, that is weeks old, still using 3.12??<br />
<br />
I have updated our security team, that this is beyond my control - as it&#039;s the tool which our 3rd party support use to manage data in the system.]]></description>
            <dc:creator>YSJ Developers</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Mon, 30 Jun 2025 15:57:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740622,740622#msg-740622</guid>
            <title>Issue with Auto-Generated SQL for Tables Containing BIT Columns (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740622,740622#msg-740622</link>
            <description><![CDATA[ HI,<br />
<br />
I would like to report an issue related to how SQL statements are auto-generated when working with tables that contain multiple BIT(1) columns.<br />
<br />
Steps to Reproduce:<br />
<br />
Create a table that includes more than one BIT(1) column, followed by columns of other data types.<br />
<br />
1. Execute a query:<br />
   SELECT * FROM the_table_with_bit;  <br />
<br />
2. Edit the result by inserting new rows or updating existing ones.<br />
<br />
3. Click on the Apply button to generate the corresponding SQL statements.<br />
<br />
Observed Behavior:<br />
<br />
The auto-generated SQL may omit the leading b for BIT values.<br />
<br />
In some cases, the generated SQL applies the leading b prefix to all values, including those not of BIT type.<br />
<br />
This behavior leads to incorrect queries or unexpected results.<br />
<br />
Please let me know if any additional details are needed.<br />
<br />
Regards,<br />
Wang]]></description>
            <dc:creator>Harry Zhang</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 25 Apr 2025 01:16:20 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740567,740567#msg-740567</guid>
            <title>Can&#039;t login to MySQL with MySQL Workbench, Authentication plugin &quot;&quot; couldn&#039;t be found in restricted_auth plugin list (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740567,740567#msg-740567</link>
            <description><![CDATA[ I get this message when trying to loggin in with MySQL Workbench to a MySQL server : « Authentication plugin &quot;&quot; couldn&#039;t be found in restricted_auth plugin list »<br />
<br />
But in the command line mysql, I can login without problems. Here my full log:<br />
<br />
12:25:22 [INF][   WBContext UI]: Initializing workbench context UI with these values:<br />
	base dir: /usr/share/mysql-workbench<br />
	plugin path: /usr/lib/mysql-workbench/plugins<br />
	struct path: /usr/share/mysql-workbench/grt<br />
	module path: /usr/lib/mysql-workbench/modules<br />
	library path: /usr/share/mysql-workbench/libraries<br />
	user data dir: /home/antoine/.mysql/workbench<br />
	open at start: <br />
	open type: <br />
	run at startup: <br />
	run type: <br />
	Force SW rendering: No<br />
	Force OpenGL: No<br />
	quit when done: No<br />
12:25:22 [INF][      WBContext]: WbContext::init<br />
12:25:22 [ERR][         python]: Error importing Python module /usr/lib/mysql-workbench/modules/wb_admin_grt.py<br />
Unhandled exception in Python code: <br />
Traceback (most recent call last):<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_grt.py&quot;, line 33, in &lt;module&gt;<br />
    import wb_admin_main<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_main.py&quot;, line 38, in &lt;module&gt;<br />
    from wb_admin_configuration_startup import WbAdminConfigurationStartup<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_configuration_startup.py&quot;, line 30, in &lt;module&gt;<br />
    from wb_log_reader import ErrorLogFileReader<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_log_reader.py&quot;, line 103, in &lt;module&gt;<br />
    from wb_server_management import SudoTailInputFile, LocalInputFile, SFTPInputFile<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_server_management.py&quot;, line 31, in &lt;module&gt;<br />
    import pipes<br />
ModuleNotFoundError: No module named &#039;pipes&#039;<br />
<br />
Traceback:<br />
  No stack information.<br />
NameError: Error importing Python module /usr/lib/mysql-workbench/modules/wb_admin_grt.py<br />
Unhandled exception in Python code: <br />
Traceback (most recent call last):<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_grt.py&quot;, line 33, in &lt;module&gt;<br />
    import wb_admin_main<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_main.py&quot;, line 38, in &lt;module&gt;<br />
    from wb_admin_configuration_startup import WbAdminConfigurationStartup<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_admin_configuration_startup.py&quot;, line 30, in &lt;module&gt;<br />
    from wb_log_reader import ErrorLogFileReader<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_log_reader.py&quot;, line 103, in &lt;module&gt;<br />
    from wb_server_management import SudoTailInputFile, LocalInputFile, SFTPInputFile<br />
  File &quot;/usr/lib/mysql-workbench/modules/wb_server_management.py&quot;, line 31, in &lt;module&gt;<br />
    import pipes<br />
ModuleNotFoundError: No module named &#039;pipes&#039;<br />
<br />
12:25:22 [WRN][            grt]: Duplicate plugin name wb.tools.cmdlineClient	There is more than one plugin with the name wb.tools.cmdlineClient (in PyWbUtils and PyWbUtils).<br />
12:25:22 [WRN][            grt]: /home/antoine/.mysql/workbench/connections.xml:23: link &#039;8b5dc88a-17ba-11f0-a6a5-00163ee87780&#039; &lt;object GrtObject&gt; key=owner could not be resolved<br />
12:25:22 [WRN][            grt]: Duplicate plugin name wb.tools.cmdlineClient	There is more than one plugin with the name wb.tools.cmdlineClient (in PyWbUtils and PyWbUtils).<br />
12:25:22 [INF][      WBContext]: System info:<br />
 	MySQL Workbench Community (GPL) for Linux/Unix version 8.0.41 CE build 4802116 (64 bit)<br />
	Configuration Directory: /home/antoine/.mysql/workbench<br />
	Data Directory: /usr/share/mysql-workbench<br />
	Cairo Version: 1.18.4<br />
	OS:  x86_64<br />
	CPU: 8x 12th Gen Intel(R) Core(TM) i3-1215U (2496.000MHz) - 6,32GiB RAM<br />
No video adapter info available<br />
	Distribution: Debian GNU/Linux trixie/sid<br />
<br />
	Fips mode enabled: no<br />
<br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#119;&#98;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#119;&#98;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#109;&#111;&#100;&#101;&#108;&#105;&#110;&#103;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#109;&#111;&#100;&#101;&#108;&#105;&#110;&#103;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#109;&#105;&#103;&#114;&#97;&#116;&#105;&#111;&#110;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#115;&#105;&#100;&#101;&#98;&#97;&#114;&#95;&#109;&#105;&#103;&#114;&#97;&#116;&#105;&#111;&#110;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#104;&#111;&#109;&#101;&#95;&#115;&#99;&#114;&#101;&#101;&#110;&#95;&#99;&#108;&#111;&#115;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#104;&#111;&#109;&#101;&#95;&#115;&#99;&#114;&#101;&#101;&#110;&#95;&#99;&#108;&#111;&#115;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#100;&#111;&#99;&#95;&#109;&#111;&#100;&#101;&#108;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#100;&#111;&#99;&#95;&#109;&#111;&#100;&#101;&#108;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#115;&#99;&#104;&#101;&#109;&#97;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#115;&#99;&#104;&#101;&#109;&#97;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#116;&#105;&#109;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#116;&#105;&#109;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#102;&#111;&#108;&#100;&#101;&#114;&#95;&#109;&#105;&#110;&#105;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#102;&#111;&#108;&#100;&#101;&#114;&#95;&#109;&#105;&#110;&#105;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#104;&#111;&#109;&#101;&#95;&#115;&#99;&#114;&#101;&#101;&#110;&#95;&#99;&#108;&#111;&#115;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#104;&#111;&#109;&#101;&#95;&#115;&#99;&#114;&#101;&#101;&#110;&#95;&#99;&#108;&#111;&#115;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#100;&#111;&#99;&#95;&#109;&#111;&#100;&#101;&#108;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#100;&#111;&#99;&#95;&#109;&#111;&#100;&#101;&#108;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#115;&#99;&#104;&#101;&#109;&#97;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#115;&#99;&#104;&#101;&#109;&#97;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#116;&#105;&#109;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#116;&#105;&#109;&#101;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][         mforms]: Resource file not found: <a href="mailto:&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#102;&#111;&#108;&#100;&#101;&#114;&#95;&#109;&#105;&#110;&#105;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;">&#119;&#98;&#95;&#116;&#105;&#108;&#101;&#95;&#102;&#111;&#108;&#100;&#101;&#114;&#95;&#109;&#105;&#110;&#105;&#95;&#108;&#105;&#103;&#104;&#116;&#64;&#50;&#120;&#46;&#112;&#110;&#103;</a><br />
12:25:22 [WRN][       WBModule]: OS not found on supported OS list. OS string: &#039; x86_64&#039;<br />
12:25:25 [ERR][SQL Editor Form]: SqlEditorForm: exception in do_connect method: Exception: Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
12:25:25 [ERR][  GRTDispatcher]: exception in grt execute_task, continuing: Exception: Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
12:25:25 [ERR][  GRTDispatcher]: worker: task &#039;execute sql queries&#039; has failed with error:.Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
12:25:25 [ERR][    WQE backend]: Got an exception during connection: Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
12:25:25 [ERR][SQL Editor Form]: SQL editor could not be connected: Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
12:25:25 [ERR][SQL Editor Form]: Your connection attempt failed for user &#039;antoine&#039; to the MySQL server at X.X.X.X:3306:<br />
  Authentication plugin &#039;&#039; couldn&#039;t be found in restricted_auth plugin list.<br />
<br />
Please:<br />
1 Check that MySQL is running on address X.X.X.X<br />
2 Check that MySQL is reachable on port 3306 (note: 3306 is the default, but this can be changed)<br />
3 Check the user antoine has rights to connect to X.X.X.X from your address (MySQL rights define what clients can connect to the server and from which machines) <br />
4 Make sure you are both providing a password if needed and using the correct password for X.X.X.X connecting from the host address you&#039;re connecting from]]></description>
            <dc:creator>Antoine Beaubien</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sat, 12 Apr 2025 17:50:25 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740559,740559#msg-740559</guid>
            <title>error password management error (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740559,740559#msg-740559</link>
            <description><![CDATA[ While using MySQL Workbench for virtual machine multisession, I am getting a password management error for the created connection. It keeps asking to enter credentials and does not save my credentials in the connection.xml file. I also checked the deleted.dat.xml file, but after signing out of the session, the issue reappears when trying to connect to the server.]]></description>
            <dc:creator>sonbir kumar</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Thu, 10 Apr 2025 17:02:39 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740518,740518#msg-740518</guid>
            <title>Connection Warning (Local instance MySQL92) (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,740518,740518#msg-740518</link>
            <description><![CDATA[ I made the typical local host and downloaded MySQL Workbench. When i tried to enter MySQL Connections for the first time it appeared the typical Password popup. I entered the password and it appeared a message saying Incompatible/nonstandard server version blablabla. The thing is that u just have to click on continue anyway but i clicked Don&#039;t show this message again and closed the popup. And it did couse i have already tried to unistall all, reset my pc enter the appdata/roaming config archives and nothing works. Someone knows any way of fixing this? I cant enter any server or nothing couse of this.]]></description>
            <dc:creator>Javier Ortega</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 18 Apr 2025 13:34:28 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740517,740517#msg-740517</guid>
            <title>Lost Access to Server (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740517,740517#msg-740517</link>
            <description><![CDATA[ I was experimenting, creating a new schema for my genealogy research, via the Workbech, and may have deleted a setting I shouldn&#039;t have and can no longer access the server.<br />
<br />
My front end could see the Tables in my schema, but it included the &#039;information schema&#039; as well, which I didn&#039;t want (it doesn&#039;t show in my other schema.) <br />
<br />
It was during my attempt to remove this schema from my front end that I may have deleted something I shouldn&#039;t have (a little knowledge is a dangerous thing!!!<br />
<br />
Now, each time I login, I get the following message:<br />
&#039;Your connection attempt failed for user &#039;root&#039; to the MySQL server at 127.0..0.1:3306:<br />
SELECT command denied to user &#039;mysql.infoschema&#039;@&#039;localhost&#039; for column &#039;default_collaton_id&#039; in table &#039;character_sets&#039;<br />
<br />
It would seem I deleted user &#039;mysql.infoschema&#039; in error, and I&#039;m not sure how to get it back, now I&#039;ve lost access to the Workbench.<br />
<br />
I&#039;m hoping one of the experts on this forum knows how to get it back.]]></description>
            <dc:creator>Michael Loney</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Mon, 31 Mar 2025 16:16:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740515,740515#msg-740515</guid>
            <title>Scale Interface to usable size (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740515,740515#msg-740515</link>
            <description><![CDATA[ I did a bunch of searches in this forum and google in general to no avail. How does one scale the interface to be actually usable on a high resolution monitor? The menus and the left database navigation interface font size is ridiculously tiny and does not scale with windows scaling options at all. All I can change is the editor font settings. I must to be overlooking something as can&#039;t believe that in 2025 a program is not designed to use on modern high resolution monitors. <br />
<br />
Any ideas?]]></description>
            <dc:creator>Darius Florczyk</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sat, 29 Mar 2025 16:06:41 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740497,740497#msg-740497</guid>
            <title>Dark Theme (3 replies)</title>
            <link>https://forums.mysql.com/read.php?152,740497,740497#msg-740497</link>
            <description><![CDATA[ Hi,<br />
<br />
<br />
I enabled dark mode (theme) on my MySQL Workbench. I see the Data Modeling feature connections do not go to white. Hence, I would like to change MySQL Workbench back to light mode (theme) on my end.<br />
<br />
Where is the setting to change back to light mode (theme) located?<br />
<br />
<br />
Thanks,<br />
Stephen]]></description>
            <dc:creator>Stephen Dawson</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 04 Apr 2025 17:29:35 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740487,740487#msg-740487</guid>
            <title>When will the MySQL Workbench 8.4.4 version be released (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,740487,740487#msg-740487</link>
            <description><![CDATA[ Hi DB developer Team,<br />
<br />
As we know, MySQL Server 8.4. x has been released for a long time.<br />
In order to better manage the new version database.<br />
can we know when will the MySQL Workbench 8.4.4 version can be released? <br />
thanks a lot.]]></description>
            <dc:creator>andy andy</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 25 Jul 2025 10:51:37 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740485,740485#msg-740485</guid>
            <title>Diagram for db (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740485,740485#msg-740485</link>
            <description><![CDATA[ I am helping some of my colleagues with a project of them and they have some difficulties with creating their databases.<br />
<br />
So i am looking for a way to help them create their databases from a EER diagram and import it to MySQL.<br />
<br />
Is there anyway that i could do it, preferably by SQL reverse engineering tool?]]></description>
            <dc:creator>Gabriel Neves</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sat, 22 Mar 2025 11:27:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740450,740450#msg-740450</guid>
            <title>Still see green arrows after synchronization (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740450,740450#msg-740450</link>
            <description><![CDATA[ I use Database &gt; Synchronize Model and it completes successfully: I can see the changes in the Model successfully reflected in the database/scripts as expected. But when I go back to Database &gt; Synchronize Model to synchronize new changes to the database and/or model, I still see the original &quot;green arrows&quot; from my previous synchronization. The SQL code also shows that Synchronize Model wants to apply the previous updates that already completed successfully in the previous synchronization. Many thanks for letting me know what I&#039;m doing wrong or how to fix this.]]></description>
            <dc:creator>Jonathan Ross</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 18 Mar 2025 17:33:37 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740425,740425#msg-740425</guid>
            <title>SSH Tunnel fails (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740425,740425#msg-740425</link>
            <description><![CDATA[ I have recently installed workbench on a new Mac mini M4 running osx 15 and I am truing to connect to an ubuntu 22.04 server running mysql 8.x.<br />
<br />
I get the following error and google had no info...<br />
<br />
Lost connection to MySQL server at &#039;reading initial communication packet&#039;, system error: 0<br />
<br />
Any help appreciated,<br />
<br />
Regards,<br />
<br />
Steven]]></description>
            <dc:creator>Steven Hill</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 11 Mar 2025 15:59:56 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740395,740395#msg-740395</guid>
            <title>Could not connect the SSH tunnel (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740395,740395#msg-740395</link>
            <description><![CDATA[ I have two MacBooks both with SQL workbench loaded.  The server connections are set up identically on both but I&#039;m getting this error message on the new MacBook.  <br />
<br />
I&#039;ve got to cpanel and verified that my ip address is set up in remote database access.  I have verified the IP, username and password and still getting this error message.<br />
<br />
Any suggestions as to what I&#039;m missing?]]></description>
            <dc:creator>mike vitale</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Thu, 06 Mar 2025 18:31:02 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740343,740343#msg-740343</guid>
            <title>default collation_connection (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,740343,740343#msg-740343</link>
            <description><![CDATA[ Hi everyone.<br />
<br />
Recently changed the DB server collation from utf8mb4_general_ci to utf8mb4_unicode_ci, however, when accessing the DB via a workbench connection I get this: <br />
collation_connection = utf8mb4_general_ci<br />
collation_database   = utf8mb4_unicode_ci<br />
collation_server     = utf8mb4_unicode_ci<br />
<br />
It correctly receives everything from the server, however, it keeps the utf8mb4_general_ci.<br />
<br />
This is corrected by running this: SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;<br />
What I need is to avoid this execution every time I open a new connection, as it is possible that I forget to execute this query and when interacting with the DB it is very possible to generate errors.<br />
I have the version 8.0.41 build 4802116 CE<br />
I have already tried to modify the option Manage Server Connections&gt;“My connection”&gt;Advanced&gt;Others = sessionVariables=collation_connection=utf8mb4_unicode_ci<br />
<br />
But this has had no effect.<br />
Do you know how I can solve this and leave by default this collation utf8mb4_unicode_ci?]]></description>
            <dc:creator>Alejandro Contreras Sanchez</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Thu, 27 Feb 2025 20:20:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,740110,740110#msg-740110</guid>
            <title>Password vault forgets password when network goes down (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,740110,740110#msg-740110</link>
            <description><![CDATA[ I have a slightly flaky internet connection, and when using MYSQL workbench, I occasionally lose connection to the database. Every time that happens, my saved connections which were open &quot;forget&quot; the password. Next time I try to connect, I need to save my password again to the vault. The passwords are normally saved to the vault, because if I have a few days where no network issues occur, everything works. This can happen 2-3 times a day. It is incredibly frustrating. Any ideas as to how to prevent this happening? I am on Windows 11, Workbench version 8.0.38]]></description>
            <dc:creator>Jenny Volc</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 14 Feb 2025 15:52:44 +0000</pubDate>
        </item>
    </channel>
</rss>
