zoukankan      html  css  js  c++  java
  • centos系统安装mysql workbench

    一、Workbench是什么?

    Workbench是MySql图形化的管理工具,可以在Workbench里输入MySql的语句,这可能更适合大多数人的视觉,有些操作更能更简单化

    二、环境:

    试验环境1:Linux centos7.2

    三、下载

    下载地址:

    https://dev.mysql.com/downloads/workbench/

    Centos系统选择:

    四、安装

    通过FTP工具,将安装包上传至Linux服务器之后,执行安装命令

    命令:rpm -ivh mysql-workbench-community-8.0.18-1.el7.x86_64.rpm

    安装的时候提示以下错误:

    [root@vm1 soft]# rpm -ivh mysql-workbench-community-8.0.18-1.el7.x86_64.rpm 
    warning: mysql-workbench-community-8.0.18-1.el7.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
    error: Failed dependencies:
    	gnome-keyring is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	gtk3 is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	gtkmm30 is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libGL.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libGLU.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libICE.so.6()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libSM.so.6()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libXext.so.6()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libatk-1.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libatkmm-1.6.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libcairo-gobject.so.2()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libcairo.so.2()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libcairomm-1.0.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libfontconfig.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgdk-3.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgdk-x11-2.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgdkmm-3.0.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgiomm-2.4.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libglibmm-2.4.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgtk-3.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgtk-x11-2.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libgtkmm-3.0.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libpango-1.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libpangocairo-1.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libpangoft2-1.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libpangomm-1.4.so.1()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libsecret is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libsecret-1.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libsigc-2.0.so.0()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libzip is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    	libzip.so.2()(64bit) is needed by mysql-workbench-community-8.0.18-1.el7.x86_64
    

    从日志上看湿缺少相应的依赖包,按照错误提示,安装相应的依赖包之后,重新尝试。

    yum install gnome-keyring
    yum install gtkmm30
    yum install libGLU libICE libSM libsecret libzip
    yum install libgdk-x11-2.0.so.0
    

    安装之后,发现libgdk-x11-2.0.so.0及libgtk-x11-2.0.so.0这两个找不到,

    在网上找到了个解决办法:

    yum groupinstall "Development Tools"
    yum install gtk+-devel gtk2-devel
    

    再次尝试执行安装mysql workbench之后成功。

  • 相关阅读:
    css重点章节复习—布局-边框-边距-浮动 (部分)
    (重点章节复习以及代码调整笔记)选择器:伪类和伪元素选择器(部分)
    css015 定位网页上的元素
    css014 响应式web设计
    3.MFC基础(三)消息映射
    2.MFC基础(二)窗口创建
    1.MFC基础(一)程序流程
    27.windows线程
    26.windows进程
    25.windows内存管理
  • 原文地址:https://www.cnblogs.com/quchunhui/p/12119544.html
Copyright © 2011-2022 走看看