{"id":17926,"date":"2015-11-18T14:48:41","date_gmt":"2015-11-18T20:48:41","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=17926"},"modified":"2022-12-15T07:09:52","modified_gmt":"2022-12-15T13:09:52","slug":"install-candycane-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/","title":{"rendered":"Install CandyCane on an Ubuntu 14.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft wp-image-17929\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png\" alt=\"install-candycane-on-an-ubuntu-14-04-vps\" width=\"99\" height=\"99\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps-75x75.png 75w\" sizes=\"(max-width: 99px) 100vw, 99px\" \/>In this guide, we will explain how to install CandyCane on an Ubuntu 14.04 VPS with MariaDB, PHP-FPM and Nginx. CandyCane a flexible open source bug tracking system powered by CakePHP MVC framework. This guide should work on other <a title=\"Linux VPS\" href=\"https:\/\/www.rosehosting.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for an <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a>.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h4 id=\"login-to-your-vps-via-ssh\">Login to your VPS via SSH<\/h4>\n<pre><code>ssh user@vps\r\n<\/code><\/pre>\n<h4 id=\"update-the-system-and-install-necessary-packages\">Update the system and install necessary packages<\/h4>\n<pre><code>[user]$ sudo apt-get update &amp;&amp; sudo apt-get -y upgrade\r\n[user]$ sudo apt-get install software-properties-common unzip git curl\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"install-mariadb-100\">Install MariaDB 10.0<\/h4>\n<pre><code>[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.0\/ubuntu trusty main'\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get install -y mariadb-server\r\n<\/code><\/pre>\n<p>When the installation is complete, run the following command to secure your installation:<\/p>\n<pre><code>[user]$ mysql_secure_installation\r\n<\/code><\/pre>\n<p>Next, we need to create a database for our CandyCane installation.<\/p>\n<pre><code>[user]$ mysql -uroot -p\r\n\r\nMariaDB [(none)]&gt; CREATE DATABASE cc;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON cc.* TO 'ccuser'@'localhost' IDENTIFIED BY 'ccuser_passwd';\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"install-nginx\">Install Nginx<\/h4>\n<p>Ubuntu 14.04 comes with nginx version 1.4, to install the latest stable version of Nginx version 1.8, run:<\/p>\n<pre><code>[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\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"install-php-composer-and-required-php-modules\">Install PHP, composer and required PHP modules<\/h4>\n<p>To install the latest stable version of PHP version 5.6 and all nessesary modules, run:<\/p>\n<pre><code>[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-imagick php5-mysqlnd php5-mcrypt php-pear php5-curl\r\n<\/code><\/pre>\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><code>[user]$ curl -sS https:\/\/getcomposer.org\/installer | php\r\n[user]$ sudo mv composer.phar \/usr\/local\/bin\/composer\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"install-candycane\">Install CandyCane<\/h4>\n<p>Create a root directory for your CandyCane installation script using the following command:<\/p>\n<pre><code>[user]$ mkdir -p ~\/myCandyCane.com\/{public_html,logs}\r\n<\/code><\/pre>\n<p>Clone the project repository from GitHub:<\/p>\n<pre><code>[user]$ git clone https:\/\/github.com\/yandod\/candycane.git ~\/myCandyCane.com\/public_html\r\n<\/code><\/pre>\n<p>Change to the directory and install composer packages:<\/p>\n<pre><code>[user]$ cd ~\/myCandyCane.com\/public_html\r\n[user]$ composer install\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"php-fpm-configuration\">PHP-FPM configuration<\/h4>\n<p>Create a new PHP-FPM pool for your user:<\/p>\n<pre><code>[user]$ sudo vim \/etc\/php5\/fpm\/pool.d\/your_user.conf\r\n\r\n[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<\/code><\/pre>\n<p>Do not forget to change your_user with your username.<\/p>\n<p>Restart PHP-FPM:<\/p>\n<pre><code>[user]$ sudo service php5-fpm restart\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"nginx-configuration\">Nginx configuration<\/h4>\n<p>Create a new Nginx server block with the following content:<\/p>\n<pre><code>[user]$ sudo vim \/etc\/nginx\/sites-available\/myCandyCane.com\r\n\r\nserver {\r\n    server_name myCandyCane.com;\r\n    listen 80;\r\n    root \/home\/your_user\/myCandyCane.com\/public_html\/app\/webroot;\r\n\r\n    access_log \/home\/your_user\/myCandyCane.com\/logs\/access.log;\r\n    error_log \/home\/your_user\/myCandyCane.com\/logs\/error.log;\r\n\r\n    index index.php;\r\n\r\n    location \/ {\r\n        try_files $uri $uri\/ \/index.php?$query_string;\r\n    }\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    }\r\n\r\n    location ~ \/\\.ht {\r\n        deny all;\r\n    }    \r\n}\r\n<\/code><\/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 :<\/p>\n<pre><code>[user]$ sudo ln -s \/etc\/nginx\/sites-available\/myCandyCane.com \/etc\/nginx\/sites-enabled\/myCandyCane.com\r\n<\/code><\/pre>\n<p>Test the Nginx configuration and restart nginx:<\/p>\n<pre><code>[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart\r\n<\/code><\/pre>\n<h4><\/h4>\n<h4 id=\"final-steps\">Final steps<\/h4>\n<p>Open <code>http:\/\/myCandyCane.com<\/code> in your favorite web browser and you should see the CandyCane install screen. Provide the database information and follow the installation wizard instructions.<\/p>\n<p>That\u2019s it. You have successfully installed CandyCane on your Ubuntu 14.04 VPS. For more information about how to manage your CandyCane installation, please refer to the official CandyCane documentation.<\/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><span style=\"color: #ff0000;\"><strong>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":"<p>In this guide, we will explain how to install CandyCane on an Ubuntu 14.04 VPS with MariaDB, PHP-FPM and Nginx. &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install CandyCane on an Ubuntu 14.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#more-17926\" aria-label=\"Read more about Install CandyCane on an Ubuntu 14.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17929,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[463,935],"class_list":["post-17926","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-ubuntu","tag-cakephp","tag-candycane","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.4 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install CandyCane on an Ubuntu 14.04 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-candycane-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=\"Install CandyCane on an Ubuntu 14.04 VPS\" \/>\n<meta property=\"og:description\" content=\"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-candycane-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-11-18T20:48:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-15T13:09:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\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-candycane-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install CandyCane on an Ubuntu 14.04 VPS\",\"datePublished\":\"2015-11-18T20:48:41+00:00\",\"dateModified\":\"2022-12-15T13:09:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":387,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/install-candycane-on-an-ubuntu-14-04-vps.png\",\"keywords\":[\"cakephp\",\"CandyCane\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/install-candycane-on-an-ubuntu-14-04-vps.png\",\"datePublished\":\"2015-11-18T20:48:41+00:00\",\"dateModified\":\"2022-12-15T13:09:52+00:00\",\"description\":\"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/install-candycane-on-an-ubuntu-14-04-vps.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/install-candycane-on-an-ubuntu-14-04-vps.png\",\"width\":300,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-candycane-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\":\"Install CandyCane on an Ubuntu 14.04 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 CandyCane on an Ubuntu 14.04 VPS | RoseHosting","description":"Install CandyCane on an Ubuntu 14.04 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-candycane-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install CandyCane on an Ubuntu 14.04 VPS","og_description":"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-candycane-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-11-18T20:48:41+00:00","article_modified_time":"2022-12-15T13:09:52+00:00","og_image":[{"width":300,"height":300,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install CandyCane on an Ubuntu 14.04 VPS","datePublished":"2015-11-18T20:48:41+00:00","dateModified":"2022-12-15T13:09:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/"},"wordCount":387,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png","keywords":["cakephp","CandyCane"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/","name":"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png","datePublished":"2015-11-18T20:48:41+00:00","dateModified":"2022-12-15T13:09:52+00:00","description":"Install CandyCane on an Ubuntu 14.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/10\/install-candycane-on-an-ubuntu-14-04-vps.png","width":300,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-candycane-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":"Install CandyCane on an Ubuntu 14.04 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\/17926","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=17926"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17926\/revisions"}],"predecessor-version":[{"id":44301,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17926\/revisions\/44301"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17929"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17926"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17926"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17926"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}