• 安装mysql时出现:需要这两个包perl(Data::Dumper),perl(JSON)


    1、具体详情

    [root@localhost soft]# ls
    mysql-community-client-8.0.18-1.el7.x86_64.rpm  mysql-community-devel-8.0.18-1.el7.x86_64.rpm            mysql-community-libs-8.0.18-1.el7.x86_64.rpm         mysql-community-server-8.0.18-1.el7.x86_64.rpm
    mysql-community-common-8.0.18-1.el7.x86_64.rpm  mysql-community-embedded-compat-8.0.18-1.el7.x86_64.rpm  mysql-community-libs-compat-8.0.18-1.el7.x86_64.rpm  mysql-community-test-8.0.18-1.el7.x86_64.rpm
    [root@localhost soft]# rpm -ivh *
    warning: mysql-community-client-8.0.18-1.el7.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
    error: Failed dependencies:
            perl(Data::Dumper) is needed by mysql-community-test-8.0.18-1.el7.x86_64
            perl(JSON) is needed by mysql-community-test-8.0.18-1.el7.x86_64
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    2、解决办法

    [root@localhost soft]# yum -y install perl
    [root@localhost soft]# yum install perl perl-Data-Dumper
    [root@localhost soft]# yum install perl perl-JSON
    
    • 1
    • 2
    • 3
    [root@localhost soft]# yum -y install perl
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    Package 4:perl-5.16.3-299.el7_9.x86_64 already installed and latest version
    Nothing to do
    [root@localhost soft]# yum install perl perl-Data-Dumper
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    Package 4:perl-5.16.3-299.el7_9.x86_64 already installed and latest version
    Resolving Dependencies
    --> Running transaction check
    ---> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    ============================================================================================================================================================================================================================== Package                                                     Arch                                              Version                                                  Repository                                       Size
    ==============================================================================================================================================================================================================================Installing:
     perl-Data-Dumper                                            x86_64                                            2.145-3.el7                                              base                                             47 k
    
    Transaction Summary
    ==============================================================================================================================================================================================================================Install  1 Package
    
    Total download size: 47 k
    Installed size: 97 k
    Is this ok [y/d/N]: y
    Downloading packages:
    perl-Data-Dumper-2.145-3.el7.x86_64.rpm                                                                                                                                                                |  47 kB  00:00:02     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Installing : perl-Data-Dumper-2.145-3.el7.x86_64                                                                                                                                                                        1/1 
      Verifying  : perl-Data-Dumper-2.145-3.el7.x86_64                                                                                                                                                                        1/1 
    
    Installed:
      perl-Data-Dumper.x86_64 0:2.145-3.el7                                                                                                                                                                                       
    
    Complete!
    [root@localhost soft]# yum install perl perl-JSON
    Loaded plugins: fastestmirror
    Loading mirror speeds from cached hostfile
    Package 4:perl-5.16.3-299.el7_9.x86_64 already installed and latest version
    Resolving Dependencies
    --> Running transaction check
    ---> Package perl-JSON.noarch 0:2.59-2.el7 will be installed
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    ============================================================================================================================================================================================================================== Package                                                Arch                                                Version                                                   Repository                                         Size
    ==============================================================================================================================================================================================================================Installing:
     perl-JSON                                              noarch                                              2.59-2.el7                                                base                                               96 k
    
    Transaction Summary
    ==============================================================================================================================================================================================================================Install  1 Package
    
    Total download size: 96 k
    Installed size: 264 k
    Is this ok [y/d/N]: y
    Downloading packages:
    perl-JSON-2.59-2.el7.noarch.rpm                                                                                                                                                                        |  96 kB  00:00:02     
    Running transaction check
    Running transaction test
    Transaction test succeeded
    Running transaction
      Installing : perl-JSON-2.59-2.el7.noarch                                                                                                                                                                                1/1 
      Verifying  : perl-JSON-2.59-2.el7.noarch                                                                                                                                                                                1/1 
    
    Installed:
      perl-JSON.noarch 0:2.59-2.el7                                                                                                                                                                                               
    
    Complete!
    [root@localhost soft]# rpm -ivh *
    warning: mysql-community-client-8.0.18-1.el7.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
    Preparing...                          ################################# [100%]
    Updating / installing...
       1:mysql-community-common-8.0.18-1.e################################# [ 13%]
       2:mysql-community-libs-8.0.18-1.el7################################# [ 25%]
       3:mysql-community-client-8.0.18-1.e################################# [ 38%]
       4:mysql-community-server-8.0.18-1.e################################# [ 50%]
       5:mysql-community-test-8.0.18-1.el7################################# [ 63%]
       6:mysql-community-devel-8.0.18-1.el################################# [ 75%]
       7:mysql-community-libs-compat-8.0.1################################# [ 88%]
       8:mysql-community-embedded-compat-8################################# [100%]
    [root@localhost soft]# 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
  • 相关阅读:
    树——二叉查找树 - 有删除动作
    MogaFX— 阿根廷政府规制购买美元
    @Autowire、@Recourse用啥?
    【Jetpack Compose】BOM是什么?
    第80天-红蓝对抗-AWD 模式&准备&攻防&监控&批量
    100天精通Python(数据分析篇)——第55天:Pandas之DataFrame对象大总结
    web网页设计期末课程大作业:旅游网页主题网站设计——中国风的温泉酒店预订网(13页)HTML+CSS+JavaScript
    【云原生之Docker实战】使用docker部署Notepad个人记事本工具
    PHP 共享茶室棋牌室无人软硬件结合开发小程序系统的开发优势
    ArcGIS模拟风场(流场)
  • 原文地址:https://blog.csdn.net/qq_22938603/article/details/125554630