본문 바로가기
I T/Network

트래픽 모니터링 프로그램 VNSTAT 설치.

by 루솨 2019. 4. 10.

참조링크: https://humdi.net/wiki/vnstat/install/in_centos_with_image_output

-----------------------------------------------------------------

CentOS 7

yum install make gcc gd gd-devel wget sqlite sqlite-devel

홈페이지 :  http://humdi.net/vnstat/

wget http://humdi.net/vnstat/vnstat-2.1.tar.gz

tar zxvf vnstat-2.1.tar.gz

cd vnstat-2.1

./configure --prefix=/usr --sysconfdir=/etc && make all && make install

Install the service files and start the daemon

cp -v examples/systemd/vnstat.service /etc/systemd/system/

systemctl enable vnstat

systemctl start vnstat

CentOS 6

yum install make gcc gd gd-devel wget sqlite sqlite-devel

wget http://humdi.net/vnstat/vnstat-2.1.tar.gz

tar zxvf vnstat-2.1.tar.gz

cd vnstat-2.1

./configure --prefix=/usr --sysconfdir=/etc && make all && make install

cp -v examples/init.d/centos/vnstat /etc/init.d/

chkconfig vnstat on

service vnstat start