{"id":27974,"date":"2018-09-03T05:53:30","date_gmt":"2018-09-03T10:53:30","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27974"},"modified":"2022-06-03T03:34:41","modified_gmt":"2022-06-03T08:34:41","slug":"how-to-install-and-configure-nagios-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/","title":{"rendered":"How to Install and Configure Nagios on CentOS 7"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

In this tutorial we will show you how to install Nagios on CentOS 7.\u00a0 Nagios is a powerful open source enterprise-class software that monitors network infrastructures, servers and applications. It can be used to monitor Linux and Windows servers as well as web applications, Linux and Unix applications and Windows applications. Some of the features include: parallelized service checks, plugin system, notifications via email, pager or user defined service, web interface for viewing status, log files, problem history and notifications and much more. This guide should work on other Linux VPS<\/a> systems as well but was tested and written for CentOS 7 VPS<\/a>.
\n<\/p>\n

Update your CentOS 7 server and install the necessary packages<\/h3>\n

Log in to your VPS via SSH as a sudo user:<\/p>\n

ssh userame@IP_Address<\/pre>\n

Once you are logged in, issue the following commands to make sure all installed packages are up to date:<\/p>\n

sudo yum update<\/pre>\n

Next, install the install the pre-requisite packages necessary for building Nagios with the following command:<\/p>\n

sudo yum install gcc glibc glibc-common wget unzip httpd php gd gd-devel perl postfix<\/pre>\n

Install Apache, MariaDB and PHP 7<\/h3>\n

To install Nginx, MariaDB PHP 7 and all the necessary PHP modules on your CentOS server run the following command:<\/p>\n

sudo yum install httpd mariadb-server php php-mysql<\/pre>\n

When the MariaDB installation is complete, run the following command to secure your MariaDB installation:<\/p>\n

sudo mysql_secure_installation<\/pre>\n

Enable MariaDB and Apache to start on boot with:<\/p>\n

sudo systemctl enable httpd.service\r\nsudo systemctl enable mariadb.service<\/pre>\n

Download and Install Nagios<\/h3>\n

Download the latest stable version of the Nagios tar archive in the \/tmp<\/code> directory on your server with:<\/p>\n

wget https:\/\/github.com\/NagiosEnterprises\/nagioscore\/archive\/nagios-4.4.1.tar.gz -O \/tmp\/nagioscore.tar.gz<\/pre>\n

When the download is completed change to the tmp directory extract the archive with the following commands:<\/p>\n

cd \/tmp\r\nsudo tar xf nagioscore.tar.gz<\/pre>\n

Once the Nagios Plugins archive is extracted, change to the nagioscore-nagios-4.4.1<\/code> directory:<\/p>\n

cd \/tmp\/nagioscore-nagios-4.4.1<\/pre>\n

Next step is to run the .\/configure<\/code> script which will check your system for missing libraries and binaries and prepare the Nagios source code for the build process:<\/p>\n

.\/configure<\/pre>\n

Now that the configuration is completed start the compilation process using the make all <\/code> command:<\/p>\n

make all<\/pre>\n

Run the following command to create the nagios user and group and add apache to the nagios group:<\/p>\n

sudo make install-groups-users\r\nsudo usermod -a -G nagios apache\r\n<\/pre>\n

The next step is to install Nagios using the make install<\/code> command:<\/p>\n

sudo make install<\/pre>\n

Run the following command to install the Nagios sample configuration files:<\/p>\n

sudo make install-config<\/pre>\n

Install the initialization script so that you can manage your Nagios service using the systemctl command :<\/p>\n

sudo make install-daemoninit<\/pre>\n

Next, install the Apache web server configuration files with:<\/p>\n

sudo make install-webconf<\/pre>\n

Restart apache service:<\/p>\n

sudo systemctl restart httpd<\/pre>\n

Use the htpasswd<\/code> command to create a user account called nagiosadmin<\/code><\/p>\n

sudo htpasswd -c \/usr\/local\/nagios\/etc\/htpasswd.users nagiosadmin<\/pre>\n

Run the following command to install and configure the external command file:<\/p>\n

sudo make install-commandmode<\/pre>\n

Install Nagios Plugins<\/h2>\n

Before downloading and compiling Nagios plugins install the following dependencies:<\/p>\n

sudo yum install gcc glibc glibc-common make gettext automake autoconf wget openssl-devel net-snmp net-snmp-utils epel-release perl-Net-SNMP\r\n<\/pre>\n

Download the latest stable version of the Nagios tar archive in the \/tmp<\/code> directory on your server with:<\/p>\n

wget --no-check-certificate -O \/tmp\/nagios-plugins.tar.gz https:\/\/github.com\/nagios-plugins\/nagios-plugins\/archive\/release-2.2.1.tar.gz\r\n<\/pre>\n

When the download is completed change to the tmp directory extract the archive with the following commands:<\/p>\n

cd \/tmp\r\nsudo tar xf nagios-plugins.tar.gz<\/pre>\n

Once the Nagios Plugins archive is extracted, change to the nagioscore-nagios-4.4.1<\/code> directory:<\/p>\n

cd \/tmp\/nagios-plugins-release-2.2.1\/<\/pre>\n

The following commands will check your system for missing libraries and binaries and prepare the Nagios Plugins source code for the build process:<\/p>\n

.\/tools\/setup\r\n.\/configure\r\n<\/pre>\n

Once the configuration is completed start the compilation process using the make<\/code> command:<\/p>\n

make<\/pre>\n

Finally install the Nagios Plugins using the make install<\/code> command:<\/p>\n

sudo make install<\/pre>\n

Access Nagios<\/h2>\n

Now that you have both Nagios and Nagios Plugins installed on your CentOS system, start the Nagios service with the following command:<\/p>\n

systemctl start nagios<\/pre>\n

Open your browser and navigate to http:\/\/your-domain-or-ip\/nagios<\/code> and you will be presented with the login pop-up.<\/p>\n

Enter the login credentials that you created earlier with the htpasswd<\/code> command and you will be redirected to the Nagios home page as shown on the image below:<\/p>\n

 <\/p>\n

\"Installing<\/p>\n

That\u2019s it. You have successfully installed Nagios on CentOS 7. For more information about how to manage your Nagios installation, please refer to the official Nagios documentation<\/a>.<\/p>\n


\n

\"InstallOf course, you don\u2019t have to install Nagios on CentOS 7, if you use one of our\u00a0Managed Hosting<\/a> services, in which case you can simply ask our expert system administrators to install Nagios on CentOS 7 for you, using the LEMP stack or any other web hosting stack of your choice. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS.<\/strong><\/span>\u00a0If you liked this post, on how to install Nagios on CentOS 7, please share it with your friends on the social networks using the buttons below or simply leave a comment in the comments section. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this tutorial we will show you how to install Nagios on CentOS 7.\u00a0 Nagios is a powerful open source … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27977,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[317],"yoast_head":"\nHow to Install and Configure Nagios on CentOS 7 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install and Configure Nagios on CentOS 7 - RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install and Configure Nagios on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install and Configure Nagios on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-03T10:53:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install and Configure Nagios on CentOS 7\",\"datePublished\":\"2018-09-03T10:53:30+00:00\",\"dateModified\":\"2022-06-03T08:34:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\"},\"wordCount\":682,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg\",\"keywords\":[\"nagios\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\",\"name\":\"How to Install and Configure Nagios on CentOS 7 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg\",\"datePublished\":\"2018-09-03T10:53:30+00:00\",\"dateModified\":\"2022-06-03T08:34:41+00:00\",\"description\":\"How to Install and Configure Nagios on CentOS 7 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install Nagios on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install and Configure Nagios on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","description":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","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.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","og_description":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-09-03T10:53:30+00:00","article_modified_time":"2022-06-03T08:34:41+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install and Configure Nagios on CentOS 7","datePublished":"2018-09-03T10:53:30+00:00","dateModified":"2022-06-03T08:34:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/"},"wordCount":682,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg","keywords":["nagios"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/","name":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg","datePublished":"2018-09-03T10:53:30+00:00","dateModified":"2022-06-03T08:34:41+00:00","description":"How to Install and Configure Nagios on CentOS 7 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Nagios-on-CentOS-7.jpg","width":742,"height":372,"caption":"How to Install Nagios on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-and-configure-nagios-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install and Configure Nagios on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27974"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=27974"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27974\/revisions"}],"predecessor-version":[{"id":41775,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27974\/revisions\/41775"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27977"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27974"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27974"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27974"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}