<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Problem with AppleOSX Installation - Nagios Core Services Platform				            </title>
            <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/</link>
            <description>Nagios Core Services Platform Discussion Board - Open Source Powered Monitoring</description>
            <language>en-US</language>
            <lastBuildDate>Thu, 11 Jun 2026 01:00:08 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-82</link>
                        <pubDate>Fri, 10 Jan 2025 16:10:28 +0000</pubDate>
                        <description><![CDATA[Hi JerryH,
Sorry for the confusion.  CSP can be installed on Ubuntu 24 using the tarball.  We are working on updating the CSP doc.
In the meantime, you can install CSP using the xi-2024R1....]]></description>
                        <content:encoded><![CDATA[<p>Hi JerryH,</p>
<p>Sorry for the confusion.  CSP can be installed on Ubuntu 24 using the tarball.  We are working on updating the CSP doc.</p>
<p>In the meantime, you can install CSP using the xi-2024R1.3.tar.gz and the Promotional License Key in the SLICENSE.TXT file.</p>
<p>To install the tarball you can use the following steps, or use the second set of instructions to download and install the latest tarball (below).</p>
<p>CSP tarball</p>
<pre contenteditable="false">cp xi-2024R1.3.tar.gz /tmp

cd /tmp

tar xzf xi-2024R1.3.tar.gz

cd nagiosxi

./fullinstall -n</pre>
<p>Latest CSP tarball</p>
<pre contenteditable="false">cd /tmp

wget https://assets.nagios.com/downloads/nagiosxi/xi-latest.tar.gz

tar xzf xi-latest.tar.gz

cd nagiosxi

./fullinstall</pre>
<p>If you want to continue on with Nagios Core, use these steps (minus the comments that start with #) or throw throw it in a file like install_core.sh and run it.  I have successfully installed Core on Ubuntu 24, with these steps.</p>
<pre contenteditable="false">#!/bin/bash -e

#
# Install Core
#
# https://support.nagios.com/kb/article/nagios-core-installing-nagios-core-from-source-96.html#CentOS
#

# Security-Enhanced Linux
# ===== Ubuntu 20.x =====
# NOT FOUND on 22 &amp; 24 by default
#sudo dpkg -l selinux*

# Prerequisites
sudo apt-get update

# ===== Ubuntu 22.x / 24.x =====
sudo apt-get install -y autoconf gcc libc6 make wget unzip apache2 php libapache2-mod-php libgd-dev
sudo apt-get install -y openssl libssl-dev

 
# Downloading the Source

cd /tmp
#wget -O nagioscore.tar.gz https://github.com/NagiosEnterprises/nagioscore/archive/nagios-4.4.14.tar.gz
wget -O nagioscore.tar.gz $(wget -q -O - https://api.github.com/repos/NagiosEnterprises/nagioscore/releases/latest  | grep '"browser_download_url":' | grep -o 'https://*')
tar xzf nagioscore.tar.gz

 
# Compile
cd /tmp/nagios-*
sudo ./configure --with-httpd-conf=/etc/apache2/sites-enabled
sudo make all

 
# Create User And Group
sudo make install-groups-users
sudo usermod -a -G nagios www-data

 
# Install Binaries
sudo make install

 
# Install Service / Daemon
sudo make install-daemoninit

 
# Install Command Mode
sudo make install-commandmode

 
# Install Configuration Files
sudo make install-config

 
# Install Apache Config Files
sudo make install-webconf
sudo a2enmod rewrite
sudo a2enmod cgi

 
# Configure Firewall
# ufw may not be installed on Ubuntu 22 and lower
##sudo ufw allow Apache
##sudo ufw reload

 
# Create nagiosadmin User Account
sudo htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

 
# Start Apache Web Server

# ===== Ubuntu 15.x / 16.x / 17.x / 18.x / 20.x / 22.x / 24.x =====
sudo systemctl start nagios.service

 
# Test Nagios
# http://localhost/nagios

 
#
# Installing The Nagios Plugins
#

# Prerequisites
sudo apt-get install -y autoconf gcc libc6 libmcrypt-dev make libssl-dev wget bc gawk dc build-essential snmp libnet-snmp-perl gettext

 
# Downloading The Source
cd /tmp
#wget --no-check-certificate -O nagios-plugins.tar.gz https://github.com/nagios-plugins/nagios-plugins/archive/release-2.4.6.tar.gz
wget -O nagios-plugins.tar.gz $(wget -q -O - https://api.github.com/repos/nagios-plugins/nagios-plugins/releases/latest  | grep '"browser_download_url":' | grep -o 'https://*')
tar zxf nagios-plugins.tar.gz

 
# Compile + Install
cd /tmp/nagios-plugins-*/
sudo ./configure
sudo make
sudo make install

 
# Test Plugins
# http://localhost/nagios

 
# Service / Daemon Commands

# ===== Ubuntu 15.x / 16.x / 17.x / 18.x / 20.x / 22.x / 24.x =====

sudo systemctl start nagios.service
sudo systemctl stop nagios.service
sudo systemctl restart nagios.service
sudo systemctl status nagios.service
</pre>
<p>To run as a script, do the following (after you save it in a file).</p>
<pre contenteditable="false">sudo chmod +x install_core.sh
sudo ./install_core.sh</pre>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>nagios-laura</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-82</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-81</link>
                        <pubDate>Fri, 10 Jan 2025 15:12:52 +0000</pubDate>
                        <description><![CDATA[@jerryh Try running
sudo apt install libssl-dev
then rerun the three commands you mentioned. If they fail, include the output of them so we can assit further.]]></description>
                        <content:encoded><![CDATA[@jerryh Try running
<pre contenteditable="false">sudo apt install libssl-dev</pre>
then rerun the three commands you mentioned. If they fail, include the output of them so we can assit further.]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>jmichaelson</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-81</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-79</link>
                        <pubDate>Thu, 09 Jan 2025 20:29:48 +0000</pubDate>
                        <description><![CDATA[Yes Nagios Core was my goal. The CSP has the ova file which I can&#039;t do anything with.]]></description>
                        <content:encoded><![CDATA[<p>Yes Nagios Core was my goal. The CSP has the ova file which I can't do anything with.</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>JerryH</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-79</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-78</link>
                        <pubDate>Thu, 09 Jan 2025 16:12:14 +0000</pubDate>
                        <description><![CDATA[Hi JerryH,
Don&#039;t worry about lack of Linux knowledge.  We are here to help.
It looks like you are trying to install Nagios Core now, instead of Nagios CSP?  You would probably be happier w...]]></description>
                        <content:encoded><![CDATA[<p>Hi JerryH,</p>
<p>Don't worry about lack of Linux knowledge.  We are here to help.</p>
<p>It looks like you are trying to install Nagios Core now, instead of Nagios CSP?  You would probably be happier with CSP, because it has a more extensive GUI.</p>
<p>The link for the CSP installation instructions is https://assets.nagios.com/downloads/csp/docs/Nagios-CSP-Installation-Guide.pdf (I also corrected the previously posted link, because the "." was getting added to the url, which broke it).</p>
<p>Please let us know if we can provide any other help!</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>nagios-laura</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-78</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-77</link>
                        <pubDate>Thu, 09 Jan 2025 14:30:29 +0000</pubDate>
                        <description><![CDATA[@sandor Thanks. When I installed php8.3 directly with apt install php command, it installed php8.3. I then ran the command with 8.3 instead of 7.4. That appeared to work okay.
But now I hav...]]></description>
                        <content:encoded><![CDATA[<p>@sandor Thanks. When I installed php8.3 directly with apt install php command, it installed php8.3. I then ran the command with 8.3 instead of 7.4. That appeared to work okay.</p>
<p>But now I have a compile errors. WARNING: could not find include files. And Cannot find ssl headers. After running the following commands from the install sheet:</p>
<h3>Compile</h3>
<pre contenteditable="false">cd /tmp/nagioscore-nagios-4.4.14/<br />sudo ./configure --with-httpd-conf=/etc/apache2/sites-enabled<br />sudo make all<br /><br /></pre>
<p>After make all command I get ** No rule to make target 'all'  Stop.</p>
<p>Any ideas? Thanks again.</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>JerryH</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-77</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-76</link>
                        <pubDate>Wed, 08 Jan 2025 22:25:18 +0000</pubDate>
                        <description><![CDATA[It looks like we need to update that documentation to include more of our supported distributions. The section you are referencing is for Ubuntu 20 instead of 24 so that&#039;s the issue you&#039;re r...]]></description>
                        <content:encoded><![CDATA[<p>It looks like we need to update that documentation to include more of our supported distributions. The section you are referencing is for Ubuntu 20 instead of 24 so that's the issue you're running into. The native PHP version that Ubuntu 24 comes with is 8.3 so you can give it a shot with with changing the PHP command to 8.3. It may not work since it might require different packages but its worth a shot.<br /><br />Thanks,<br />Sandor G</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>Sandor</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/paged/2/#post-76</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-75</link>
                        <pubDate>Wed, 08 Jan 2025 22:02:00 +0000</pubDate>
                        <description><![CDATA[Okay so forget the Mac now. I got Ubuntu installed on a Dell running Ubuntu 24. I am trying to install Nagios Core and running into php version issues. Saying that php7.4 is not available. I...]]></description>
                        <content:encoded><![CDATA[<p>Okay so forget the Mac now. I got Ubuntu installed on a Dell running Ubuntu 24. I am trying to install Nagios Core and running into php version issues. Saying that php7.4 is not available. I have attached a pic showing the command issue.</p>
<p>Please advise! BTW I am not that familiar with linux.</p>
<p>Thanks.</p>
<div id="wpfa-20058" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//www.nagios.org/wp-content/uploads/wpforo/default_attachments/1736373720-Screenshot-2025-01-08-170636.png" target="_blank" title="Screenshot-2025-01-08-170636.png"><i class="fas fa-paperclip"></i>&nbsp;Screenshot-2025-01-08-170636.png</a></div>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>JerryH</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-75</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-74</link>
                        <pubDate>Wed, 08 Jan 2025 21:03:25 +0000</pubDate>
                        <description><![CDATA[Hi JerryH,has instructions for installing Nagios Core.
The instructions for installing Nagios CSP are*edited to correct link*
This is the excerpt for Mac OS which expects that you will be...]]></description>
                        <content:encoded><![CDATA[<p>Hi JerryH,</p>
<p>https://support.nagios.com/kb/article/nagios-core-installing-nagios-core-from-source-96.html#Apple_OS_X has instructions for installing <strong>Nagios Core</strong>.</p>
<p>The instructions for installing <strong>Nagios CSP</strong> are https://assets.nagios.com/downloads/csp/docs/Nagios-CSP-Installation-Guide.pdf *edited to correct link*</p>
<p>This is the excerpt for Mac OS which expects that you will be using virtualization and running the OVA.</p>
<pre contenteditable="false">Installing on macOS
For macOS users, you can easily run the OVA by using virtualization software such as VMware Fusion,
Parallels, or a similar tool. Follow these steps:
1. Use your preferred virtualization software (e.g., VMware Fusion or Parallels) to import and run
the OVA.
2. For additional support and detailed instructions, please visit the Nagios Community for
resources, forums, and help.
If you encounter any issues or need further assistance, our community experts are available to
help!</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>nagios-laura</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-74</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-73</link>
                        <pubDate>Wed, 08 Jan 2025 19:47:10 +0000</pubDate>
                        <description><![CDATA[This page apparently shows how to install CSP on all the different platforms from source code.
So that is what I was trying.]]></description>
                        <content:encoded><![CDATA[<p>This page apparently shows how to install CSP on all the different platforms from source code. https://support.nagios.com/kb/article/nagios-core-installing-nagios-core-from-source-96.html#Apple_OS_X</p>
<p>So that is what I was trying.</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>JerryH</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-73</guid>
                    </item>
				                    <item>
                        <title>RE: Problem with AppleOSX Installation</title>
                        <link>https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-72</link>
                        <pubDate>Wed, 08 Jan 2025 16:39:35 +0000</pubDate>
                        <description><![CDATA[Hey JerryH,Are you trying to monitor your mac OSX with CSP/XI? Or are you trying to install CSP on mac OSX? If its the prior here is some documentation that may help. If its the latter I bel...]]></description>
                        <content:encoded><![CDATA[<p>Hey JerryH,<br /><br />Are you trying to monitor your mac OSX with CSP/XI? Or are you trying to install CSP on mac OSX? If its the prior <a href="https://assets.nagios.com/downloads/nagiosxi/docs/Monitoring-OSX-with-Nagios-XI.pdf" target="_blank" rel="noopener">here</a> is some documentation that may help. If its the latter I believe we only support installations on linux distributions so that might be the issue you're running into. You can find a list of our supported OS's <a href="https://support.nagios.com/kb/article/nagios-xi-system-requirements-12.html" target="_blank" rel="noopener">here</a>.<br /><br />Thanks,<br />Sandor G</p>]]></content:encoded>
						                            <category domain="https://www.nagios.org/community/nagios-forum/">Nagios Core Services Platform</category>                        <dc:creator>Sandor</dc:creator>
                        <guid isPermaLink="true">https://www.nagios.org/community/nagios-forum/problem-with-appleosx-installation/#post-72</guid>
                    </item>
							        </channel>
        </rss>
		