How to install Netdata on Oracle Linux 8.5
- 00:50 cat /etc/os-release
- 01:05 sudo dnf -y install git zlib-devel libuuid-devel libmnl gcc make git autoconf automake pkgconfig curl findutils
- 01:50 bash <(curl -Ss https://my-netdata.io/kickstart.sh) all
- 03:32 firewall-cmd -- permanent --add-port=19999/tcp
- 04:00 firewall-cmd --reload
- 04:15 systemctl status netdata
To Install Netdata On Oracle Linux 8.5
Introduction:
Netdata is an open-source scalable, real-time system performance, and health monitoring application for Unix-like systems such as Linux, FreeBSD, and macOS that collects several metrics and visualizes them, and enables you to watch operations on your system. It supports several plugins for monitoring current system status, running applications, and services including MySQL/MariaDB database server, and more.
Installation Steps:
Step 1: check the Oracle Linux version by using the below command
[root@linuxhelp ~]# cat /etc/os-release
NAME="Oracle Linux Server"
VERSION="8.5"
ID="ol"
ID_LIKE="f
Step 2: Install the following dependencies by using the below command
[root@linuxhelp ~]# sudo dnf -y install git zlib-devel libuuid-devel libmnl gcc make git autoconf automake pkgconfig curl findutils
===================================================================================================
Package Architecture Version Repository Size
===================================================================================================
Installing:
autoconf noarch 2.69-29.el8 ol8_appstream 710 k
automake noarch 1.16.1-7.el8 ol8_appstream 713 k
gcc x86_64 8.5.0-10.1.0.1.el8_6 ol8_appstream 23 M
git x86_64 2.31.1-2.el8 ol8_appstream 161 k
libuuid-devel x86_64 2.32.1-35.el8 ol8_baseos_latest 98 k
make x86_64 1:4.2.1-11.el8 ol8_baseos_latest 498 k
zlib-devel x86_64 1.2.11-18.el8_5 ol8_baseos_latest 58 k
Verifying : libuuid-2.32.1-28.el8.x86_64 40/46
Verifying : util-linux-2.32.1-35.el8.x86_64 41/46
Verifying : util-linux-2.32.1-28.el8.x86_64 42/46
Verifying : util-linux-user-2.32.1-35.el8.x86_64 43/46
Verifying : util-linux-user-2.32.1-28.el8.x86_64 44/46
Verifying : zlib-1.2.11-18.el8_5.x86_64 45/46
Verifying : zlib-1.2.11-17.el8.x86_64
Installed:
autoconf-2.69-29.el8.noarch automake-1.16.1-7.el8.noarch
cpp-8.5.0-10.1.0.1.el8_6.x86_64 gcc-8.5.0-10.1.0.1.el8_6.x86_64
git-2.31.1-2.el8.x86_64 git-core-2.31.1-2.el8.x86_64
git-core-doc-2.31.1-2.el8.noarch glibc-devel-2.28-164.0.1.el8.x86_64
isl-0.16.1-6.el8.x86_64 libuuid-devel-2.32.1-35.el8.x86_64
libxcrypt-devel-4.1.1-6.el8.x86_64 m4-1.4.18-7.el8.x86_64
make-1:4.2.1-11.el8.x86_64 perl-Error-1:0.17025-2.el8.noarch
perl-Git-2.31.1-2.el8.noarch perl-TermReadKey-2.37-7.el8.x86_64
perl-Thread-Queue-3.13-1.el8.noarch zlib-devel-1.2.11-18.el8_5.x86_64
Complete!
Step 3: Download and Install Netdata using the script
[root@linuxhelp ~]# bash <(curl -Ss https://my-netdata.io/kickstart.sh) all
/dev/fd/63: line 35: cd: pipe:[137468]: No such file or directory
Last metadata expiration check: 0:04:39 ago on Thu 29 Sep 2022 05:16:42 AM IST.
Dependencies resolved.
===================================================================================================
Package Architecture Version Repository Size
===================================================================================================
Installing:
netdata-repo-edge noarch 1-2 @commandline 6.9 k
Transaction Summary
===================================================================================================
Installed:
netdata-repo-edge-1-2.noarch
Complete!
OK
Netdata Repository Config 227 B/s | 833 B 00:03
===================================================================================================
Package Arch Version Repository Size
===================================================================================================
Installing:
netdata x86_64 1.36.0.154.nightly-1.el8 netdata-edge 40 M
3.8
Transaction Summary
===================================================================================================
Install 8 Packages
Upgrade 1 Package
Running transaction
Preparing : 1/1
Upgrading : json-c-0.13.1-3.el8.x86_64 1/10
Installing : python38-setuptools-wheel-41.6.0-5.module+el8.5.0+20371+4f24d723.noar 2/10
Upgraded:
json-c-0.13.1-3.el8.x86_64
Installed:
libatomic-8.5.0-10.1.0.1.el8_6.x86_64
libuv-1:1.41.1-1.el8_4.x86_64
netdata-1.36.0.154.nightly-1.el8.x86_64
protobuf-3.5.0-13.el8.x86_64
python38-3.8.12-1.module+el8.6.0+20556+9910889d.x86_64
python38-libs-3.8.12-1.module+el8.6.0+20556+9910889d.x86_64
python38-pip-wheel-19.3.1-5.module+el8.6.0+20556+9910889d.noarch
python38-setuptools-wheel-41.6.0-5.module+el8.5.0+20371+4f24d723.noarch
Complete!
OK
Step 4: Now allow Netdata default port to pass through firewall using the below command
[root@linuxhelp ~]# firewall-cmd --permanent --add-port=19999/tcp
Success
Step 5: Reload firewall by using the below command
[root@linuxhelp ~]# firewall-cmd --reload
Success
Step 6: Check the status of Netdata by using the below command
[root@linuxhelp ~]# systemctl status netdata
● netdata.service - Real time performance monitoring
Loaded: loaded (/usr/lib/systemd/system/netdata.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2022-09-29 05:23:03 IST; 1min 42s ago
Main PID: 43591 (netdata)
Step 7: Now go to the browser and enter you server ip https//server-ip:19999/ in browser as shown in the below image.

Step 8: This is the Dashboard of Netdata

Step 9: This is the CPU utilization

Step 10: This is the Memory utilization

Step 11: This is the Disk Performance

Conclusion:
We have reached the end of this article. In this guide, we have walked you through the steps required to Install Netdata on Oracle Linux 8.5. Your feedback is much welcome.
Comments ( 0 )
No comments available