• 05-09-2016, 12:57:23
    #1
    Merhaba,

    Redhat linux sunucuda snmp kurulumu yapmak istiyorum. Ancak aldığım hatayı bir türlü çözemedim.

    yum update yaptığım da da aynı hatayı almaktayım.

    [root@localhost ~]# yum update
    Loading "installonlyn" plugin
    Setting up Update Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    No Packages marked for Update/Obsoletion
    
    [root@localhost ~]# yum install net-snmp-utils net-snmp
    Loading "installonlyn" plugin
    Setting up Install Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    Parsing package install arguments
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    No Match for argument: net-snmp-utils
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    No Match for argument: net-snmp
    Nothing to do
    [root@localhost ~]#
    anladığım kadarıyla dosya sistemini bulamıyor. tar.gz dosyasından nasıl kurulum yaparım ? Bilgisi olan yada makale paylaşabilecek biri var mı ?
  • 05-09-2016, 15:22:23
    #2
    cat /etc/redhat-release
    bu komutun çıktısını yazabilir misiniz hocam
  • 05-09-2016, 16:06:56
    #3
    bantumi adlı üyeden alıntı: mesajı görüntüle
    cat /etc/redhat-release
    bu komutun çıktısını yazabilir misiniz hocam
    Red Hat Enterprise Linux Server release 5 (Tikanga)
  • 05-09-2016, 16:17:00
    #4
    yum update -y
    yum -y install net-snmp
    yum -y install net-snmp-utils

    nano /etc/snmp/snmpd.conf düzenleyelim aşağıdaki gibi

    ## sec.name source community
    ## ======== ====== =========
    com2sec local localhost public
    com2sec network_1 192.168.1.2 public
    
    ## Access.group.name sec.model sec.name
    ## ================= ========= ========
    group MyROGroup_1 v1 local
    group MyROGroup_1 v1 network_1
    
    ## MIB.view.name incl/excl MIB.subtree mask
    ## ============== ========= =========== ====
    view all-mibs included .1 80
    
    ## MIB
    ## group.name context sec.model sec.level prefix read write notif
    ## ========== ======= ========= ========= ====== ==== ===== =====
    access MyROGroup_1 “” v1 noauth exact all-mibs none none
    
    disk /
    disk /home
    disk /backups
    com2sec network_1 192.168.1.2 public kısmındaki ip adresini kendinize göre düzenleyin.

    chkconfig snmpd on
    service snmpd start
  • 05-09-2016, 16:18:07
    #5
    aHm3t adlı üyeden alıntı: mesajı görüntüle
    Red Hat Enterprise Linux Server release 5 (Tikanga)
    https://access.redhat.com/solutions/253273

    bu subscribe işlemlerini yapman gerekiyor hocam ilk önce
  • 06-09-2016, 10:33:36
    #6
    Evet sorun versiyonun 5.0 olmasından kaynaklı. 6.7 versiyonuna ait kurulum gerçekleştirdikten sonra tüm hatalar ortadan kalktı. VDS.TC ve bantumi destek için teşekkürler.