{"id":6312,"date":"2021-04-08T15:39:11","date_gmt":"2021-04-08T10:09:11","guid":{"rendered":"https:\/\/www.skynats.com\/?p=6312"},"modified":"2024-12-05T17:19:20","modified_gmt":"2024-12-05T11:49:20","slug":"installing-ndoutils-in-ubuntu","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/","title":{"rendered":"Installing NDOUtils in Ubuntu"},"content":{"rendered":"\n<p>\u00a0Often, get reports that Nagios core is not working due to an outdated version of NDOUtils. From this blog, you will get an apparent view of  Installing NDOUtils in Ubuntu as a part of our\u00a0<a href=\"https:\/\/www.skynats.com\/linux-server-management\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#0374a5\" class=\"has-inline-color\">server management<\/span><\/a> plan. You can also take assistance from our technical team support 24\/7 for further Migration and configuration.<\/p>\n\n\n\n<p>Follow the steps for installing NDOUtils in Ubuntu<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-steps-to-install-ndoutils-in-ubuntu\"><strong>Steps to install NDOUtils in Ubuntu<\/strong><\/h2>\n\n\n\n<p>First is installing the <a href=\"https:\/\/www.mysql.com\/\">MySQL<\/a> by following the below command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo apt-get update\n$ sudo apt-get install -y mysql-server libmysqlclient-dev libdbd-mysql-perl<\/code><\/pre>\n\n\n\n<p>Provide the root password if it prompts.<\/p>\n\n\n\n<p>For checking: if MySQL is running well then use the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ ps ax | grep mysql | grep -v grep<\/code><\/pre>\n\n\n\n<p>Output&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>8142 ? Ssl 0:01 \/usr\/sbin\/mysqld<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-creating-database\"><strong>Creating Database<\/strong><\/h2>\n\n\n\n<p>NDOUtils requires creating a database known as Nagios.<\/p>\n\n\n\n<p>Create a user account called ndoutils with the password ndoutils_password.<\/p>\n\n\n\n<p>The storage location of the database will be the default location that MySQL uses.<\/p>\n\n\n\n<p>Run the command that will connect the local MySQL database engine interface.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ mysql -u root -p'mypassword'<\/code><\/pre>\n\n\n\n<p>Later, execute the four commands one by one.<\/p>\n\n\n\n<p>CREATE DATABASE nagios DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;<\/p>\n\n\n\n<p>CREATE USER &#8216;ndoutils&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;ndoutils_password&#8217;;<\/p>\n\n\n\n<p>GRANT USAGE ON *.* TO &#8216;ndoutils&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;ndoutils_password&#8217; WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;<\/p>\n\n\n\n<p>GRANT ALL PRIVILEGES ON nagios.* TO &#8216;ndoutils&#8217;@&#8217;localhost&#8217; WITH GRANT OPTION ;<\/p>\n\n\n\n<p>&nbsp;Exit from the local MySQL database engine interface.<\/p>\n\n\n\n<p>Try to ensure that the database has created by running the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ echo 'show databases;' | mysql -u ndoutils -p'ndoutils_password' -h localhost<\/code><\/pre>\n\n\n\n<p>Output:<\/p>\n\n\n\n<p>Database<\/p>\n\n\n\n<p>information_schema<\/p>\n\n\n\n<p>nagios<\/p>\n\n\n\n<p>test<\/p>\n\n\n\n<p><strong>Modifying Linux Kernel Settings<\/strong><\/p>\n\n\n\n<p>Transferring the data from the Nagios to the NDOUtils by using the kernal message queue.<\/p>\n\n\n\n<p>Here we will increase the default values the Kernel boots with to ensure it operates optimally.<\/p>\n\n\n\n<p>Create a backup of \/etc\/sysctl.conf file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo cp \/etc\/sysctl.conf \/etc\/sysctl.conf_backup<\/code><\/pre>\n\n\n\n<p>Execute the following commands<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo sed -i '\/msgmnb\/d' \/etc\/sysctl.conf\n$ sudo sed -i '\/msgmax\/d' \/etc\/sysctl.conf\n$ sudo sed -i '\/shmmax\/d' \/etc\/sysctl.conf\n$ sudo sed -i '\/shmall\/d' \/etc\/sysctl.conf\n$ sudo sh -c 'printf \"\\n\\nkernel.msgmnb = 131072000\\n\" &gt;&gt; \/etc\/sysctl.conf'\n$ sudo sh -c 'printf \"kernel.msgmax = 131072000\\n\" &gt;&gt; \/etc\/sysctl.conf'\n$ sudo sh -c 'printf \"kernel.shmmax = 4294967295\\n\" &gt;&gt; \/etc\/sysctl.conf'\n$ sudo sh -c 'printf \"kernel.shmall = 268435456\\n\" &gt;&gt; \/etc\/sysctl.conf'\n$ sudo sysctl -e -p \/etc\/sysctl.conf\n<\/code><\/pre>\n\n\n\n<p>It&#8217;s not required to reboot the system as the last command displayed on the screen shows that the new settings are active in the kernel.<\/p>\n\n\n\n<p><strong>Downloading NDOUtils Source<\/strong><\/p>\n\n\n\n<p>Run the command for downloading NDOUtils<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd \/tmp\n$ wget -O ndoutils.tar.gz \nhttps:&#47;&#47;github.com\/NagiosEnterprises\/ndoutils\/archive\/ndoutils-2.1.3.tar.gz\n$ tar xzf ndoutils.tar.gz<\/code><\/pre>\n\n\n\n<p><strong>Compiling NDOUtils<\/strong><\/p>\n\n\n\n<p>Run the command for Compiling NDOUtils.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd \/tmp\/ndoutils-ndoutils-2.1.3\/\n$ sudo .\/configure\n$ sudo make all<\/code><\/pre>\n\n\n\n<p><strong>Installing Binaries<\/strong><\/p>\n\n\n\n<p>Run the command to install the Binaries<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo make install<\/code><\/pre>\n\n\n\n<p><strong>Initializing Database<\/strong><\/p>\n\n\n\n<p>This prepares the database for NDOUtils.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ cd db\/\n$ sudo .\/installdb -u 'ndoutils' -p 'ndoutils_password' -h 'localhost' -d nagios\n$ cd ..<\/code><\/pre>\n\n\n\n<p>Output&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DBD::mysql::db do failed: Table 'nagios.nagios_dbversion' doesn't exist at .\/installdb line 52.\n** Creating tables for version 2.0.1\nUsing mysql.sql for installation...\n** Updating table nagios_dbversion\nDone!<\/code><\/pre>\n\n\n\n<p><strong>Installing Configuration Files<\/strong><\/p>\n\n\n\n<p>The two config files are:<\/p>\n\n\n\n<p>1.\/usr\/local\/nagios\/etc\/ndo2db.cfg<\/p>\n\n\n\n<p>The following lines are defined in this file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>db_user=ndoutils\ndb_pass=ndoutils_password<\/code><\/pre>\n\n\n\n<p>Ensure that username and password are correct.<\/p>\n\n\n\n<p>2. \/usr\/local\/nagios\/etc\/ndomod.cfg<\/p>\n\n\n\n<p>No changes are required in the file.<\/p>\n\n\n\n<p>Use the default username and the password,run the command to install the configuration files.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo make install-config\n$ sudo mv \/usr\/local\/nagios\/etc\/ndo2db.cfg-sample \/usr\/local\/nagios\/etc\/ndo2db.cfg\n$ sudo sh -c 'sed -i 's\/^db_user=.*\/db_user=ndoutils\/g' \/usr\/local\/nagios\/etc\/ndo2db.cfg'\n$ sudo sh -c 'sed -i 's\/^db_pass=.*\/db_pass=ndoutils_password\/g' \/usr\/local\/nagios\/etc\/ndo2db.cfg'\n$ sudo mv \/usr\/local\/nagios\/etc\/ndomod.cfg-sample \/usr\/local\/nagios\/etc\/ndomod.cfg\n<\/code><\/pre>\n\n\n\n<p><strong>Install Service\/Daemon<\/strong><\/p>\n\n\n\n<p>For Ubuntu 13.x\/14.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo make install-init<\/code><\/pre>\n\n\n\n<p>For Ubuntu 15.x\/16.x\/17.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo make install-init\n$ sudo systemctl enable ndo2db.service<\/code><\/pre>\n\n\n\n<p><strong>Start Service\/Daemon<\/strong><\/p>\n\n\n\n<p>Different Linux distributions have different methods of starting the ndo2db service.<\/p>\n\n\n\n<p>For Ubuntu 13.x\/14.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo service ndo2db start<\/code><\/pre>\n\n\n\n<p>For Ubuntu 15.x\/16.x\/17.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo systemctl start ndo2db.service<\/code><\/pre>\n\n\n\n<p><strong>Updating Nagios To Use NDO Broker Module<\/strong><\/p>\n\n\n\n<p>Direct the Nagios to use the broker module<\/p>\n\n\n\n<p>Add the following line to the nagios.cfg file:<\/p>\n\n\n\n<p>broker_module=\/usr\/local\/nagios\/bin\/ndomod.o config_file=\/usr\/local\/nagios\/etc\/ndomod.cfg<\/p>\n\n\n\n<p>The following commands will add that line as well as an extra line that explains what the module is for.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo sh -c 'printf \"\\n\\n# NDOUtils Broker Module\\n\" &gt;&gt; \/usr\/local\/nagios\/etc\/nagios.cfg'\n$ sudo sh -c 'printf \"broker_module=\/usr\/local\/nagios\/bin\/ndomod.o config_file=\/usr\/local\/nagios\/etc\/ndomod.cfg\\n\" &gt;&gt; \/usr\/local\/nagios\/etc\/nagios.cfg'<\/code><\/pre>\n\n\n\n<p><strong>Restarting Nagios<\/strong><\/p>\n\n\n\n<p>In order to use the NDO broker module<strong>&nbsp;&gt;&gt;&nbsp;<\/strong>restart Nagios.<\/p>\n\n\n\n<p>Different methods are used by the different Linux distributed to restart the Nagios core.<\/p>\n\n\n\n<p>&nbsp;Check the status of the Nagios service to ensure it is running after these changes.<\/p>\n\n\n\n<p>Ubuntu 13.x\/14.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo service nagios restart\n$ sudo service nagios status<\/code><\/pre>\n\n\n\n<p>Ubuntu 15.x\/16.x\/17.x<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ sudo systemctl restart nagios.service\n$ sudo systemctl status nagios.service<\/code><\/pre>\n\n\n\n<p>The last command should show Nagios running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Ubuntu 13.x\/14.x\nnagios (pid 5345) is running\u2026\nUbuntu 15.x\/16.x\/17.x<\/code><\/pre>\n\n\n\n<p>\u25cf nagios.service \u2013 LSB: Starts and stops the Nagios monitoring server<\/p>\n\n\n\n<p>Loaded: loaded (\/etc\/rc.d\/init.d\/nagios)<\/p>\n\n\n\n<p>Active: active (running) since Tue 2021-03-30 12:31:00 AEDT; 22s ago<\/p>\n\n\n\n<p><strong>Check NDOUtils Is Working<\/strong><\/p>\n\n\n\n<p><strong>Different types of method are used to check the&nbsp;<\/strong>NDO2DB is working well or not.<\/p>\n\n\n\n<p>Run the command, to see the Nagios whether the NDO module is loaded successfully.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ grep ndo \/usr\/local\/nagios\/var\/nagios.log<\/code><\/pre>\n\n\n\n<p>Output&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;1475544660] ndomod: NDOMOD 2.1.1 (09-06-2016) Copyright (c) 2009 Nagios Core Development Team and Community Contributors\n&#91;1475544660] ndomod: Successfully connected to data sink. 0 queued items to flush.\n&#91;1475544660] ndomod registered for process data\n&#91;1475544660] ndomod registered for timed event data\n&#91;1475544660] ndomod registered for log data'\n&#91;1475544660] ndomod registered for system command data'\n&#91;1475544660] ndomod registered for event handler data'\n&#91;1475544660] ndomod registered for notification data'\n&#91;1475544660] ndomod registered for service check data'\n&#91;1475544660] ndomod registered for host check data'\n&#91;1475544660] ndomod registered for comment data'\n&#91;1475544660] ndomod registered for downtime data'\n&#91;1475544660] ndomod registered for flapping data'\n&#91;1475544660] ndomod registered for program status data'\n&#91;1475544660] ndomod registered for host status data'\n&#91;1475544660] ndomod registered for service status data'\n&#91;1475544660] ndomod registered for adaptive program data'\n&#91;1475544660] ndomod registered for adaptive host data'\n&#91;1475544660] ndomod registered for adaptive service data'\n&#91;1475544660] ndomod registered for external command data'\n&#91;1475544660] ndomod registered for aggregated status data'\n&#91;1475544660] ndomod registered for retention data'\n&#91;1475544660] ndomod registered for contact data'\n&#91;1475544660] ndomod registered for contact notification data'\n&#91;1475544660] ndomod registered for acknowledgement data'\n&#91;1475544660] ndomod registered for state change data'\n&#91;1475544660] ndomod registered for contact status data'\n&#91;1475544660] ndomod registered for adaptive contact data'\n&#91;1475544660] Event broker module '\/usr\/local\/nagios\/bin\/ndomod.o' initialized successfully.\n<\/code><\/pre>\n\n\n\n<p><strong>Service Commands for NDOUtils in Ubuntu&nbsp;<\/strong><\/p>\n\n\n\n<p>The different Linux distributed uses different methods starting\/stopping\/restarting\/status ndo2db following are some service commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Ubuntu 13.x\/14.x\n$ sudo start ndo2db\n$ sudo stop ndo2db\n$ sudo restart ndo2db\n$ sudo status ndo2db\nUbuntu 15.x\/16.x\/17.x\n$ sudo systemctl start ndo2db.service\n$ sudo systemctl stop ndo2db.service\n$ sudo systemctl restart ndo2db.service\n$ sudo systemctl status ndo2db.service\n<\/code><\/pre>\n\n\n\n<p><strong>How to fix ndo2db not running<\/strong><\/p>\n\n\n\n<p><strong>Steps to fix this issue:<\/strong><\/p>\n\n\n\n<p>Use the command and check whether ndo2db is working or not.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service ndo2db status<\/code><\/pre>\n\n\n\n<p>ndo2db is not running<\/p>\n\n\n\n<p>Stop the Nagios service&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service nagios stop<\/code><\/pre>\n\n\n\n<p>Run the &#8216;ls&#8217; command for output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># ls -l \/usr\/local\/nagios\/var\/ndo*\n-rw-r--r-- 1 nagios nagios 0 Oct 18 09:02 \/usr\/local\/nagios\/var\/ndo2db.debug\n-rw-r--r-- 1 nagios nagios 6 Oct 23 10:13 \/usr\/local\/nagios\/var\/ndo2db.lock\n-rw-r--r-- 1 nagios nagios 0 Nov 12 12:43 \/usr\/local\/nagios\/var\/ndomod.tmp\nsrwxr-xr-x 1 nagios nagios 0 Oct 23 10:13 \/usr\/local\/nagios\/var\/ndo.sock\n<\/code><\/pre>\n\n\n\n<p>Run the command to rename \/move two files.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># mv \/usr\/local\/nagios\/var\/ndo2db.lock \/usr\/local\/nagios\/var\/ndo2db.lock.bak\n# mv \/usr\/local\/nagios\/var\/ndo.sock \/usr\/local\/nagios\/var\/ndo.sock.bak\n<\/code><\/pre>\n\n\n\n<p>By using the following command,now you can restart the Nagios service and also the ndo2db service.&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service nagios start\n# service ndo2db start<\/code><\/pre>\n\n\n\n<p>Run the service status command, in order to verify whether the service is running or not.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># service ndo2db status\nndo2db (pid 3047) is running...<\/code><\/pre>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>From this article, you will get an apparent view of installing NDOUtils in Ubuntu. Follow the instruction to install if you get any sort of error you can consult with our <a href=\"https:\/\/www.skynats.com\/contact-us\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"color:#03709e\" class=\"has-inline-color\">technical team support<\/span><\/a> for any assistance.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00a0Often, get reports that Nagios core is not working due to an outdated version of NDOUtils. From this blog, you will get an apparent view of Installing NDOUtils in Ubuntu as a part of our\u00a0server management plan. You can also take assistance from our technical team support 24\/7 for further Migration and configuration. Follow the [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[46,650],"class_list":["post-6312","post","type-post","status-publish","format-standard","hentry","category-blog","tag-mysql-server","tag-ndoutils-in-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Installing NDOUtils in Ubuntu | Skynats<\/title>\n<meta name=\"description\" content=\"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing NDOUtils in Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-08T10:09:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-05T11:49:20+00:00\" \/>\n<meta name=\"author\" content=\"Nabeela\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nabeela\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/\"},\"author\":{\"name\":\"Nabeela\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\"},\"headline\":\"Installing NDOUtils in Ubuntu\",\"datePublished\":\"2021-04-08T10:09:11+00:00\",\"dateModified\":\"2024-12-05T11:49:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/\"},\"wordCount\":775,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"mysql server\",\"ndoutils in ubuntu\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/\",\"name\":\"Installing NDOUtils in Ubuntu | Skynats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-04-08T10:09:11+00:00\",\"dateModified\":\"2024-12-05T11:49:20+00:00\",\"description\":\"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/installing-ndoutils-in-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing NDOUtils in Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/2968118a72bea0868796abf1237ab3e0\",\"name\":\"Nabeela\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g\",\"caption\":\"Nabeela\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Installing NDOUtils in Ubuntu | Skynats","description":"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"Installing NDOUtils in Ubuntu","og_description":"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!","og_url":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2021-04-08T10:09:11+00:00","article_modified_time":"2024-12-05T11:49:20+00:00","author":"Nabeela","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Nabeela","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/"},"author":{"name":"Nabeela","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0"},"headline":"Installing NDOUtils in Ubuntu","datePublished":"2021-04-08T10:09:11+00:00","dateModified":"2024-12-05T11:49:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/"},"wordCount":775,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["mysql server","ndoutils in ubuntu"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/","url":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/","name":"Installing NDOUtils in Ubuntu | Skynats","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2021-04-08T10:09:11+00:00","dateModified":"2024-12-05T11:49:20+00:00","description":"Learn installing NDOUtils in Ubuntu with our easy guide. Follow the steps to set it up and enhance your Nagios monitoring\u2014start now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/installing-ndoutils-in-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Installing NDOUtils in Ubuntu"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/2968118a72bea0868796abf1237ab3e0","name":"Nabeela","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/12a999d0e3cd16cf2383c5551b39d00d6ddc2d035a2581ce5d85fce0762d0372?s=96&d=mm&r=g","caption":"Nabeela"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6312","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=6312"}],"version-history":[{"count":0,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/6312\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=6312"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=6312"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=6312"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}