zoukankan      html  css  js  c++  java
  • Centos 7 Ntop 流量分析 安装

    Centos 6 安装 Ntop:https://www.cnblogs.com/weijie0717/p/4886314.html

    一、安装

      1、添加EPEL 仓库

        # yum install epel-release

      2、创建 Ntop 存储库

        # vim /etc/yum.repos.d/ntop.repo    

    [ntop]
    name=ntop packages
    baseurl=http://www.nmon.net/centos-stable/$releasever/$basearch/
    enabled=1
    gpgcheck=1
    gpgkey=http://www.nmon.net/centos-stable/RPM-GPG-KEY-deri
    [ntop-noarch]
    name=ntop packages
    baseurl=http://www.nmon.net/centos-stable/$releasever/noarch/
    enabled=1
    gpgcheck=1
    gpgkey=http://www.nmon.net/centos-stable/RPM-GPG-KEY-deri

      3、安装软件包

        # yum update

        #  yum install ntopng ntopng-data

        # yum install redis php-pecl-redis

      4、Ntop 配置文件

        /etc/ntopng/ntopng.conf

      5、启动服务,先启动redis, 再启动 Ntop

        # systemctl start redis.service

        # systemctl enable redis.service

        # systemctl start ntopng.service

        # systemctl enable ntopng.service

      6、关闭防火前和Selinux

    二、访问
      浏览器访问:Ntop-Ser_IP:3000  账号:admin  密码:admin

  • 相关阅读:
    vue中的$nextTick()
    对SPA(单页面应用)的总结
    函数节流和函数防抖
    前端路由
    let、const
    深拷贝与浅拷贝
    小白浅谈Ajax基础
    关于BFC布局的那些事
    关于BFC的那些事
    Sass基础知识及语法
  • 原文地址:https://www.cnblogs.com/weijie0717/p/10218743.html
Copyright © 2011-2022 走看看