Hello,
I decided to unify my development (+daily driver) and production environments. After some investigation I decided that openSUSE ecosystem might be a good choice. I am currently migrating all my tools from Arch linux to Tumbleweed.
However, I have issues with running MySQL Workbench. When I run it from the menu it doesn’t start. When started from the command line it prints the following information:
method return time=1597062886.674015 sender=:1.12 -> destination=:1.111 serial=16 reply_serial=2
string "<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<!-- GDBus 2.64.4 -->
<node>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="out"/>
</method>
<method name="GetAll">
<arg type="s" name="interface_name" direction="in"/>
<arg type="a{sv}" name="properties" direction="out"/>
</method>
<method name="Set">
<arg type="s" name="interface_name" direction="in"/>
<arg type="s" name="property_name" direction="in"/>
<arg type="v" name="value" direction="in"/>
</method>
<signal name="PropertiesChanged">
<arg type="s" name="interface_name"/>
<arg type="a{sv}" name="changed_properties"/>
<arg type="as" name="invalidated_properties"/>
</signal>
</interface>
<interface name="org.freedesktop.DBus.Introspectable">
<method name="Introspect">
<arg type="s" name="xml_data" direction="out"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Peer">
<method name="Ping"/>
<method name="GetMachineId">
<arg type="s" name="machine_uuid" direction="out"/>
</method>
</interface>
<interface name="org.gnome.keyring.InternalUnsupportedGuiltRiddenInterface">
<method name="ChangeWithMasterPassword">
<arg type="o" name="collection" direction="in"/>
<arg type="(oayays)" name="original" direction="in"/>
<arg type="(oayays)" name="master" direction="in"/>
</method>
<method name="ChangeWithPrompt">
<arg type="o" name="collection" direction="in"/>
<arg type="o" name="prompt" direction="out"/>
</method>
<method name="CreateWithMasterPassword">
<arg type="a{sv}" name="attributes" direction="in"/>
<arg type="(oayays)" name="master" direction="in"/>
<arg type="o" name="collection" direction="out"/>
</method>
<method name="UnlockWithMasterPassword">
<arg type="o" name="collection" direction="in"/>
<arg type="(oayays)" name="master" direction="in"/>
</method>
</interface>
<interface name="org.freedesktop.Secret.Service">
<method name="OpenSession">
<arg type="s" name="algorithm" direction="in"/>
<arg type="v" name="input" direction="in"/>
<arg type="v" name="output" direction="out"/>
<arg type="o" name="result" direction="out"/>
</method>
<method name="CreateCollection">
<arg type="a{sv}" name="properties" direction="in"/>
<arg type="s" name="alias" direction="in"/>
<arg type="o" name="collection" direction="out"/>
<arg type="o" name="prompt" direction="out"/>
</method>
<method name="SearchItems">
<arg type="a{ss}" name="attributes" direction="in"/>
<arg type="ao" name="unlocked" direction="out"/>
<arg type="ao" name="locked" direction="out"/>
</method>
<method name="Unlock">
<arg type="ao" name="objects" direction="in"/>
<arg type="ao" name="unlocked" direction="out"/>
<arg type="o" name="prompt" direction="out"/>
</method>
<method name="Lock">
<arg type="ao" name="objects" direction="in"/>
<arg type="ao" name="locked" direction="out"/>
<arg type="o" name="Prompt" direction="out"/>
</method>
<method name="LockService"/>
<method name="ChangeLock">
<arg type="o" name="collection" direction="in"/>
<arg type="o" name="prompt" direction="out"/>
</method>
<method name="GetSecrets">
<arg type="ao" name="items" direction="in"/>
<arg type="o" name="session" direction="in"/>
<arg type="a{o(oayays)}" name="secrets" direction="out"/>
</method>
<method name="ReadAlias">
<arg type="s" name="name" direction="in"/>
<arg type="o" name="collection" direction="out"/>
</method>
<method name="SetAlias">
<arg type="s" name="name" direction="in"/>
<arg type="o" name="collection" direction="in"/>
</method>
<signal name="CollectionCreated">
<arg type="o" name="collection"/>
</signal>
<signal name="CollectionDeleted">
<arg type="o" name="collection"/>
</signal>
<signal name="CollectionChanged">
<arg type="o" name="collection"/>
</signal>
<property type="ao" name="Collections" access="read"/>
</interface>
<node name="collection"/>
</node>
"
Found /usr/lib64/libproj.so.19
**What I did:
**When I first tried to install MySQL Workbench using YaST software it said that gtkmm30 is not installed so below is the script which I prepared and run:
sudo zypper refresh
sudo zypper update -y
mkdir ~/rpm
cd ~/rpm
wget https://dev.mysql.com/get/mysql80-community-release-sl15-3.noarch.rpm
sudo rpm -ivh mysql80-community-release-sl15-3.noarch.rpm
sudo zypper refresh
sudo zypper install mysql-community-server
mysql --version
cd ~
sudo zypper install -y gtkmm3-devel
sudo zypper install -y mysql-workbench
sudo systemctl start mysql
echo
echo
echo !!! The MySQL password :
grep temporary /var/log/mysql/mysqld.log
echo
echo
sudo mysql_secure_installation
sudo systemctl stop mysql
While troubleshooting I also uninstalled the MySQL Workbench via the CLI and installed it via YaST Software. The problem didn’t disappear.
My environment
Tumbleweed in Oracle VirtualBox VM
Kernel release: 5.7.11-1-default
DE: Xfce
Please, help me to find out why MySQL Workbench does not start.
Thank you.