This is an old revision of the document!
- Please connect vasexperts repository:
rpm --import http://vasexperts.ru/centos/RPM-GPG-KEY-vasexperts.ru rpm -Uvh http://vasexperts.ru/centos/6/x86_64/vasexperts-repo-1-0.noarch.rpm
- Install NFSEN (Apache WEB server is installed along with NFSEN):
yum install nfsen
- Check that the service can be started:
service httpd start service nfsen start
- Configure the service to start automatically on power on:
chkconfig httpd on chkconfig nfsen on
- Open firewall ports to access Apache and to get netflow:
vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A INPUT -m state --state NEW -m udp -p udp --dport 9997 -j ACCEPT -A INPUT -m state --state NEW -m udp -p udp --dport 9998 -j ACCEPT
- Switch off selinux 1)
setenforce 0 vi /etc/selinux/config SELINUX=disabled
- Open the page http://hostname/nfsen/nfsen.php in your browser. Here hostname - is the name or address of nfsen server. Check that everything works fine.
1)
Temporary solution