{"id":17218,"date":"2016-01-16T15:05:57","date_gmt":"2016-01-16T21:05:57","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17218"},"modified":"2022-12-09T09:09:41","modified_gmt":"2022-12-09T15:09:41","slug":"how-to-install-observium-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/","title":{"rendered":"How to install Observium on Ubuntu 14.04"},"content":{"rendered":"
<\/div>

\"observiumlogo\"In this tutorial we will cover the steps needed for installing Observium on an Ubuntu 14.04 VPS<\/a>.<\/p>\n

Observium is a PHP\/MySQL-based network observation and monitoring system which supports a wide range of hardware platforms and operating systems including Cisco, Windows, Linux, HP, Juniper, Dell, FreeBSD, Brocade, Netscaler, NetApp and many more. It collects data from devices using SNMP which you can check via it’s web interface. Observium makes heavy use of the RRDtool package and has a number of simple core design goals such as minimum interaction, maximum automation and maximum accessibility of information.<\/p>\n

<\/p>\n

Observium comes in two editions, an Open Source “Community Edition” and a “Subscription Edition”. The first one is released on a 6 month cycle, the second one is released with additional features, rapid bug fixes and feature improvements on a daily basis and an easy to use SVN-based update mechanism.<\/p>\n

REQUIREMENTS<\/strong><\/p>\n

We will be using our SSD 1 Linux VPS<\/a> Hosting plan for this tutorial.<\/p>\n

UPDATE THE SYSTEM<\/strong><\/p>\n

Make sure your server is fully up to date using:<\/p>\n

# apt-get update && apt-get upgrade<\/pre>\n

INSTALL MYSQL<\/strong><\/p>\n

Install MySQL so you can create the database needed. Enter the following command:<\/p>\n

# apt-get install mysql-server mysql-client<\/pre>\n

Now run the post-installation script \u2018mysql_secure_installation\u2019 in order to set a root password:<\/p>\n

# mysql_secure_installation\r\n- Set root password? [Y\/n] y\r\n- Remove anonymous users? [Y\/n] y\r\n- Disallow root login remotely? [Y\/n] y\r\n- Remove test database and access to it? [Y\/n] y\r\n- Reload privilege tables now? [Y\/n] y<\/pre>\n

So, you set the MySQL root password to your liking. Next thing you need to do is to create a database. Login to your MySQL service as root:<\/p>\n

# mysql -u root -p\r\n\r\nmysql> create database observium;\r\n\r\nmysql> grant all privileges on observium.* to obsuser@localhost identified by 'your_password';\r\n\r\nmysql> flush privileges;\r\n\r\nmysql> exit\r\nBye<\/pre>\n

With the above MySQL commands you created a database called observium<\/em> with an all privileged user obsuser<\/em> assigned to it. Later you will use these credentials in the Observium config.php file.<\/p>\n

INSTALL OBSERVIUM<\/strong><\/p>\n

To proceed with the installation, you need to install some much needed packages. Run:<\/p>\n

# apt-get install libapache2-mod-php5 php5-cli php5-mysql php5-gd php5-mcrypt php5-json php-pear snmp fping  python-mysqldb rrdtool subversion whois mtr-tiny ipmitool graphviz imagemagick<\/pre>\n

Create a directory called observium<\/em> in \/opt<\/em>:<\/p>\n

# mkdir -p \/opt\/observium && cd \/opt<\/pre>\n

Download the latest Observium version:<\/p>\n

# wget http:\/\/www.observium.org\/observium-community-latest.tar.gz<\/pre>\n

Unpack the installation archive:<\/p>\n

# tar zxvf observium-community-latest.tar.gz<\/pre>\n

Next, enter the observium<\/em> directory and copy the config.php.default<\/em> file to a config.php<\/em> one. Enter the following:<\/p>\n

# cd observium\r\n# cp config.php.default config.php<\/pre>\n

Using your favorite text editor, modify the database configuration parameters with the ones created previously. We are using VIM:<\/p>\n

# vim config.php<\/pre>\n

After you edit the file and modify the database parameters, the section should look like this:<\/p>\n

\/\/ Database config\r\n$config['db_host'] = 'localhost';\r\n$config['db_user'] = 'obsuser';\r\n$config['db_pass'] = 'your_password';\r\n$config['db_name'] = 'observium';<\/pre>\n

Enter the following command to setup the MySQL database and insert the database default file schema.<\/p>\n

# cd \/opt\/observium\r\n# php .\/discovery.php -u<\/pre>\n

Create the directory to store RRDs in and set the proper ownership:<\/p>\n

# mkdir rrd\r\n# chown www-data:www-data rrd<\/pre>\n

Edit Apache’s default virtual host directive. If you want to avoid searching through the file and locate the lines that need to be edited, we suggest you to copy the original file and create a new one in which you can paste the parametars needed.<\/p>\n

Copy the original file:<\/p>\n

# cp \/etc\/apache2\/sites-available\/000-default.conf \/etc\/apache2\/sites-available\/000-default.conf.org<\/pre>\n

Empty it:<\/p>\n

# > \/etc\/apache2\/sites-available\/000-default.conf<\/pre>\n

Now, open the emptied 000-default.conf file and paste the following:<\/p>\n

# vim \/etc\/apache2\/sites-available\/000-default.conf<\/pre>\n
<VirtualHost *:80>\r\nServerAdmin webmaster@localhost\r\nDocumentRoot \/opt\/observium\/html\r\n<Directory \/>\r\nOptions FollowSymLinks\r\nAllowOverride None\r\n<\/Directory>\r\n<Directory \/opt\/observium\/html\/>\r\nOptions Indexes FollowSymLinks MultiViews\r\nAllowOverride All\r\nRequire all granted\r\n<\/Directory>\r\nErrorLog  ${APACHE_LOG_DIR}\/error.log\r\nLogLevel warn\r\nCustomLog  ${APACHE_LOG_DIR}\/access.log combined\r\nServerSignature On\r\n<\/VirtualHost><\/pre>\n

Enable the php mcrypt module:<\/p>\n

# php5enmod mcrypt<\/pre>\n

Enable mod_rewrite for Observium’s cleaner URLs:<\/p>\n

# a2enmod rewrite<\/pre>\n

Restart Apache so the changes can take effect:<\/p>\n

# apache2ctl restart<\/pre>\n

Next, enter the observium<\/em> directory:<\/p>\n

# cd \/opt\/observium<\/pre>\n

Add a first user with the use level of 10 for admin. The command sintax is below:<\/p>\n

# .\/adduser.php <username> <password> <level><\/pre>\n

We are using the following:<\/p>\n

# .\/adduser.php rosehosting random_password 10<\/pre>\n

After creating the admin user, you can open your favorite web browser and navigate to http:\/\/your_server_IP. You will be welcomed by the Observium login page where you can use the credentials you configured with the adduser.php<\/em> script.<\/p>\n

\"observium\"<\/p>\n

 <\/p>\n

Congratulations, you have successfully installed Observium on your Ubuntu 14.04 VPS<\/a>. Check Observium official documentation<\/a> for more information on configuring devices, alerts, authentication modules etc…<\/p>\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Observium for you.They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS<\/span><\/strong>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this tutorial we will cover the steps needed for installing Observium on an Ubuntu 14.04 VPS. Observium is a … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17219,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1701,13,1698],"tags":[500,809,808,811,810,59],"yoast_head":"\nHow to install Observium on Ubuntu 14.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Observium on Ubuntu 14.04 - 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-observium-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Observium on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install Observium on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\" \/>\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=\"2016-01-16T21:05:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-09T15:09:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"450\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"5 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-observium-on-ubuntu-14-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Observium on Ubuntu 14.04\",\"datePublished\":\"2016-01-16T21:05:57+00:00\",\"dateModified\":\"2022-12-09T15:09:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\"},\"wordCount\":632,\"commentCount\":15,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png\",\"keywords\":[\"network monitoring\",\"observation\",\"observium\",\"rrd\",\"snmp\",\"ubuntu\"],\"articleSection\":[\"Networking and Domains\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\",\"name\":\"How to install Observium on Ubuntu 14.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png\",\"datePublished\":\"2016-01-16T21:05:57+00:00\",\"dateModified\":\"2022-12-09T15:09:41+00:00\",\"description\":\"How to install Observium on Ubuntu 14.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png\",\"width\":450,\"height\":550},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Observium on Ubuntu 14.04\"}]},{\"@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 Observium on Ubuntu 14.04 - RoseHosting","description":"How to install Observium on Ubuntu 14.04 - 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-observium-on-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install Observium on Ubuntu 14.04 - RoseHosting","og_description":"How to install Observium on Ubuntu 14.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-01-16T21:05:57+00:00","article_modified_time":"2022-12-09T15:09:41+00:00","og_image":[{"width":450,"height":550,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Observium on Ubuntu 14.04","datePublished":"2016-01-16T21:05:57+00:00","dateModified":"2022-12-09T15:09:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/"},"wordCount":632,"commentCount":15,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png","keywords":["network monitoring","observation","observium","rrd","snmp","ubuntu"],"articleSection":["Networking and Domains","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/","name":"How to install Observium on Ubuntu 14.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png","datePublished":"2016-01-16T21:05:57+00:00","dateModified":"2022-12-09T15:09:41+00:00","description":"How to install Observium on Ubuntu 14.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/05\/observiumlogo.png","width":450,"height":550},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-observium-on-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Observium on Ubuntu 14.04"}]},{"@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\/17218"}],"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=17218"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17218\/revisions"}],"predecessor-version":[{"id":44014,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17218\/revisions\/44014"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17219"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17218"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17218"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}