Wednesday, October 7, 2020

Netdata : Install and configuration in Centos 7

Netdata is FREE tools for monitor everything in real time.

1. Install Netdata 

# bash <(curl -Ss https://my-netdata.io/kickstart.sh) all

2. Allow Netdata port in firewall

# firewall-cmd --permanent --add-port=19999/tcp
# firewall-cmd --reload  

3. Create Apache.conf to monitor Apache server

vim /etc/netdata/python.d/apache.conf

add this line:

localhost:
        name : 'local'
        url  : 'http://localhost/server-status?auto'

localhost:
        name : 'local'
        url  : 'http://127.0.0.1/server-status?auto'

4. Restart Netdata

systemctl restart netdata

5. Access the Netdata on browser

http://domain_name:19999

Related Posts:

0 comments:

Post a Comment