{"id":16912,"date":"2015-03-17T16:00:50","date_gmt":"2015-03-17T21:00:50","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=16912"},"modified":"2024-07-04T01:51:42","modified_gmt":"2024-07-04T06:51:42","slug":"install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/","title":{"rendered":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx."},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-thumbnail wp-image-16914\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx-150x150.png\" alt=\"install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx\" width=\"150\" height=\"150\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx-150x150.png 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx-100x100.png 100w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx-50x50.png 50w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx-75x75.png 75w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>In this tutorial, we will explain how to install Redmine 2.6 on an Ubuntu 14.04 VPS with MariaDB, Puma and Nginx. Redmine is a flexible open source issue tracking and web-based project management application . Redmine is built on Ruby on Rails framework and it is cross-platform and cross-database. 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 <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a>.<br \/>\n<!--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\nuser@myVPS:~# sudo apt-get install python-software-properties \\\n    curl autoconf subversion bison software-properties-common \\\n    imagemagick libmagickwand-dev build-essential libssl-dev \\\n    libreadline-dev libyaml-dev zlib1g-dev git openssl vim<\/pre>\n<h4>Install MariaDB 10.0<\/h4>\n<pre>user@myVPS:~# sudo apt-key adv --recv-keys --keyserver hkp:\/\/keyserver.ubuntu.com:80 0xcbcb082a1bb943db\nuser@myVPS:~# sudo add-apt-repository 'deb http:\/\/mirror.pw\/mariadb\/repo\/10.0\/ubuntu trusty main'\nuser@myVPS:~# sudo apt-get install mariadb-server libmariadbclient-dev<\/pre>\n<p>When the installation is complete, run the following command to secure your installation:<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>Next, we need to create a database for our Redmine installation:<\/p>\n<pre>mysql -uroot -p\nMariaDB [(none)]&gt; CREATE DATABASE redmine CHARACTER SET utf8;\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost' IDENTIFIED BY 'redmine_passwd';\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\nMariaDB [(none)]&gt; \\q<\/pre>\n<h4>Redmine user<\/h4>\n<p>Create a new system user for Redmine.<\/p>\n<pre>user@myVPS:~# sudo adduser --home \/opt\/redmine --shell \/bin\/bash --gecos 'Redmine application' redmine\nuser@myVPS:~# sudo install -d -m 755 -o redmine -g redmine \/opt\/redmine\nuser@myVPS:~# sudo usermod -a -G sudo redmine\nuser@myVPS:~# sudo su - redmine\n<\/pre>\n<h4>Install Ruby using RVM<\/h4>\n<pre>redmine@myVPS:~# cd\nredmine@myVPS:~# curl -sSL https:\/\/rvm.io\/mpapis.asc | gpg --import -\nredmine@myVPS:~# curl -sSL https:\/\/get.rvm.io | bash -s stable --ruby<\/pre>\n<p>To start using RVM run<\/p>\n<pre>redmine@myVPS:~# source ~\/.rvm\/scripts\/rvm<\/pre>\n<p>To verify everything is done correctly, use the command <code>ruby --version<\/code>.<br \/>\nThe output should be similar to the following:<\/p>\n<pre>redmine@myVPS:~# ruby --version\nruby 2.2.0p0 (2014-12-25 revision 49005) [x86_64-linux]<\/pre>\n<h4>Install Redmine<\/h4>\n<p>The following commands will checkout the Redmine source code to the <code>~\/redmine<\/code> directory and create some directories.<\/p>\n<pre>redmine@myVPS:~# cd &amp;&amp; svn co http:\/\/svn.redmine.org\/redmine\/branches\/2.6-stable redmine<\/pre>\n<pre>redmine@myVPS:~# mkdir -p .\/redmine\/tmp\/pids .\/redmine\/public\/plugin_assets<\/pre>\n<p>Configure database settings<\/p>\n<pre>redmine@myVPS:~# cp .\/redmine\/config\/configuration.yml.example .\/redmine\/config\/configuration.yml\nredmine@myVPS:~# cp .\/redmine\/config\/database.yml.example .\/redmine\/config\/database.yml<\/pre>\n<p>Open the <code>database.yml<\/code> file and update username\/password<\/p>\n<pre>redmine@myVPS:~# vim .\/redmine\/config\/database.yml<\/pre>\n<pre>production:\n  adapter: mysql2\n  database: redmine\n  host: localhost\n  username: redmine\n  password: \"redmine_passwd\"\n  encoding: utf8\n<\/pre>\n<p>Create a new Puma configuration file.<\/p>\n<pre>redmine@myVPS:~# vim .\/redmine\/config\/puma.rb<\/pre>\n<pre>#!\/usr\/bin\/env puma\n\napplication_path = '\/opt\/redmine\/redmine'\ndirectory application_path\nenvironment 'production'\ndaemonize true\npidfile \"#{application_path}\/tmp\/pids\/puma.pid\"\nstate_path \"#{application_path}\/tmp\/pids\/puma.state\"\nstdout_redirect \"#{application_path}\/log\/puma.stdout.log\", \"#{application_path}\/log\/puma.stderr.log\"\nbind \"unix:\/\/#{application_path}\/tmp\/sockets\/redmine.sock\"<\/pre>\n<p>Install Gems<\/p>\n<pre>redmine@myVPS:~# cd \/opt\/redmine\/redmine\nredmine@myVPS:~# echo \"gem 'puma'\" &gt;&gt; Gemfile.local\nredmine@myVPS:~# echo \"gem: --no-ri --no-rdoc\" &gt;&gt; ~\/.gemrc \nredmine@myVPS:~# bundle install --without development test postgresql sqlite<\/pre>\n<p>Prepare the database<\/p>\n<pre>redmine@myVPS:~# rake generate_secret_token\nredmine@myVPS:~# RAILS_ENV=production rake db:migrate\nredmine@myVPS:~# RAILS_ENV=production REDMINE_LANG=en rake redmine:load_default_data<\/pre>\n<p>Create an Upstart script<\/p>\n<pre>redmine@myVPS:~# sudo vim \/etc\/init\/redmine.conf<\/pre>\n<pre>description \"Puma Redmine Service\"\n \nstart on filesystem or runlevel [2345]\nstop on runlevel [!2345]\n \nsetuid redmine\nsetgid redmine\n \nrespawn\n \nscript\nexec \/bin\/bash &lt;&lt; EOT\nsource \/opt\/redmine\/.rvm\/scripts\/rvm\ncd \/opt\/redmine\/redmine\nbundle exec puma --config config\/puma.rb\nEOT\nend script\n<\/pre>\n<p>You can now start your Redmine service\u00a0 with :<\/p>\n<pre>redmine@myVPS:~# sudo service redmine start<\/pre>\n<h4>Install and configure Nginx<\/h4>\n<p>Installing Nginx is pretty easy, just run the following command:<\/p>\n<pre>redmine@myVPS:~# sudo apt-get install nginx<\/pre>\n<p>Next, create a new Nginx server block:<\/p>\n<pre>redmine@myVPS:~# sudo vim \/etc\/nginx\/sites-available\/redmine.domain.com<\/pre>\n<pre>upstream redmine {\n  server unix:\/opt\/redmine\/redmine\/tmp\/sockets\/redmine.sock;\n}\n\nserver {\n  server_name redmine.domain.com;\n  root \/opt\/redmine\/redmine;\n\n  location \/ {\n    try_files $uri @ruby;\n  }\n\n  location @ruby {\n    proxy_set_header  X-Real-IP  $remote_addr;\n    proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;\n    proxy_set_header  Host $http_host;\n    proxy_redirect off;\n    proxy_read_timeout 300;\n    proxy_pass http:\/\/redmine;\n  }\n}\n<\/pre>\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\/redmine.domain.com \/etc\/nginx\/sites-enabled\/redmine.domain.com\nuser@myVPS:~# sudo service nginx restart\n<\/pre>\n<p>That&#8217;s it. You have successfully installed Redmine on your <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu VPS<\/a>. For more information about Redmine, please refer to the <a title=\"Redmine\" href=\"https:\/\/www.redmine.org\/\" target=\"_blank\" rel=\"noopener noreferrer\">Redmine<\/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","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will explain how to install Redmine 2.6 on an Ubuntu 14.04 VPS with MariaDB, Puma and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#more-16912\" aria-label=\"Read more about Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":16914,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702,13,1698,1707],"tags":[757,296,49,735,192,139,141],"class_list":["post-16912","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-tutorials","category-ubuntu","category-web-servers","tag-install-redmine","tag-mariadb","tag-nginx","tag-puma","tag-redmine","tag-ruby","tag-ruby-on-rails","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.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | 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-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.\" \/>\n<meta property=\"og:description\" content=\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/\" \/>\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-03-17T21:00:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-04T06:51:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.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-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.\",\"datePublished\":\"2015-03-17T21:00:50+00:00\",\"dateModified\":\"2024-07-04T06:51:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/\"},\"wordCount\":335,\"commentCount\":13,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png\",\"keywords\":[\"install redmine\",\"mariadb\",\"nginx\",\"puma\",\"redmine\",\"ruby\",\"ruby on rails\"],\"articleSection\":[\"Databases\",\"Tutorials\",\"Ubuntu\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/\",\"name\":\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png\",\"datePublished\":\"2015-03-17T21:00:50+00:00\",\"dateModified\":\"2024-07-04T06:51:42+00:00\",\"description\":\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png\",\"width\":300,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.\"}]},{\"@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 Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting","description":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | 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-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/","og_locale":"en_US","og_type":"article","og_title":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.","og_description":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-03-17T21:00:50+00:00","article_modified_time":"2024-07-04T06:51:42+00:00","og_image":[{"width":300,"height":300,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.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-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx.","datePublished":"2015-03-17T21:00:50+00:00","dateModified":"2024-07-04T06:51:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/"},"wordCount":335,"commentCount":13,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png","keywords":["install redmine","mariadb","nginx","puma","redmine","ruby","ruby on rails"],"articleSection":["Databases","Tutorials","Ubuntu","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/","url":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/","name":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png","datePublished":"2015-03-17T21:00:50+00:00","dateModified":"2024-07-04T06:51:42+00:00","description":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx. | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/02\/install-redmine-on-an-ubuntu-14-04-with-mariadb-puma-and-nginx.png","width":300,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-redmine-on-an-ubuntu-14-04-server-with-mariadb-puma-and-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install Redmine on an Ubuntu 14.04 server with MariaDB, Puma and Nginx."}]},{"@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\/16912","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=16912"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16912\/revisions"}],"predecessor-version":[{"id":48751,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/16912\/revisions\/48751"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/16914"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=16912"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=16912"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=16912"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}