I just installed openSuSE Tumbleweed. (Clean installation.)
Then I installed MySQL from MySQL site packages and the MySQL Workbench from openSuSE repository:
Code:
adrian@asia:~> rpm -qa mysql*
mysql-community-embedded-5.7.20-1.sles12.x86_64
mysql-community-client-5.7.20-1.sles12.x86_64
mysql-community-libs-5.7.20-1.sles12.x86_64
mysql-community-server-5.7.20-1.sles12.x86_64
mysql-community-common-5.7.20-1.sles12.x86_64
mysql-community-devel-5.7.20-1.sles12.x86_64
mysql-community-embedded-devel-5.7.20-1.sles12.x86_64
mysql-workbench-6.3.10-1.2.x86_64
MySQL server is running:
Code:
adrian@asia:~> ps -efa | grep mysql*
mysql 1770 1 0 13:02 ? 00:00:01 /usr/sbin/mysqld --daemonize
--pid-file=/var/run/mysql/mysqld.pid
adrian 5876 5019 0 13:24 pts/2 00:00:00 grep --color=auto mysql*
And I can connect to the server:
Code:
adrian@asia:~> mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.20 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement
.
mysql>
But when I want to create a new connection from MySQL Workbench, delete the default connection, or connect to the server, MySQL Workbench closes.
Do you have any idea, what is happening?
Thank you, very much.