<?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>monnitoring Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/monnitoring/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 01 Aug 2019 22:14:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Zabbix on Debian 10</title>
		<link>https://www.osradar.com/install-zabbix-on-debian-10/</link>
					<comments>https://www.osradar.com/install-zabbix-on-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 04 Aug 2019 22:22:24 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monnitoring]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[zabbix]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12865</guid>

					<description><![CDATA[<p>As we already know Debian 10 is an operating system used on servers. These servers are capable of hosting very important applications for a network like Zabbix. So, in this post, you will learn how to install Zabbix on Debian 10. The tutorial will be step by step, so you will not have problems doing [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-zabbix-on-debian-10/">Install Zabbix on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As we already know Debian 10 is an operating system used on servers. These servers are capable of hosting very important applications for a network like Zabbix. So, in this post, you will learn how to install Zabbix on Debian 10. The tutorial will be step by step, so you will not have problems doing it.</p>
<h2>What is Zabbix?</h2>
<p><a href="https://www.zabbix.com/">Zabbix</a> is a powerful tool for network monitoring. It is open-source and uses database handlers to process the data collected from your analyses.</p>
<p>There are too many features that make Zabbix a necessary tool in a network because with it the sysadmin can have detailed information about what happens in it. In addition, you can have real-time monitoring with their due reports.</p>
<h2>Install Zabbix on Debian 10</h2>
<p>The procedure for installing Zabbix is quite simple. On the other hand, we will work on the terminal installing and preparing the installation of Zabbix. Then, you will have to complete the process using the web browser.</p>
<p>In addition, all post will use the root user. To be the root user, open the terminal and run:</p>
<pre>:~$ su</pre>
<p>So, let us start.</p>
<h3>1) Install LAMP Stack on Debian 10</h3>
<p>Zabbix has a very friendly web interface to obtain the monitoring results. In this sense, as it is a web application, it is required to have installed LAMP on Debian 10.</p>
<p>So, you can read <a href="https://www.osradar.com/install-lamp-on-debian-10/">How to install LAMP on Debian 10?</a></p>
<p>Besides that, you have to install these PHP modules with this command:</p>
<pre>:~# apt install php php php-mysql php-curl php-json php-cgi php-xml php-mbstring php-bcmath</pre>
<p>So, we can continue.</p>
<h3>2) Create the Zabbix database and the MariaDB user</h3>
<p>Zabbix requires a database manager. But it also requires a database. Creating the database is simple, but it is recommended to create a user dedicated to it.</p>
<p>Enter the <a href="https://www.osradar.com/tag/mariadb/">MariaDB</a> console with the following command:</p>
<pre>:~# mysql -u root -p</pre>
<p>Then, create a new database and the new user.</p>
<pre>&gt; CREATE DATABASE zabbixdb;
&gt; GRANT ALL ON zabbixdb.* TO 'zabbixuser'@'localhost' IDENTIFIED BY 'zabbixpss';
&gt; FLUSH PRIVILEGES;
&gt; exit;</pre>
<figure id="attachment_12879" aria-describedby="caption-attachment-12879" style="width: 765px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12879" src="https://www.osradar.com/wp-content/uploads/2019/07/1-13.jpeg" alt="1.- Creating new database for Zabbix" width="765" height="354" srcset="https://www.osradar.com/wp-content/uploads/2019/07/1-13.jpeg 765w, https://www.osradar.com/wp-content/uploads/2019/07/1-13-300x139.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/1-13-696x322.jpeg 696w" sizes="(max-width: 765px) 100vw, 765px" /><figcaption id="caption-attachment-12879" class="wp-caption-text">1.- Creating a new database for Zabbix</figcaption></figure>
<p>That is all for MariaDB.</p>
<h3>3) Add the Zabbix repository for Debian 10</h3>
<p>A great advantage that Zabbix gives us is that it has a repository for Debian 10. So, all this makes the installation process even easier.</p>
<p>To add the repository, just download the DEB file provided by the project and install it.</p>
<pre>:~# wget -c http://repo.zabbix.com/zabbix/4.0/debian/pool/main/z/zabbix-release/zabbix-release_4.0-2%2Bbuster_all.deb</pre>
<p>Then, install it.</p>
<pre>:~# dpkg -i zabbix-release_4.3-1+buster_all.deb</pre>
<h3>4) Install Zabbix on Debian 10 (I)</h3>
<p>After the repository has been successfully added, it is necessary to update APT.</p>
<pre>:~# apt update</pre>
<p>Next, we can install the packages without problems with the following command:</p>
<pre>:~# apt install zabbix-server-mysql zabbix-agent zabbix-frontend-php</pre>
<figure id="attachment_12881" aria-describedby="caption-attachment-12881" style="width: 1121px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12881" src="https://www.osradar.com/wp-content/uploads/2019/07/3-7.jpeg" alt="3.- Install Zabbix on Debian 10" width="1121" height="242" srcset="https://www.osradar.com/wp-content/uploads/2019/07/3-7.jpeg 1121w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-300x65.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-768x166.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-1024x221.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-696x150.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/07/3-7-1068x231.jpeg 1068w" sizes="(max-width: 1121px) 100vw, 1121px" /><figcaption id="caption-attachment-12881" class="wp-caption-text">2.- Install Zabbix on Debian 10</figcaption></figure>
<p>Once Zabbix is installed, you need to start the default database that comes with the installation. The process is very simple, just use this command:</p>
<pre>:~# zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -u zabbixuser -p zabbixdb</pre>
<p>In order to make Zabbix configured correctly with MariaDB, it is necessary to change some parameters in its configuration.</p>
<p>To do this, edit the file <code>/etc/zabbix/zabbix_server.conf</code></p>
<pre>:~# nano /etc/zabbix/zabbix_server.conf</pre>
<p>Then, modify the following parameters:</p>
<pre>DBHost
DBName
DBUser
DBPassword</pre>
<p>Of course, set the MariaDB parameters that you have configured.</p>
<p>Next, save the changes and close the file.</p>
<p>Finally, restart the services.</p>
<pre>:~# systemctl restart apache2
:~# systemctl restart mariadb
:~# systemctl restart zabbix-server</pre>
<h3>5) Install Zabbix on Debian 10 (II)</h3>
<p>Now you have to complete the installation using the web browser. Open it and go to your server<code> http://server-ip/zabbix</code> and you will see the following:</p>
<figure id="attachment_12882" aria-describedby="caption-attachment-12882" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12882" src="https://www.osradar.com/wp-content/uploads/2019/07/4-9.png" alt="4.- Zabbix front end page" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/4-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/4-9-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12882" class="wp-caption-text">4.- Zabbix front end page</figcaption></figure>
<p>Next, the wizard will check for the prerequisites.</p>
<figure id="attachment_12883" aria-describedby="caption-attachment-12883" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12883" src="https://www.osradar.com/wp-content/uploads/2019/07/5-11.png" alt="5.- Check for the prerequistes" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/5-11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/5-11-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12883" class="wp-caption-text">5.- Check for the prerequisites</figcaption></figure>
<p>Now, you have to configure the DB connection.</p>
<figure id="attachment_12884" aria-describedby="caption-attachment-12884" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12884" src="https://www.osradar.com/wp-content/uploads/2019/07/6-6.png" alt="6.- DB connection on Zabbix" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/6-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/6-6-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12884" class="wp-caption-text">6.- DB connection on Zabbix</figcaption></figure>
<p>Next, the server details.</p>
<figure id="attachment_12885" aria-describedby="caption-attachment-12885" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12885" src="https://www.osradar.com/wp-content/uploads/2019/07/7-6.png" alt="7.- Zabbix on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/7-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/7-6-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12885" class="wp-caption-text">7.- Zabbix on Debian 10</figcaption></figure>
<p>Now, the installation summary.</p>
<figure id="attachment_12886" aria-describedby="caption-attachment-12886" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12886" src="https://www.osradar.com/wp-content/uploads/2019/07/8-4.png" alt="8.- Pre-installation summary" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/8-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/8-4-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12886" class="wp-caption-text">8.- Pre-installation summary</figcaption></figure>
<p>If everything was OK, you will see this.</p>
<figure id="attachment_12887" aria-describedby="caption-attachment-12887" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12887" src="https://www.osradar.com/wp-content/uploads/2019/07/9-3.png" alt="9.- Zabbix is successfully installed on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/9-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/9-3-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12887" class="wp-caption-text">9.- Zabbix is successfully installed on Debian 10</figcaption></figure>
<p>Then you can log in. The default user is <em>admin </em> and the password is <em>zabbix</em>. After that, you will see the dashboard.</p>
<figure id="attachment_12888" aria-describedby="caption-attachment-12888" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12888" src="https://www.osradar.com/wp-content/uploads/2019/07/10-3.png" alt="10.- Zabbix running on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/07/10-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/07/10-3-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12888" class="wp-caption-text">10.- Zabbix running on Debian 10</figcaption></figure>
<h2>Conclusion</h2>
<p>Zabbix is one of those applications that you have to have on a server to control the entire network. especially when there are many nodes and it is necessary to know what is the performance of it. In this post, you have learned how to install it in Debian 10, Buster.</p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar">our Telegram channel</a>.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-zabbix-on-debian-10/">Install Zabbix on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-zabbix-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
