{"id":277,"date":"2017-11-22T07:00:43","date_gmt":"2017-11-22T13:00:43","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=277"},"modified":"2020-08-02T11:40:09","modified_gmt":"2020-08-02T16:40:09","slug":"how-to-install-and-configure-redmine-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/","title":{"rendered":"How to Install Redmine on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-2445001550\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking, and project management system designed to help teams to achieve their desired project goals. It allows users to configure it according to their needs and suit their business needs. Redmine comes with a lot of useful features and plugins that can help you with the project management and all related processes. IInstalling Redmine on Ubuntu 16.04 is an easy task, just follow the steps below carefully.<br \/>\n<!--more--><\/p>\n<h2><strong>1. Install dependencies<\/strong><\/h2>\n<p>Login to your Ubuntu VPS via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>update all packages installed on your VPS to the latest version<\/p>\n<pre>apt-get update &amp;&amp; apt-get upgrade<\/pre>\n<p>Run the following command to install all necessary dependencies<\/p>\n<pre>apt-get install python-software-properties curl autoconf subversion bison software-properties-common imagemagick libmagickwand-dev build-essential libssl-dev libreadline-dev libyaml-dev zlib1g-dev git libcurl4-openssl-dev<\/pre>\n<h2><strong>2. Install MySQL server<\/strong><\/h2>\n<p>Redmin requires an empty MySQL database, so we will install MySQL server<\/p>\n<pre>apt-get install mysql-server mysql-client<\/pre>\n<p>Once the installation is completed run the mysql_secure_installation post installation script and follow the on-screen instructions to secure the installation and set your MySQL root password.<\/p>\n<p>Next, login to the MySQL server as user root and create a new MySQL user and database<\/p>\n<pre>mysql -u root -p\r\n\r\nCREATE DATABASE redmin\r\nGRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost' IDENTIFIED BY 'PASSWORD';\r\nFLUSH PRIVILEGES;\r\n\\q<\/pre>\n<p>Don&#8217;t forget to replace &#8216;PASSWORD&#8217; with an actual, strong password.<\/p>\n<h2><strong>3. Install Ruby and Ruby Version Manager (RVM)<\/strong><\/h2>\n<p>Install the latest version of Ruby with the following command<\/p>\n<pre>gpg --keyserver hkp:\/\/keys.gnupg.net --recv-keys D39DC0E3\r\ncurl -L https:\/\/get.rvm.io | bash -s stable --ruby=2.4.1<\/pre>\n<p>Run the following commands to load RVM<\/p>\n<pre>source \/usr\/local\/rvm\/scripts\/rvm\r\necho '[[ -s \"\/usr\/local\/rvm\/scripts\/rvm\" ]] &amp;&amp; source \"\/usr\/local\/rvm\/scripts\/rvm\"' &gt;&gt; ~\/.bashrc<\/pre>\n<h2><strong>4. Install and configure Nginx and Phusion Passenger<\/strong><\/h2>\n<p>Passenger is feature-rich web app server that integrates with Apache and Nginx. We will install it and integrate it with Nginx<\/p>\n<pre>gem install passenger --no-ri --no-rdoc\r\npassenger-install-nginx-module<\/pre>\n<p>You will be prompted to select a language that will be supported, select Ruby. On the next step select the &#8216;Yes: download, compile and install Nginx for me. (recommended)&#8217; option. The command will compile and install all necessary modules, including Nginx on your server and it may take some time.<\/p>\n<p>Next, open the Nginx configuration file and update the server section as described below:<\/p>\n<pre>nano \/opt\/nginx\/conf\/nginx.conf\r\n\r\nserver {\r\n        listen       80;\r\n        server_name  yourdomain.com;\r\n\r\n        root \/var\/www\/html\/redmine\/public;\r\n        passenger_enabled on;\r\n        client_max_body_size      10m; # Max attachment size\r\n\r\n        # redirect server error pages to the static page \/50x.html\r\n        #\r\n        error_page   500 502 503 504  \/50x.html;\r\n        location = \/50x.html {\r\n            root   html;\r\n        }\r\n    }<\/pre>\n<h2>5. Configure Nginx to start as a service<\/h2>\n<p>To configure Nginx to start as a service, create a nginx.service file with the following content<\/p>\n<pre>nano \/lib\/systemd\/system\/nginx.service\r\n\r\n[Unit]\r\nDescription=NGINX server\r\nAfter=syslog.target network.target remote-fs.target nss-lookup.target\r\n \r\n[Service]\r\nType=forking\r\nPIDFile=\/opt\/nginx\/logs\/nginx.pid\r\nExecStartPre=\/opt\/nginx\/sbin\/nginx -t\r\nExecStart=\/opt\/nginx\/sbin\/nginx\r\nExecReload=\/bin\/kill -s HUP $MAINPID\r\nExecStop=\/bin\/kill -s QUIT $MAINPID\r\nPrivateTmp=true\r\n \r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n<p>Reload the systemd services and start Nginx<\/p>\n<pre>systemctl daemon-reload\r\nsystemctl start nginx<\/pre>\n<h2><strong>6.Install and configure Redmine<\/strong><\/h2>\n<p>Download the latest version of Redmine (at the moment of writing this article it is version 3.4) using the svn command<\/p>\n<pre>cd \/var\/www\/html\r\nsvn co http:\/\/svn.redmine.org\/redmine\/branches\/3.4-stable redmine<\/pre>\n<p>Change the current working directory and the example configuration files<\/p>\n<pre>cd redmine\r\ncp config\/configuration.yml.example config\/configuration.yml\r\ncp config\/database.yml.example config\/database.yml<\/pre>\n<p>Make the following changes to the database.yml file<\/p>\n<pre>nano config\/database.yml\r\n\r\nproduction:\r\n  adapter: mysql2\r\n  database: redmine\r\n  host: localhost\r\n  username: redmine\r\n  password: PASSWORD\r\n  encoding: utf8<\/pre>\n<p>Install the Ruby dependencies and migrate the database<\/p>\n<pre>gem install bundler --no-ri --no-rdoc\r\nbundle install\r\nbundle exec rake db:migrate\r\nbundle exec rake redmine:plugins<\/pre>\n<p>Generate the secret token using the following command<\/p>\n<pre>bundle exec rake generate_secret_token<\/pre>\n<h2>7. Restart the webserver<\/h2>\n<p>Restart the web server for the changes to take effect<\/p>\n<pre>systemctl restart nginx<\/pre>\n<p>That&#8217;s all. If you closely followed the steps in this tutorial, you should be able to access Redmine on your Ubuntu 16.04 server\u00a0 at http:\/\/yourdomain.com using the default credentials (admin\/admin).<\/p>\n<p>For more information on how to configure and use Redmine, pleae check their official <a href=\"http:\/\/www.redmine.org\/guide\" target=\"_blank\" rel=\"noopener noreferrer\">guide<\/a>.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to install Redmine on Ubuntu 16.04, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Server Support<\/a> Services, in which case you can simply ask our expert Linux admins to install Redmine on Ubuntu 16.04 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. If you liked this post on how to install Redmine on Ubuntu 16.04, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-198062552\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking, and project management system designed to help teams to achieve their desired project goals. It allows users to configure it according to their needs and suit their business needs. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":440,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[56,79,63,20],"class_list":["post-277","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-how-to","tag-linux-host-support","tag-redmine","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-11-22T13:00:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:40:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Redmine on Ubuntu 16.04\",\"datePublished\":\"2017-11-22T13:00:43+00:00\",\"dateModified\":\"2020-08-02T16:40:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/\"},\"wordCount\":552,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-install-redmine-on-ubuntu.jpg\",\"keywords\":[\"how to\",\"Linux host support\",\"redmine\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/\",\"name\":\"How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-install-redmine-on-ubuntu.jpg\",\"datePublished\":\"2017-11-22T13:00:43+00:00\",\"dateModified\":\"2020-08-02T16:40:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-install-redmine-on-ubuntu.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/11\\\/how-to-install-redmine-on-ubuntu.jpg\",\"width\":750,\"height\":410,\"caption\":\"how to install redmine on ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-and-configure-redmine-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Redmine on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport","description":"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,","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:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport","og_description":"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-11-22T13:00:43+00:00","article_modified_time":"2020-08-02T16:40:09+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Redmine on Ubuntu 16.04","datePublished":"2017-11-22T13:00:43+00:00","dateModified":"2020-08-02T16:40:09+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/"},"wordCount":552,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg","keywords":["how to","Linux host support","redmine","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/","name":"How to Install Redmine on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg","datePublished":"2017-11-22T13:00:43+00:00","dateModified":"2020-08-02T16:40:09+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We will show you, how to install and configure Redmine on Ubuntu 16.04, with Nginx and MySQL. Redmine is completely free and open source issue tracking,","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/11\/how-to-install-redmine-on-ubuntu.jpg","width":750,"height":410,"caption":"how to install redmine on ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-and-configure-redmine-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Redmine on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/277","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=277"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/277\/revisions"}],"predecessor-version":[{"id":1221,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/277\/revisions\/1221"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/440"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}