remote server administration in mysql workbench not working on 12.3 rc2

Hello

Mysql worbench on opensuse 12.3 rc2 seems to have a problem.
I cannot open remote database connections.
Not with saved connection, not with newly created connections.
I have also deinstalled mariad and installed mysql-community stuff (as I’m using in 12.1 with success) but same problem.
There is always the error
Administration pluggin not found
when trying to open connection…
All threads about this problem did not give me any hints.
Here is output of Scripting/Scripting Shell

Registered 175 GRT classes.
Traceback (most recent call last):
  File "/usr/lib64/mysql-workbench/modules/wb_admin_grt.py", line 27, in <module>
    import wb_admin_main
  File "/usr/lib64/mysql-workbench/modules/wb_admin_main.py", line 29, in <module>
    import wb_admin_monitor
  File "/usr/lib64/mysql-workbench/modules/wb_admin_monitor.py", line 21, in <module>
    import wba_monitor_be
  File "/usr/lib64/mysql-workbench/modules/wba_monitor_be.py", line 27, in <module>
    import wb_admin_ssh
  File "/usr/lib64/mysql-workbench/modules/wb_admin_ssh.py", line 51, in <module>
    if paramiko and paramiko.__version_info__ >= (1, 7, 4):
AttributeError: 'module' object has no attribute '__version_info__'
Registered 34 modules (from 32 files).
Looking for user plugins in /home/bmeier/.mysql/workbench/modules
MySQL Generic Runtime Environment 4.1.0

Type '?' for help.
Python Shell initialized. (Use Preferences -> General to set language)
Ready.

Is there a library missing and prerequisites bad of this tool?

Same problem here :confused: Anybody?

[Update]:
The problem seems to be with paramiko version and a method that doesn’t exists.

I “patched” the file “/usr/lib64/mysql-workbench/modules/wb_admin_ssh.py” on line 51.

Steps:
1. (In terminal): gnomesu gedit /usr/lib64/mysql-workbench/modules/wb_admin_ssh.py
2. Replace line 51: “if paramiko and paramiko.version_info >= (1, 7, 4):”
for: “if paramiko:”
3. Enjoy it! :stuck_out_tongue:

Works nice!! Thanks a lot.
Will report this bug today.

Beat