<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>http://vwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Install_NRPE_From_Source_%28NRPE%29</id>
	<title>Install NRPE From Source (NRPE) - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://vwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Install_NRPE_From_Source_%28NRPE%29"/>
	<link rel="alternate" type="text/html" href="http://vwiki.co.uk/index.php?title=Install_NRPE_From_Source_(NRPE)&amp;action=history"/>
	<updated>2026-05-29T21:14:16Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>http://vwiki.co.uk/index.php?title=Install_NRPE_From_Source_(NRPE)&amp;diff=2661&amp;oldid=prev</id>
		<title>Sstrutt: Created page with &quot;The maintainers of Debian have decided that a large proportion of their user base is unable to comprehend the security implications of the &lt;code&gt;dont_blame_nrpe&lt;/code&gt;, and ha...&quot;</title>
		<link rel="alternate" type="text/html" href="http://vwiki.co.uk/index.php?title=Install_NRPE_From_Source_(NRPE)&amp;diff=2661&amp;oldid=prev"/>
		<updated>2016-11-30T10:32:00Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;The maintainers of Debian have decided that a large proportion of their user base is unable to comprehend the security implications of the &amp;lt;code&amp;gt;dont_blame_nrpe&amp;lt;/code&amp;gt;, and ha...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The maintainers of Debian have decided that a large proportion of their user base is unable to comprehend the security implications of the &amp;lt;code&amp;gt;dont_blame_nrpe&amp;lt;/code&amp;gt;, and have disabled the functionality during compilation, rendering the &amp;lt;code&amp;gt;dont_blame_nrpe&amp;lt;/code&amp;gt; useless.  Ubuntu is based on Debian, therefore decisions made for Debian impact Ubuntu.  To be fair to the maintainer of the package, it appears as if uninformed Debian users have been using the &amp;lt;code&amp;gt;dont_blame_nrpe&amp;lt;/code&amp;gt; option and then suffering breaches (see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756479).&lt;br /&gt;
&lt;br /&gt;
This page is based on the instructions provided at https://support.nagios.com/kb/article.php?id=515&lt;br /&gt;
&lt;br /&gt;
== Procedure ==&lt;br /&gt;
The below assumes you are running as root, if not precede the commands with &amp;lt;code&amp;gt;sudo&amp;lt;/code&amp;gt;&lt;br /&gt;
# Install prerequisite packages to allow compilation of source code&lt;br /&gt;
#* &amp;lt;code&amp;gt; apt-get install autoconf gcc libc6 libmcrypt-dev make libssl-dev wget&amp;lt;/code&amp;gt;&lt;br /&gt;
# Download the source code&lt;br /&gt;
#* &amp;lt;code&amp;gt; cd /tmp &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; wget --no-check-certificate https://github.com/NagiosEnterprises/nrpe/archive/3.0.tar.gz &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; tar xzf 3* &amp;lt;/code&amp;gt;&lt;br /&gt;
# Compile the source code&lt;br /&gt;
#* &amp;lt;code&amp;gt; cd /tmp/nrpe-3.0/ &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; ./configure --enable-command-args &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; make all &amp;lt;/code&amp;gt;&lt;br /&gt;
# Create nagios user and group&lt;br /&gt;
#* &amp;lt;code&amp;gt; make install-groups-users &amp;lt;/code&amp;gt;&lt;br /&gt;
# Install binaries&lt;br /&gt;
#* &amp;lt;code&amp;gt; make install &amp;lt;/code&amp;gt;&lt;br /&gt;
# Install config files&lt;br /&gt;
#* &amp;lt;code&amp;gt; make install-config &amp;lt;/code&amp;gt;&lt;br /&gt;
# Update services file&lt;br /&gt;
#* &amp;lt;code&amp;gt; sh -c &amp;quot;echo &amp;gt;&amp;gt; /etc/services&amp;quot; &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; sh -c &amp;quot;sudo echo &amp;#039;# Nagios services&amp;#039; &amp;gt;&amp;gt; /etc/services&amp;quot; &amp;lt;/code&amp;gt;&lt;br /&gt;
#* &amp;lt;code&amp;gt; sh -c &amp;quot;sudo echo &amp;#039;nrpe    5666/tcp&amp;#039; &amp;gt;&amp;gt; /etc/services&amp;quot; &amp;lt;/code&amp;gt;&lt;br /&gt;
# Install service daemon&lt;br /&gt;
## Ubuntu version 14 and before&lt;br /&gt;
##* &amp;lt;code&amp;gt; make install-init &amp;lt;/code&amp;gt;&lt;br /&gt;
## Ubuntu version 15 and later&lt;br /&gt;
##* &amp;lt;code&amp;gt; make install-init &amp;lt;/code&amp;gt;&lt;br /&gt;
##* &amp;lt;code&amp;gt; systemctl enable nrpe.service &amp;lt;/code&amp;gt;&lt;br /&gt;
# Start the service daemon&lt;br /&gt;
## Ubuntu version 14 and before&lt;br /&gt;
##* &amp;lt;code&amp;gt; start nrpe &amp;lt;/code&amp;gt;&lt;br /&gt;
## Ubuntu version 15 and later&lt;br /&gt;
##* &amp;lt;code&amp;gt; systemctl start nrpe.service &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{#seo:&lt;br /&gt;
|title=Ubuntu NRPE Installation Instructions, using source&lt;br /&gt;
|keywords=nrpe,nagios,monitor,ubuntu,source,dont_blame_nrpe&lt;br /&gt;
|description=Instructions on installing the Ubuntu flavour of the NRPE agent from source (rather than from repo)&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:MySQL]]&lt;br /&gt;
[[Category:Nagios]]&lt;br /&gt;
[[Category:NRPE]]&lt;/div&gt;</summary>
		<author><name>Sstrutt</name></author>
	</entry>
</feed>