centos 7.4 安装mysql workbench最新版,启动失败,报错如下;mysql-workbench-bin killed by SIGSEGV。 网络搜索后无解,后在mysql论坛找到解决方案。 链接如下: https://forums.mysql.com/read.php?152,661138,663325 原文
1Sorry. There is a typo in the posting above. It should be: 2 3I got it to work after reading a posting at this link. https://stackoverflow.com/questions/47475710/mysql-workbench-cant-open-on-centos-7 4 5CORRECTION: Remove the current version and install 6.2.5-1 6 7Commands done as root user: 8 9wget http://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-workbench-community-6.2.5-1.el7.x86_64.rpm 10yum install rpm mysql-workbench-community-6.2.5-1.el7.x86_64.rpm 11yum install tinyxml 12 13An update might break it. 14 15# I also did these commands but I don't think they were needed: 16wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 17yum install rpm mysql57-community-release-el7-11.noarch.rpm 18 19# This wanted to install 6.3.10-1.el7 so I did not do it. 20yum install mysql-workbench-community 21 22 23大意是 24移除当前版本,安装6.2.5-1 25CORRECTION: Remove the current version and install 6.2.5-1 26 27作为root用户进行命令操作 28Commands done as root user: 29 30使用wget 命令进行下载(或复制下载地址到浏览器地址下载) 31wget http://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-workbench-community-6.2.5-1.el7.x86_64.rpm 32 33yum 命令安装程序及依赖 34yum install rpm mysql-workbench-community-6.2.5-1.el7.x86_64.rpm 35yum install tinyxml
本机具体操作如下
11、查看当前安装版本 2 yum -qa|grep mysql-workbench 32、删除最新版mysql-workbench 4rpm -e mysql-workbench-community-6.3.10-1.el7.x86_64 5或者 6yum -remove mysql-workbench-community-6.3.10-1.el7.x86_64 73、安装下载后的6.2.5-1版本 8rpm -ivh mysql-workbench-community-6.2.5-1.el7.x86_64.rpm 94、安装依赖 10yum install tinyxml ** 11 12安装成功后在程序菜单中找到快捷方式,点击即可启动。