{"id":16731,"date":"2015-01-16T10:21:27","date_gmt":"2015-01-16T16:21:27","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16731"},"modified":"2022-06-03T03:46:24","modified_gmt":"2022-06-03T08:46:24","slug":"install-cachethq-on-debian-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/","title":{"rendered":"Install CachetHQ on Debian 7 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png\"><img decoding=\"async\" class=\"alignleft wp-image-16733\" src=\"https:\/\/secure.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png\" alt=\"install-cachethq-on-debian-7-vps\" width=\"100\" height=\"100\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png 200w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps-75x75.png 75w\" sizes=\"(max-width: 100px) 100vw, 100px\" \/><\/a>In this tutorial we&#8217;ll see how to install CachetHQ on a Debian 7 (Wheezy) VPS with MariaDB, PHP-FPM and Nginx. CachetHQ makes it simple to create a status page for your application, service or network and it&#8217;s based on Laravel 4.2 framework. This guide should work on other <a href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for <a title=\"debian-vps\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian 7 VPS<\/a>.<\/p>\n<p><!--more--><\/p>\n<h4>Login to your VPS via SSH<\/h4>\n<pre>ssh user@myVPS<\/pre>\n<h4>Update the system and install necessary packages<\/h4>\n<pre>user@myVPS:~# sudo apt-get update &amp;&amp; sudo apt-get -y upgrade\r\nuser@myVPS:~# sudo apt-get install python-software-properties git curl openssl vim build-essential<\/pre>\n<h4>Install MariaDB 10.0<\/h4>\n<pre>user@myVPS:~# sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db\r\nuser@myVPS:~# sudo add-apt-repository 'deb http:\/\/mirror.jmu.edu\/pub\/mariadb\/repo\/10.0\/debian wheezy main'\r\nuser@myVPS:~# sudo apt-get update\r\nuser@myVPS:~# sudo apt-get install mariadb-server<\/pre>\n<pre>When installation is complete, run the following command to secure your installation:<\/pre>\n<pre>mysql_secure_installation<\/pre>\n<p>Next, we need to create a database for our CachetHQ instance.<\/p>\n<pre>mysql -uroot -p\r\nMariaDB [(none)]&gt; CREATE DATABASE cachet;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON cachet.* TO 'cachetuser'@'localhost' IDENTIFIED BY 'cachetuser_passwd';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<h4>Install and configure PHP and Nginx<\/h4>\n<p>The latest version of Nginx 1.6.2 and PHP 5.6 are not available via the default Debian repositories, so we will add the Dotdeb repository. Open the <code>\/etc\/apt\/sources.list<\/code> file and append the following lines:<\/p>\n<pre>user@myVPS:~# sudo vim \/etc\/apt\/sources.list<\/pre>\n<pre>deb http:\/\/packages.dotdeb.org wheezy all\r\ndeb http:\/\/packages.dotdeb.org wheezy-php56 all\r\n<\/pre>\n<p>Next, fetch and install the GnuPG key:<\/p>\n<pre>user@myVPS:~# wget -qO - http:\/\/www.dotdeb.org\/dotdeb.gpg | sudo apt-key add -<\/pre>\n<p>Update the system and install Nginx, PHP and all necessary extensions:<\/p>\n<pre>user@myVPS:~# sudo apt-get update\r\nuser@myVPS:~# sudo apt-get install nginx php5-fpm php5-cli php5-mbstring php5-mcrypt php5-apcu\r\n\r\n\r\n<\/pre>\n<h4>Install Composer<\/h4>\n<p>Composer is a dependency manager for PHP with which you can install packages. Composer will pull in all the required libraries and dependencies you need for your project.<\/p>\n<pre>user@myVPS:~# curl -sS https:\/\/getcomposer.org\/installer | php\r\nuser@myVPS:~# sudo mv composer.phar \/usr\/local\/bin\/composer<\/pre>\n<h4>Install Node Gulp and Bower<\/h4>\n<pre>user@myVPS:~# sudo curl -sL https:\/\/deb.nodesource.com\/setup | bash -\r\nuser@myVPS:~# apt-get install -y nodejs\r\nuser@myVPS:~# npm install -g bower\r\nuser@myVPS:~# npm install -g gulp\r\n<\/pre>\n<h4>Install CachetHQ<\/h4>\n<p>Create a root directory for your application.<\/p>\n<pre>user@myVPS:~# mkdir -p ~\/your_cachet_site<\/pre>\n<p>Clone the project repository from GitHub:<\/p>\n<pre>user@myVPS:~# git clone https:\/\/github.com\/cachethq\/Cachet.git ~\/your_cachet_site\r\nuser@myVPS:~# cd  ~\/your_cachet_site\r\n<\/pre>\n<p>Create a new production environment file:<\/p>\n<pre>user@myVPS:~# vim .env.php\r\n&lt;?php\r\nreturn [\r\n\u00a0\u00a0\u00a0 'DB_DRIVER'\u00a0\u00a0 =&gt; 'mysql',\r\n\u00a0\u00a0\u00a0 'DB_HOST'\u00a0\u00a0\u00a0\u00a0 =&gt; 'localhost',\r\n\u00a0\u00a0\u00a0 'DB_DATABASE' =&gt; 'cachet',\r\n\u00a0\u00a0\u00a0 'DB_USERNAME' =&gt; 'cachetuser',\r\n\u00a0\u00a0\u00a0 'DB_PASSWORD' =&gt; 'cachetuser_passwd',\r\n];<\/pre>\n<p>Install all dependencies:<\/p>\n<pre>user@myVPS:~# export ENV=production<\/pre>\n<pre>user@myVPS:~# composer install --no-dev -o<\/pre>\n<p>Run database migrations and seed the database with sample data:<\/p>\n<pre>user@myVPS:~# php artisan migrate\r\nuser@myVPS:~# php artisan db:seed\r\n<\/pre>\n<p>Build assets:<\/p>\n<pre>user@myVPS:~# npm install\r\nuser@myVPS:~# bower install\r\nuser@myVPS:~# gulp       \r\n<\/pre>\n<h4>Configure Nginx and PHP<\/h4>\n<p>Create a new PHP-FPM pool for your user:<\/p>\n<pre>user@myVPS:~# sudo nano \/etc\/php5\/fpm\/pool.d\/your_user.conf<\/pre>\n<pre>[your_user]\r\nuser = your_user  \r\ngroup = your_user  \r\nlisten = \/var\/run\/php5-fpm-your_user.sock  \r\nlisten.owner = your_user\r\nlisten.group = your_user  \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<p>Do not forget to change your_user with your username.<\/p>\n<p>Restart PHP-FPM<\/p>\n<pre>user@myVPS:~# sudo service php5-fpm restart<\/pre>\n<p>Generate ssl certificate:<\/p>\n<pre>user@myVPS:~# sudo mkdir -p \/etc\/nginx\/ssl\r\nuser@myVPS:~# cd \/etc\/nginx\/ssl\r\nuser@myVPS:~# sudo openssl genrsa -des3 -passout pass:x -out cachet.pass.key 2048\r\nuser@myVPS:~# sudo openssl rsa -passin pass:x -in cachet.pass.key -out cachet.key\r\nuser@myVPS:~# sudo rm cachet.pass.key\r\nuser@myVPS:~# sudo openssl req -new -key cachet.key -out cachet.csr\r\nuser@myVPS:~# sudo openssl x509 -req -days 365 -in cachet.csr -signkey cachet.key -out cachet.crt<\/pre>\n<p>Next, create a new Nginx server block:<\/p>\n<pre>user@myVPS:~# sudo vim \/etc\/nginx\/sites-available\/your_cachet_site<\/pre>\n<pre>server {\r\n    listen      443 default;\r\n    server_name your_cachet_site;\r\n\r\n    ssl on;\r\n    ssl_certificate     \/etc\/nginx\/ssl\/cachet.crt;\r\n    ssl_certificate_key \/etc\/nginx\/ssl\/cachet.key;\r\n    ssl_session_timeout 5m;\r\n\r\n    ssl_ciphers               'AES128+EECDH:AES128+EDH:!aNULL';\r\n    ssl_protocols              TLSv1 TLSv1.1 TLSv1.2;\r\n    ssl_prefer_server_ciphers on;\r\n\r\n    root \/home\/your_user\/your_cachet_site\/public;\r\n\r\n    index index.html index.htm index.php;\r\n\r\n    charset utf-8;\r\n\r\n    location \/ {\r\n        try_files $uri $uri\/ \/index.php?$query_string;\r\n    }\r\n\r\n    location = \/favicon.ico { access_log off; log_not_found off; }\r\n    location = \/robots.txt  { access_log off; log_not_found off; }\r\n\r\n    access_log  \/var\/log\/nginx\/cachet.access.log;\r\n    error_log   \/var\/log\/nginx\/cachet.error.log;\r\n\r\n    sendfile off;\r\n\r\n    location ~ \\.php$ {\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm-your_user.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        fastcgi_param ENV \"production\";\r\n    }\r\n\r\n    location ~ \/\\.ht {\r\n        deny all;\r\n    }\r\n}\r\n\r\nserver {\r\n    listen      80;\r\n    server_name your_cachet_site;\r\n\r\n    add_header Strict-Transport-Security max-age=2592000;\r\n    rewrite ^ https:\/\/$server_name$request_uri? permanent;\r\n}\r\n<\/pre>\n<p>Do not forget to change your_user with your username.<\/p>\n<p>Activate the server block by creating a symbolic link and restart nginx:<\/p>\n<pre>user@myVPS:~# sudo ln -s \/etc\/nginx\/sites-available\/your_cachet_site \/etc\/nginx\/sites-enabled\/your_cachet_site\r\nuser@myVPS:~# sudo \/etc\/init.d\/nginx restart<\/pre>\n<p>That&#8217;s it. You have successfully installed CachetHQ on your <a title=\"debian-vps\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian Wheezy VPS<\/a>. For more information about CachetHQ ,please refer to the <a title=\"cachethq\" href=\"https:\/\/cachethq.io\" target=\"_blank\" rel=\"noopener noreferrer\">CachetHQ<\/a> website.<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a title=\"linux vps hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">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&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">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<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we&#8217;ll see how to install CachetHQ on a Debian 7 (Wheezy) VPS with MariaDB, PHP-FPM and Nginx. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install CachetHQ on Debian 7 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#more-16731\" aria-label=\"Read more about Install CachetHQ on Debian 7 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16733,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13],"tags":[699,48,176,50,700],"class_list":["post-16731","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-tutorials","tag-cachethq","tag-debian","tag-laravel","tag-php","tag-status-page","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install CachetHQ on Debian 7 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install CachetHQ on Debian 7 VPS | 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-cachethq-on-debian-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install CachetHQ on Debian 7 VPS\" \/>\n<meta property=\"og:description\" content=\"Install CachetHQ on Debian 7 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-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-01-16T16:21:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:46:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\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=\"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\\\/install-cachethq-on-debian-7-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install CachetHQ on Debian 7 VPS\",\"datePublished\":\"2015-01-16T16:21:27+00:00\",\"dateModified\":\"2022-06-03T08:46:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/\"},\"wordCount\":377,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/install-cachethq-on-debian-7-vps.png\",\"keywords\":[\"CachetHQ\",\"debian\",\"laravel\",\"php\",\"Status Page\"],\"articleSection\":[\"Debian\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/\",\"name\":\"Install CachetHQ on Debian 7 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/install-cachethq-on-debian-7-vps.png\",\"datePublished\":\"2015-01-16T16:21:27+00:00\",\"dateModified\":\"2022-06-03T08:46:24+00:00\",\"description\":\"Install CachetHQ on Debian 7 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/install-cachethq-on-debian-7-vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/01\\\/install-cachethq-on-debian-7-vps.png\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-cachethq-on-debian-7-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install CachetHQ on Debian 7 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"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\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"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\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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 Premium plugin. -->","yoast_head_json":{"title":"Install CachetHQ on Debian 7 VPS | RoseHosting","description":"Install CachetHQ on Debian 7 VPS | 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-cachethq-on-debian-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install CachetHQ on Debian 7 VPS","og_description":"Install CachetHQ on Debian 7 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-01-16T16:21:27+00:00","article_modified_time":"2022-06-03T08:46:24+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.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\/install-cachethq-on-debian-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install CachetHQ on Debian 7 VPS","datePublished":"2015-01-16T16:21:27+00:00","dateModified":"2022-06-03T08:46:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/"},"wordCount":377,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png","keywords":["CachetHQ","debian","laravel","php","Status Page"],"articleSection":["Debian","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/","name":"Install CachetHQ on Debian 7 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png","datePublished":"2015-01-16T16:21:27+00:00","dateModified":"2022-06-03T08:46:24+00:00","description":"Install CachetHQ on Debian 7 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/01\/install-cachethq-on-debian-7-vps.png","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-cachethq-on-debian-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install CachetHQ on Debian 7 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","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":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"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\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?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\/16731","targetHints":{"allow":["GET"]}}],"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=16731"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16731\/revisions"}],"predecessor-version":[{"id":42145,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16731\/revisions\/42145"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16733"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16731"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}