zoukankan      html  css  js  c++  java
  • 【linux】安装zabbix时候报错:zabbix-server-mysql-5.0.3-1.el7.x86_64: [Errno 256] No more mirrors to try

    yum 镜像的问题

    网络问题大家都知道怎么回事

    配置下zabbix使用阿里的源就可以了

    [root@cyy /]# cd /etc/yum.repos.d/
    [root@cyy yum.repos.d]# cp zabbix.repo zabbix.repo.bak
    [zabbix]
    name=Zabbix Official Repository - $basearch
    #baseurl=http://repo.zabbix.com/zabbix/5.0/rhel/7/$basearch/
    baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
    
    [zabbix-frontend]
    name=Zabbix Official Repository frontend - $basearch
    #baseurl=http://repo.zabbix.com/zabbix/5.0/rhel/7/$basearch/frontend
    baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/$basearch/
    enabled=0
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
    
    [zabbix-debuginfo]
    name=Zabbix Official Repository debuginfo - $basearch
    baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/$basearch/
    #baseurl=http://repo.zabbix.com/zabbix/5.0/rhel/7/$basearch/debuginfo/
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX-A14FE591
    gpgcheck=1
    
    [zabbix-non-supported]
    name=Zabbix Official Repository non-supported - $basearch
    #baseurl=http://repo.zabbix.com/non-supported/rhel/7/$basearch/
    baseurl=https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/$basearch/
    enabled=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX
    gpgcheck=1
    ~                        

    替换下就可以了

    已安装:
      zabbix-agent.x86_64 0:5.0.3-1.el7                                                          zabbix-server-mysql.x86_64 0:5.0.3-1.el7                                                         
    
    作为依赖被安装:
      OpenIPMI.x86_64 0:2.0.27-1.el7             OpenIPMI-libs.x86_64 0:2.0.27-1.el7    OpenIPMI-modalias.x86_64 0:2.0.27-1.el7    fping.x86_64 0:3.10-4.el7    libevent.x86_64 0:2.0.21-4.el7   
      net-snmp-libs.x86_64 1:5.7.2-48.el7_8.1    unixODBC.x86_64 0:2.3.1-14.el7        
    
    完毕!

     https://www.zabbix.com/cn/download?zabbix=5.0&os_distribution=centos&os_version=7&db=mysql&ws=nginx

    官网:

    [root@cyy system]# systemctl restart zabbix-server zabbix-agent rh-nginx116-nginx rh-php72-php-fpm
    [root@cyy system]# netstat -tunl
    Active Internet connections (only servers)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State      
    tcp        0      0 0.0.0.0:10050           0.0.0.0:*               LISTEN     
    tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN     
    tcp        0      0 0.0.0.0:3306            0.0.0.0:*               LISTEN     
    tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN     
    tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
    tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
    tcp6       0      0 :::10050                :::*                    LISTEN     
    tcp6       0      0 :::80                   :::*                    LISTEN     
    tcp6       0      0 :::22                   :::*                    LISTEN     
    tcp6       0      0 ::1:25                  :::*                    LISTEN     
    udp        0      0 127.0.0.1:323           0.0.0.0:*                          
    udp        0      0 0.0.0.0:68              0.0.0.0:*                          
    udp6       0      0 ::1:323                 :::*                               
    [root@cyy system]# 

    上边是启动之后的样子:

    之后

    g. 配置Zabbix前端

    连接到新安装的Zabbix前端: http://server_ip_or_name/zabbix
    根据Zabbix文件里步骤操作: Installing frontend

  • 相关阅读:
    数据结构 --- 循环队列(队列的顺序存储结构)
    SPOJ MYQ10 10649. Mirror Number 数位DP
    CodeForces 215E Periodical Numbers 数位DP
    CodeForces 234Div2
    URAL 1057 Amount of Degrees 数位DP
    CodeForces 55D Beautiful numbers 数位DP+数学
    HDU 4352 XHXJ's LIS 数位DP + 状压
    SPOJ BALNUM Balanced Numbers 状压+数位DP
    HDU 4909 String 统计+状压
    CodeForces 258B Little Elephant and Elections 数位DP
  • 原文地址:https://www.cnblogs.com/aoxueshou/p/13722819.html
Copyright © 2011-2022 走看看