{"id":19067,"date":"2016-04-27T08:02:33","date_gmt":"2016-04-27T13:02:33","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19067"},"modified":"2022-06-03T03:43:37","modified_gmt":"2022-06-03T08:43:37","slug":"install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","title":{"rendered":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu"},"content":{"rendered":"
<\/div>

\"prosper202\"In this tutorial we are going to show you how to install Prosper202. Made by Tracking202, Prosper202 is a self-hosted application that lets you track and optimize all your marketing campaigns. It’s open source and easy to install on a Linux VPS<\/a>. Follow the steps below to install Prosper202 on Ubuntu 14.04<\/strong>.<\/p>\n

<\/p>\n

The following are the minimum system requirements for Prosper202:<\/p>\n

– PHP version 5.4 or greater.
\n– MySQL version 5.6 or greater.
\n– MySQLi extension enabled in PHP<\/p>\n

Go ahead and connect to your server via SSH<\/a>. The first thing you need to do is to upgrade all your system software to the latest version available: Run the following command:<\/p>\n

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

We are going to use Nginx as a web server in this tutorial. Once the update process is completed you can install Nginx<\/strong> on your Ubuntu VPS<\/a> using the following command:<\/p>\n

# apt-get install nginx<\/pre>\n

Start Nginx and enable it on system boot:<\/p>\n

# service nginx start\r\n# update-rc.d nginx enable<\/pre>\n

The next thing you need to do is to install MySQL 5.6<\/strong> on your server. Use the following command:<\/p>\n

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

Proceed with the MySQL secure installation:<\/p>\n

# mysql_secure_installation<\/pre>\n

Follow the on-screen messages to configure MySQL:<\/p>\n

Enter current password for root (enter for none):\r\nOK, successfully used password, moving on...\r\n\r\nSet root password? [Y\/n] y\r\nNew password:\r\nRe-enter new password:\r\nPassword updated successfully!\r\nReloading privilege tables..\r\n ... Success!\r\n\r\nRemove anonymous users? [Y\/n] y\r\n ... Success!\r\n\r\nDisallow root login remotely? [Y\/n] y\r\n ... Success!\r\n\r\nRemove test database and access to it? [Y\/n] y\r\n - Dropping test database...\r\nERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist\r\n ... Failed!  Not critical, keep moving...\r\n - Removing privileges on test database...\r\n ... Success!\r\n\r\nReload privilege tables now? [Y\/n] y\r\n ... Success!<\/pre>\n

Start the MySQL service and enable it on system boot:<\/p>\n

# service mysql start\r\n# update-rc.d mysql enable<\/pre>\n

If you have MySQL server already installed on your server, you can check its version using the following command:<\/p>\n

# mysql --version<\/pre>\n

You should see something like the following on your screen:<\/p>\n

# mysql --version\r\nmysql  Ver 14.14 Distrib 5.6.28, for debian-linux-gnu (x86_64) using  EditLine wrapper\r\n<\/pre>\n

The next component that needs to be installed is PHP-FPM. Install PHP-FPM<\/strong> using the command below:<\/p>\n

# apt-get install php5-fpm php5-mysql<\/pre>\n

Create a directory for Prosper202:<\/p>\n

# mkdir \/var\/www\/prosper202<\/pre>\n

Now, download the latest release of Prosper202 from http:\/\/prosper.tracking202.com\/download and unzip the downloaded file in the ‘\/var\/www\/prosper202\/’ directory on your server. Or, use the following command to download and unzip the Prosper202 installation in the ‘\/var\/www\/prosper202\/’ directory:<\/p>\n

# cd \/var\/www\/prosper202\/ && wget http:\/\/my.tracking202.com\/clickserver\/download\/latest && unzip latest<\/pre>\n

Once you do that, change the ownership of the files:<\/p>\n

# chown www-data: -R \/var\/www\/prosper202<\/pre>\n

Create an Nginx configuration file for Prosper202:<\/p>\n

nano \/etc\/nginx\/sites-available\/yourdomain.com<\/pre>\n

Enter the following content:<\/p>\n

server {\r\n    #listen   80; ## listen for ipv4; this line is default and implied\r\n    #listen   [::]:80 default ipv6only=on; ## listen for ipv6\r\n\r\n    root \/var\/www\/prosper202;\r\n    index index.php index.html;\r\n\r\n    # Make site accessible from http:\/\/localhost\/\r\n    server_name www.yourdomain.com yourdomain.com;\r\n\r\n    location \/ {\r\n        # First attempt to serve request as file, then\r\n        # as directory, then fall back to index.html\r\n        try_files $uri $uri\/ \/index.html;\r\n    }\r\n\r\n    error_page 404 \/404.html;\r\n\r\n    # redirect server error pages to the static page \/50x.html\r\n    error_page 500 502 503 504 \/50x.html;\r\n    location = \/50x.html {\r\n        root \/usr\/share\/nginx\/www;\r\n    }\r\n\r\n    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000\r\n    location ~ \\.php$ {\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        # NOTE: You should have \"cgi.fix_pathinfo = 0;\" in php.ini\r\n\r\n        # With php5-cgi alone:\r\n        # fastcgi_pass 127.0.0.1:9000;\r\n        # With php5-fpm:\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_index index.php;\r\n        include fastcgi_params;\r\n    }\r\n}<\/pre>\n

Make sure that you replace yourdomain.com with your actual domain name.
\nEnable the configuration and restart the Nginx service:<\/p>\n

# ln -s \/etc\/nginx\/sites-available\/yourdomain.com \/etc\/nginx\/sites-enabled\/yourdomain.com\r\n# service nginx restart<\/pre>\n

Since Prosper202 stores its data into a MySQL database, you need to create a database for it. Log into MySQL as root:<\/p>\n

# mysql -u root -p<\/pre>\n

Create a new database for Prosper202, a database user and set up a password using the commands below:<\/p>\n

mysql> CREATE DATABASE prosper202DB;\r\nmysql> GRANT ALL PRIVILEGES ON prosper202DB.* TO 'prosper202'@'localhost' IDENTIFIED BY 'YoUrPaSsWoRd';\r\nmysql> FLUSH PRIVILEGES;\r\nmysql> \\q\r\n<\/pre>\n

The final step is to open your favorite web browser and enter your domain name into the search bar. You should follow the on-screen instructions to complete the Prosper202 installation.<\/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 install Prosper202 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS. 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 are going to show you how to install Prosper202. Made by Tracking202, Prosper202 is a self-hosted … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":19068,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702,13,1698,1712,1707],"tags":[39,49,51,1222,601],"yoast_head":"\nHow To Install Prosper202 on a Ubuntu VPS<\/title>\n<meta name=\"description\" content=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - 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-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Prosper202 on a Ubuntu VPS\" \/>\n<meta property=\"og:description\" content=\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\" \/>\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-04-27T13:02:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:43:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\" \/>\n\t<meta property=\"og:image:width\" content=\"225\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\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-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\",\"datePublished\":\"2016-04-27T13:02:33+00:00\",\"dateModified\":\"2022-06-03T08:43:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\"},\"wordCount\":484,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\",\"keywords\":[\"mysql\",\"nginx\",\"php-fpm\",\"prosper202\",\"ubuntu 14.04\"],\"articleSection\":[\"Databases\",\"Tutorials\",\"Ubuntu\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\",\"name\":\"How To Install Prosper202 on a Ubuntu VPS\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\",\"datePublished\":\"2016-04-27T13:02:33+00:00\",\"dateModified\":\"2022-06-03T08:43:37+00:00\",\"description\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png\",\"width\":225,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu\"}]},{\"@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 Prosper202 on a Ubuntu VPS","description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - 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-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Prosper202 on a Ubuntu VPS","og_description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-04-27T13:02:33+00:00","article_modified_time":"2022-06-03T08:43:37+00:00","og_image":[{"width":225,"height":200,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.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-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu","datePublished":"2016-04-27T13:02:33+00:00","dateModified":"2022-06-03T08:43:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"},"wordCount":484,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","keywords":["mysql","nginx","php-fpm","prosper202","ubuntu 14.04"],"articleSection":["Databases","Tutorials","Ubuntu","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","url":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/","name":"How To Install Prosper202 on a Ubuntu VPS","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","datePublished":"2016-04-27T13:02:33+00:00","dateModified":"2022-06-03T08:43:37+00:00","description":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/04\/prosper202.png","width":225,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-prosper202-with-nginx-mysql-and-php-fpm-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Prosper202 with Nginx, MySQL and PHP-FPM on Ubuntu"}]},{"@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\/19067"}],"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=19067"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19067\/revisions"}],"predecessor-version":[{"id":41978,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19067\/revisions\/41978"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/19068"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=19067"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=19067"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=19067"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}