<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Netdata &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/netdata/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.hostry.com</link>
	<description>Full information on how to use HOSTRY, provided by 24/7 community based support</description>
	<lastBuildDate>Thu, 24 Jun 2021 06:53:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.12</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>Netdata &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Install Netdata on CentOS 7</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-centos-7/</link>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 03 Jul 2020 11:17:49 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1838</guid>

					<description><![CDATA[Netdata is a performance monitoring system that allocates resources and availability in real time. Install dependencies To install Netdata, you first need to install the following: Install netdata Installation using an official script. Make sure you run bash for your shell After, Install Netdata directly from GitHub source If no [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://github.com/netdata/netdata/wiki">Netdata</a></em></strong> is a performance monitoring system that allocates resources and availability in real time.</p>



<h2 id="install-dependencies" >Install dependencies</h2>



<p>To install <strong>Netdata</strong>, you first need to install the following:</p>



<pre class="wp-block-code"><code>$ sudo yum install zlib-devel libuuid-devel libmnl-devel gcc make git autoconf autogen automake pkgconfig
$ sudo yum install curl jq nodejs</code></pre>



<h2 id="install-netdata" >Install netdata</h2>



<p>Installation using an official script. Make sure you run bash for your shell</p>



<pre class="wp-block-code"><code>$ bash</code></pre>



<p>After, Install <strong>Netdata</strong> directly from GitHub source</p>



<pre class="wp-block-code"><code>$ bash &lt;(curl -Ss https://my-netdata.io/kickstart.sh)</code></pre>



<p>If no errors occur during installation, the Netdata daemon will start.</p>



<h2 id="change-firewall-rules" >Change firewall rules</h2>



<p>Before you can access Netdata, you need to change your firewall rules. This is necessary to allow traffic through port 19999 (this port is set by default for Netdata)</p>



<pre class="wp-block-code"><code>$ sudo firewall-cmd --permanent --zone=public --add-port=19999/tcp
$ sudo firewall-cmd --reload</code></pre>



<h2 id="view-monitoring-interface" >View monitoring interface</h2>



<p>After successfully changing the firewall rules, it is mandatory to confirm the installation by opening a web browser and visiting the monitoring interface at <strong><em>http://192.0.2.123:19999</em></strong></p>



<h2 id="setup-systemd-service-unit" >Setup Systemd Service Unit</h2>



<p>For your comfort, put Netdatd under systemd control</p>



<pre class="wp-block-code"><code>$ sudo yum install psmisc
$ sudo killall netdata
$ sudo cp ~/netdata/system/netdata.service /etc/systemd/system/
$ sudo systemctl daemon-reload
$ sudo systemctl start netdata.service
$ sudo systemctl enable netdata.service</code></pre>



<p>To further configure Netdata, you must edit the configuration file</p>



<pre class="wp-block-code"><code>$ sudo vi /etc/netdata/netdata.conf</code></pre>



<p>To view the current configuration, you can visit the page <strong>http://192.0.2.123:19999/netdata.conf</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How To Install Netdata on Debian 9</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 01 Oct 2020 09:36:33 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2299</guid>

					<description><![CDATA[Netdata is a distributed real-time monitoring system for server uptime and performance. This guide focuses on operating systems such as Debian 9 Installing dependencies First of all, in order to install Netdata, you need to install the following dependencies. You must enter the following into the command line: Installing Netdata [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://github.com/netdata/netdata/wiki">Netdata</a></strong> is a distributed real-time monitoring system for server uptime and performance. This guide focuses on operating systems such as Debian 9</p>



<h2 id="installing-dependencies" >Installing dependencies</h2>



<p>First of all, in order to install Netdata, you need to install the following dependencies. You must enter the following into the command line:</p>



<pre class="wp-block-code"><code>sudo apt-get install zlib1g-dev uuid-dev libmnl-dev gcc make git autoconf autoconf-archive autogen automake pkg-config curl</code></pre>



<h2 id="installing-netdata" >Installing Netdata</h2>



<p>With the following installation script, you will be able to install Netdata. Make sure you are using <strong>bash</strong></p>



<pre class="wp-block-code"><code>$ bash</code></pre>



<p>Install Netdata directly from the <strong>GitHub</strong> source</p>



<pre class="wp-block-code"><code>$ bash &lt;(curl -Ss https://my-netdata.io/kickstart.sh)</code></pre>



<p>If everything was done correctly, then the Netdata daemon will be started after that. To check the status of Netdata services, you can run the following commands:</p>



<pre class="wp-block-code"><code>$ sudo systemctl start netdata
$ sudo systemctl stop netdata
$ sudo systemctl status netdata</code></pre>



<h2 id="change-firewall-status" >Change firewall status</h2>



<p>Before you can access the Netdata web interface, you need to change the firewall rules to allow traffic on port <strong>19999</strong>, this is the default communication port for Netdata</p>



<pre class="wp-block-code"><code>$ sudo firewall-cmd --permanent --zone=public --add-port=19999/tcp
$ sudo firewall-cmd --reload</code></pre>



<p>After the changes, you need to <strong>restart</strong> the firewall. To do this, you can use the following command:</p>



<pre class="wp-block-code"><code>$ service firewalld restart</code></pre>



<h2 id="view-the-monitoring-interface" >View The Monitoring Interface</h2>



<p>In this step, you need to confirm the installation. To do this, open the interface in a web browser and visit the monitoring interface for Netdata. <strong>http://your_server_IP:19999</strong></p>



<p>As for further configuring Netdata, you need to edit its configuration file:</p>



<pre class="wp-block-code"><code>$ sudo vi /etc/netdata/netdata.conf</code></pre>



<p>To view the current configuration: </p>



<p><strong>http://your_server_IP:19999/netdata.conf</strong></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
