[root@wallet01 ~]# curl -Ss 'https://raw.githubusercontent.com/netdata/netdata-demo-site/master/install-required-packages.sh' >/tmp/kickstart.sh && bash /tmp/kickstart.sh -i netdata-all 

[root@wallet01 ~]# yum update -y nss curl libcurl

[root@wallet01 ~]# git clone https://github.com/netdata/netdata.git
Initialized empty Git repository in /root/netdata/.git/
remote: Enumerating objects: 49, done.
remote: Counting objects: 100% (49/49), done.
remote: Compressing objects: 100% (39/39), done.
remote: Total 42165 (delta 14), reused 23 (delta 10), pack-reused 42116
Receiving objects: 100% (42165/42165), 29.21 MiB | 2.38 MiB/s, done.
Resolving deltas: 100% (30237/30237), done.

[root@wallet01 ~]# cd netdata

[root@wallet01 netdata]# ./netdata-installer.sh --dont-start-it

  ^
  |.-.   .-.   .-.   .-.   .  netdata                                        
  |   '-'   '-'   '-'   '-'   real-time performance monitoring, done right!  
  +----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--->


  You are about to build and install netdata to your system.

  It will be installed at these locations:

   - the daemon     at /usr/sbin/netdata
   - config files   in /etc/netdata
   - web files      in /usr/share/netdata
   - plugins        in /usr/libexec/netdata
   - cache files    in /var/cache/netdata
   - db files       in /var/lib/netdata
   - log files      in /var/log/netdata
   - pid file       at /var/run/netdata.pid
   - logrotate file at /etc/logrotate.d/netdata

  This installer allows you to change the installation path.
  Press Control-C and run the same command with --help for help.

Press ENTER to build and install netdata to your system > 

略......

netdata by default listens on all IPs on port 19999,
so you can access it with:

  http://this.machine.ip:19999/

To stop netdata run:

  service netdata stop

To start netdata run:

  service netdata start

Uninstall script copied to: /usr/libexec/netdata-uninstaller.sh

 --- Install netdata updater tool --- 
Update script is located at /usr/libexec/netdata-updater.sh

 --- Check if we must enable/disable the netdata updater --- 
You chose *NOT* to enable auto-update, removing any links to the updater from cron (it may have happened if you are reinstalling)

Did not find any cron entries to remove

 --- We are done! --- 

  ^
  |.-.   .-.   .-.   .-.   .-.   .  netdata              .-.   .-.   .-.   .-
  |   '-'   '-'   '-'   '-'   '-'   is installed now!  -'   '-'   '-'   '-'  
  +----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--->

  enjoy real-time performance and health monitoring...

[root@wallet01 ~]# service netdata start
Starting netdata...                                        [  OK  ]

[root@wallet01 ~]# service netdata status
netdata (pid  11454) is running...

[root@wallet01 ~]# netstat -tunlp | grep netdata
tcp        0      0 127.0.0.1:8125              0.0.0.0:*                   LISTEN      11454/netdata       
tcp        0      0 0.0.0.0:19999               0.0.0.0:*                   LISTEN      11454/netdata       
tcp        0      0 ::1:8125                    :::*                        LISTEN      11454/netdata       
tcp        0      0 :::19999                    :::*                        LISTEN      11454/netdata       
udp        0      0 127.0.0.1:8125              0.0.0.0:*                               11454/netdata       
udp        0      0 ::1:8125                    :::*                                    11454/netdata

【Linux】系统监控工具:Netdata_第1张图片