{"id":18346,"date":"2015-12-27T14:41:43","date_gmt":"2015-12-27T20:41:43","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18346"},"modified":"2022-06-03T03:43:57","modified_gmt":"2022-06-03T08:43:57","slug":"install-sonerezh-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install Sonerezh on Ubuntu 14.04"},"content":{"rendered":"
<\/div>

\"install-sonerezh-on-an-ubuntu-14-04-vps\"In this guide, we will explain how to install Sonerezh on an Ubuntu 14.04 VPS with MariaDB, PHP-FPM and Nginx. Sonerezh is an open source self-hosted application for streaming music. Sonerezh is build with PHP on top of the CakePHP framework and<\/span> with the latest web technologies. This guide should work on other Linux VPS<\/a> systems as well but was tested and written for an Ubuntu 14.04 VPS<\/a>.
\n<\/p>\n

Login to your VPS via SSH<\/h4>\n
ssh user@vps<\/pre>\n

Update the system and install necessary packages<\/h4>\n
[user]$ sudo apt-get update && sudo apt-get -y upgrade<\/pre>\n

In order to convert the tracks we will need the avconv command which is included in the libav-tools package<\/p>\n

[user]$ sudo apt-get install software-properties-common libav-tools nano git\r\n<\/pre>\n

Install MariaDB 10.1<\/h4>\n

To add the MariaDB repository to your sources list and install the latest MariaDB server, run the following commands:<\/p>\n

[user]$ sudo apt-key adv --recv-keys --keyserver hkp:\/\/keyserver.ubuntu.com:80 0xcbcb082a1bb943db\r\n[user]$ sudo add-apt-repository 'deb http:\/\/ftp.osuosl.org\/pub\/mariadb\/repo\/10.1\/ubuntu trusty main'\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get install -y mariadb-server<\/pre>\n

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

[user]$ mysql_secure_installation<\/pre>\n

Next, we need to create a database for our Sonerezh installation.<\/p>\n

[user]$ mysql -uroot -p<\/pre>\n
MariaDB [(none)]> CREATE DATABASE sonerezh;\r\nMariaDB [(none)]> GRANT ALL PRIVILEGES ON sonerezh.* TO 'sonerezh'@'localhost' IDENTIFIED BY 'sonerezh_passwd';\r\nMariaDB [(none)]> FLUSH PRIVILEGES;\r\nMariaDB [(none)]> \\q<\/pre>\n

Install PHP, composer and required PHP modules<\/h4>\n

To install the latest stable version of PHP version 5.6 and all necessary modules, run:<\/p>\n

[user]$ sudo add-apt-repository -y ppa:ondrej\/php5-5.6\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get -y install php5-fpm php5-cli php5-gd php5-mysqlnd php5-mcrypt php5-curl php5-intl<\/pre>\n

PHP-FPM configuration<\/h4>\n

Create a new PHP-FPM pool for your user:<\/p>\n

[user]$ sudo nano \/etc\/php5\/fpm\/pool.d\/your_username.conf\r\n[your_username]\r\nuser = your_username\r\ngroup = your_username\r\nlisten = \/var\/run\/php5-fpm-your_username.sock\r\nlisten.owner = your_username\r\nlisten.group = your_username\r\nlisten.mode = 0666\r\npm = ondemand\r\npm.max_children = 5\r\npm.process_idle_timeout = 10s\r\npm.max_requests = 200\r\nchdir = \/\r\n<\/pre>\n

Do not forget to change your_username with your username.<\/p>\n

Restart PHP-FPM:<\/p>\n

[user]$ sudo service php5-fpm restart<\/pre>\n

Clone Sonerezh<\/h4>\n

Create a root directory for your Sonerezh installation using the following command:<\/p>\n

[user]$ mkdir -p ~\/mySonerezhSite.com\/{public_html,logs}<\/pre>\n

Clone the github repository<\/p>\n

git clone --branch master https:\/\/github.com\/Sonerezh\/sonerezh.git ~\/mySonerezhSite.com\/public_html<\/pre>\n

Create a root directory for your music data<\/p>\n

mkdir -p \/home\/your_username\/mySonerezhSite.com\/public_html\/Music<\/p>\n

Install and configure Nginx<\/h4>\n

Ubuntu 14.04 comes with nginx version 1.4, to install the latest stable version of Nginx version 1.8, run:<\/p>\n

[user]$ sudo add-apt-repository -y ppa:nginx\/stable\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get -y install nginx<\/pre>\n

Create a new Nginx server block with the following content:<\/p>\n

[user]$ sudo nano \/etc\/nginx\/sites-available\/mySonerezhSite.com<\/pre>\n
server {\r\n    listen      80;\r\n    server_name mySonerezhSite.com;\r\n    root        \/home\/your_username\/mySonerezhSite.com\/public_html\/app\/webroot;\r\n\r\n    access_log \/home\/your_username\/mySonerezhSite.com\/logs\/access.log;\r\n    error_log \/home\/your_username\/mySonerezhSite.com\/logs\/error.log;\r\n\r\n    index index.php;\r\n\r\n    location \/ {\r\n        try_files $uri $uri\/ \/index.php?$args;\r\n        expires 14d;\r\n        add_header Cache-Control 'public';\r\n    }\r\n\r\n    location ~ \\.php$ {\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm-your_username.sock;\r\n        fastcgi_index index.php;\r\n        include fastcgi_params;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n        fastcgi_intercept_errors off;\r\n        fastcgi_buffer_size 16k;\r\n        fastcgi_buffers 4 16k;\r\n    }\r\n}\r\n<\/pre>\n

Do not forget to change your_username with your username.<\/p>\n

Activate the server block by creating a symbolic link :<\/p>\n

[user]$ sudo ln -s \/etc\/nginx\/sites-available\/mySonerezhSite.com \/etc\/nginx\/sites-enabled\/mySonerezhSite.com<\/pre>\n

Test the Nginx configuration and restart nginx:<\/p>\n

[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart<\/pre>\n

Final steps<\/h4>\n

Open http:\/\/mySonerezh.com in your favorite web browser and you should see the Sonerezh install screen. Provide the database information, enter the path to your music data and follow the installation wizard instructions.<\/p>\n


\n

That\u2019s it. You have successfully installed Sonerezh on your Ubuntu 14.04 VPS. For more information about how to manage your Sonerezh installation, please refer to the official Sonerezh documentation.<\/p>\n


\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 setup this for you. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS<\/strong><\/span>. 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 guide, we will explain how to install Sonerezh on an Ubuntu 14.04 VPS with MariaDB, PHP-FPM and Nginx. … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18350,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[1022,1021],"yoast_head":"\nHow to install Sonerezh on Ubuntu 14.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install Sonerezh 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\/install-sonerezh-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Sonerezh on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to install Sonerezh on Ubuntu 14.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\" \/>\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=\"2015-12-27T20:41:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"422\" \/>\n\t<meta property=\"og:image:height\" content=\"248\" \/>\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=\"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\/install-sonerezh-on-an-ubuntu-14-04-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install Sonerezh on Ubuntu 14.04\",\"datePublished\":\"2015-12-27T20:41:43+00:00\",\"dateModified\":\"2022-06-03T08:43:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\"},\"wordCount\":426,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png\",\"keywords\":[\"Sonerezh\",\"Streaming\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\",\"name\":\"How to install Sonerezh on Ubuntu 14.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png\",\"datePublished\":\"2015-12-27T20:41:43+00:00\",\"dateModified\":\"2022-06-03T08:43:57+00:00\",\"description\":\"How to install Sonerezh on Ubuntu 14.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png\",\"width\":422,\"height\":248},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Sonerezh 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 Sonerezh on Ubuntu 14.04 - RoseHosting","description":"How to install Sonerezh 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\/install-sonerezh-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install Sonerezh on Ubuntu 14.04 - RoseHosting","og_description":"How to install Sonerezh on Ubuntu 14.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-12-27T20:41:43+00:00","article_modified_time":"2022-06-03T08:43:57+00:00","og_image":[{"width":422,"height":248,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install Sonerezh on Ubuntu 14.04","datePublished":"2015-12-27T20:41:43+00:00","dateModified":"2022-06-03T08:43:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/"},"wordCount":426,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png","keywords":["Sonerezh","Streaming"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/","name":"How to install Sonerezh on Ubuntu 14.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png","datePublished":"2015-12-27T20:41:43+00:00","dateModified":"2022-06-03T08:43:57+00:00","description":"How to install Sonerezh on Ubuntu 14.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/12\/install-sonerezh-on-an-ubuntu-14-04-vps-1.png","width":422,"height":248},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-sonerezh-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Sonerezh 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\/18346"}],"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=18346"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18346\/revisions"}],"predecessor-version":[{"id":37073,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18346\/revisions\/37073"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18350"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}