{"id":1244,"date":"2020-04-29T14:14:36","date_gmt":"2020-04-29T19:14:36","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1244"},"modified":"2020-04-29T14:14:36","modified_gmt":"2020-04-29T19:14:36","slug":"how-to-install-redmine-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/","title":{"rendered":"How to Install Redmine on Ubuntu 18.04"},"content":{"rendered":"<p>In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Ubuntu 18.04 Cloud VPS<\/a>.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1251\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/setting-up-redmine-issue-tracking-software-on-ubuntu18.04-cloud-vps.jpg\" alt=\"\" width=\"120\" height=\"82\" \/>Redmine is an open source project management web app and issue tracking tool based on Ruby on Rails framework that allows users to manage projects flexibly while offering robust monitoring tools and a broad library of plug-ins. This free and open-source solution offers an alternative to management tools. We can track multiple projects in one installation, it has an integrated support for news, document management, file management, a support wiki, forum, calendars, and so on making it a very versatile platform. Let&#8217;s begin with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>Ubuntu 18.04 Cloud VPS<\/li>\n<li>Ruby<\/li>\n<li>MySQL<\/li>\n<li>Nginx<\/li>\n<li>SSH access with root privileges, or an account with sudo privileges<\/li>\n<\/ul>\n<h2>Step 1. Log in via SSH and Update the System<\/h2>\n<p>Log in to your Ubuntu 18.04 Cloud VPS with SSH as a root user:<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>Make sure to replace &#8220;<span style=\"color: #ff0000;\">IP_Address<\/span>&#8221; and &#8220;<span style=\"color: #ff0000;\">Port_number<\/span>&#8221; with their respective values for your server.<\/p>\n<p>You can check whether you have the proper Ubuntu version installed on your server with the following command:<\/p>\n<pre># lsb_release -a<\/pre>\n<p>You should get this output:<\/p>\n<pre>Distributor ID: Ubuntu\r\nDescription: Ubuntu 18.04.1 LTS\r\nRelease: 18.04\r\nCodename: bionic\r\n<\/pre>\n<p>Then, run the following command to make sure that all installed packages on the server are updated to the latest available version.<\/p>\n<pre># apt update &amp;&amp; apt upgrade<\/pre>\n<p>We&#8217;ll also need to install some important packages that are prerequisites for the software we&#8217;ll be installing today.<\/p>\n<pre># apt install curl subversion build-essential libmysqlclient-dev libmagickcore-dev libmagickwand-dev imagemagick g++ zlib1g-dev libyaml-dev libsqlite3-dev sqlite3 autoconf libgmp-dev libgdbm-dev libncurses5-dev automake libtool bison pkg-config libffi-dev libgmp-dev libreadline6-dev libssl-dev nginx mysql-server<\/pre>\n<h2>Step 2. Install Ruby<\/h2>\n<p>Redmine was written on the Ruby on Rails framework, so we need to install Ruby.<\/p>\n<table>\n<tbody>\n<tr>\n<th>Redmine version<\/th>\n<th>Supported Ruby versions<\/th>\n<th>Rails version used<\/th>\n<\/tr>\n<tr>\n<td>4.0<\/td>\n<td>ruby 2.2 (2.2.2 and later), 2.3, 2.4, 2.5, 2.6<\/td>\n<td>Rails 5.2<\/td>\n<\/tr>\n<tr>\n<td>3.4<\/td>\n<td>ruby 1.9.3<sup><a href=\"http:\/\/www.redmine.org\/projects\/redmine\/wiki\/redmineinstall#fn1\">1<\/a><\/sup>, 2.0.0, 2.1, 2.2, 2.3, 2.4<\/td>\n<td>Rails 4.2<\/td>\n<\/tr>\n<tr>\n<td>3.3<\/td>\n<td>ruby 1.9.3<sup><a href=\"http:\/\/www.redmine.org\/projects\/redmine\/wiki\/redmineinstall#fn1\">1<\/a><\/sup>, 2.0.0, 2.1, 2.2, 2.3<\/td>\n<td>Rails 4.2<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>There are some options to install Ruby, using rbenv, rvm or from the apt repository. The easiest and fastest way is through the apt package manager. We can install Ruby by issuing this command:<\/p>\n<pre># apt install ruby-full<\/pre>\n<p>Once installed, we can check the version by issuing this command:<\/p>\n<pre># ruby -v<\/pre>\n<p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2019\/02\/ruby_version_2.5.1.png\"><img decoding=\"async\" class=\"aligncenter size-full wp-image-29707\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2019\/02\/ruby_version_2.5.1.png\" alt=\"\" width=\"605\" height=\"50\" \/><\/a><br \/>\nAt the time of this blog writing, the Ruby version in Ubuntu 18.04 repository is 2.5.1p57. This is subject to change and is okay if the version is newer than the one shown here.<\/p>\n<h2>Step 3. Install Nginx Module and Passenger<\/h2>\n<p>These commands will install Passenger + Nginx module through Phusion&#8217;s APT repository.<\/p>\n<pre># apt install -y dirmngr gnupg\r\n# apt-key adv --keyserver hkp:\/\/keyserver.ubuntu.com:80 --recv-keys 561F9B9CAC40B2F7\r\n# apt install -y apt-transport-https ca-certificates<\/pre>\n<pre>echo deb https:\/\/oss-binaries.phusionpassenger.com\/apt\/passenger bionic main &gt; \/etc\/apt\/sources.list.d\/passenger.list<\/pre>\n<pre># apt update<\/pre>\n<pre># apt install -y libnginx-mod-http-passenger<\/pre>\n<p>Once installed, make sure all config files exist<\/p>\n<pre># if [ ! -f \/etc\/nginx\/modules-enabled\/50-mod-http-passenger.conf ]; then ln -s \/usr\/share\/nginx\/modules-available\/mod-http-passenger.load \/etc\/nginx\/modules-enabled\/50-mod-http-passenger.conf ; fi<\/pre>\n<pre># ls \/etc\/nginx\/conf.d\/mod-http-passenger.conf<\/pre>\n<p>Restart the Nginx service to apply the changes.<\/p>\n<pre># systemctl restart nginx<\/pre>\n<p>Now, we need to validate the installation, all checks should pass. Please run the following command to validate our install.<\/p>\n<pre># passenger-config validate-install<\/pre>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1245\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/validate_install.png\" alt=\"\" width=\"635\" height=\"243\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/validate_install.png 635w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/validate_install-470x180.png 470w\" sizes=\"(max-width: 635px) 100vw, 635px\" \/><\/p>\n<p>Finally, check whether Nginx has started the Passenger core processes. Run <code>\/usr\/sbin\/passenger-memory-stats<\/code>. You should see Nginx processes as well as Passenger processes, see the following picture for more details:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1246\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/passenger_status.png\" alt=\"\" width=\"1347\" height=\"459\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/passenger_status.png 1347w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/passenger_status-470x160.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/passenger_status-970x331.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/passenger_status-768x262.png 768w\" sizes=\"(max-width: 1347px) 100vw, 1347px\" \/><\/p>\n<p>If you do not see the same as the picture above, most likely you have an issue with your installation or configuration.<\/p>\n<h2>Step 4. Create a Database and Configure it<\/h2>\n<p>Redmine supports MySQL, MariaDB, SQLite 3, Microsoft SQL Server, and PostgreSQL. We are going to use MySQL, and we installed MySQL server in the very first step of this tutorial<\/p>\n<p>Now, you can skip the following step if you prefer not to have a MySQL root password set. However, we do recommend it as it helps improve the security of your MySQL install.<\/p>\n<pre># mysql_secure_installation<\/pre>\n<p>When prompted, answer the questions below by following the guide.<\/p>\n<pre>Enter current password for root (enter for none): Just press the [Enter] key, the default password is empty\r\nSet root password? [Y\/n]: Y\r\nNew password: Enter password then press [Enter]\r\nRe-enter new password: Repeat password then press [Enter]\r\nRemove anonymous users? [Y\/n]: Y\r\nDisallow root login remotely? [Y\/n]: Y\r\nRemove test database and access to it? [Y\/n]: Y\r\nReload privilege tables now? [Y\/n]: Y\r\n<\/pre>\n<p>If you followed the above step, then you would have a password for MySQL root user, so you can run this command to access MySQL shell<\/p>\n<pre># mysql -u root -p<\/pre>\n<p>Let&#8217;s proceed with creating a database for Redmine:<\/p>\n<pre>mysql&gt; create database redmine_ubuntu;\r\nmysql&gt; grant all on redmine_ubuntu.* to redmine_ubuntu@localhost identified by &#039;m0d1fyth15&#039;;\r\nmysql&gt; flush privileges;\r\nmysql&gt; exit;<\/pre>\n<p>Please change the password &#8216;<span style=\"color: #ff0000;\">m0d1fyth15<\/span>&#8216; above to your desired one. Your output should look something like this:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1247\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/create_database.png\" alt=\"\" width=\"777\" height=\"168\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/create_database.png 777w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/create_database-470x102.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/create_database-768x166.png 768w\" sizes=\"(max-width: 777px) 100vw, 777px\" \/><\/p>\n<h2>Step 5. Install Redmine<\/h2>\n<p>Before installing Redmine, we will download the latest stable version from Redmine&#8217;s official download page, you can check the latest version at https:\/\/www.redmine.org\/projects\/redmine\/wiki\/Download<\/p>\n<pre>wget http:\/\/www.redmine.org\/releases\/redmine-4.0.1.tar.gz -O \/opt\/redmine.tar.gz\r\n\r\ntar -xzvf \/opt\/redmine.tar.gz\r\n\r\nmv \/opt\/redmine-4.0.1 \/opt\/redmine<\/pre>\n<p>We created a database for thie Redmine installation in the previous step, we now need to copy a configuration sample file and connect it to our database.<\/p>\n<pre>cp \/opt\/redmine\/config\/database.yml.example \/opt\/redmine\/config\/database.yml<\/pre>\n<p>Edit the file using a file editor of your liking, we will use nano this time and complete the needed sections in the <code>database.yml<\/code> file. We will only need to edit the database name, database username, and database password in the &#8220;production&#8221; section.<\/p>\n<pre>nano redmine\/config\/database.yml<\/pre>\n<pre>gem install bundler\r\nbundle install --without development test<\/pre>\n<pre>bundle exec rake generate_secret_token\r\nRAILS_ENV=production bundle exec rake db:migrate<\/pre>\n<pre>chown -R www-data: \/opt\/redmine<\/pre>\n<h2>Step 6. Configure Nginx<\/h2>\n<p>Now, let&#8217;s edit the default nginx site configuration file. We need to modify the webroot location to point to our Redmine installation directory.<\/p>\n<pre>nano \/etc\/nginx\/sites-enabled\/default<\/pre>\n<p>Add\/edit these lines:<\/p>\n<pre>root \/opt\/redmine\/public;\r\npassenger_enabled on;\r\nclient_max_body_size 20m;<\/pre>\n<p>Test the configuration and restart nginx<\/p>\n<pre>nginx -t\r\nsystemctl restart nginx<\/pre>\n<p>At this point, you should be able to access Redmine with your server IP address at <span style=\"color: #ff0000;\">http:\/\/1.2.3.4<\/span>. Make sure to replace 1.2.3.4 with your server&#8217;s public IP address. If you want to access it using your domain, you can simply add an Nginx server block:<\/p>\n<pre>nano \/etc\/nginx\/sites-enabled\/yourdomain.com.conf<\/pre>\n<p>Add these lines and edit it to reflect your actual domain name by replacing &#8220;<span style=\"color: #ff0000;\">yourdomain.com<\/span>&#8221; with your registered domain name.<\/p>\n<pre>server {\r\nlisten 80;\r\nserver_name yourdomain.com;\r\nroot \/opt\/redmine\/public;\r\npassenger_enabled on;\r\nclient_max_body_size 20m;\r\n}\r\n<\/pre>\n<p>Save the file then restart Nginx.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1248\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/redmine.png\" alt=\"\" width=\"1345\" height=\"224\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/redmine.png 1345w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/redmine-470x78.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/redmine-970x162.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/redmine-768x128.png 768w\" sizes=\"(max-width: 1345px) 100vw, 1345px\" \/><\/p>\n<p>Congratulations! You are now able to access your newly installed Redmine at http:\/\/<span style=\"color: #ff0000;\">yourdomain.com<\/span>. For more information about Redmine along with its features and configuration, please check their official documentation.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1252\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/managed-redmine-ubuntu-support-by-expert-admins-for-cloud-vps-help.jpg\" alt=\"\" width=\"120\" height=\"82\" \/>Of course, you don\u2019t have to know how to Install Redmine on Ubuntu 18.04 if you have use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Ubuntu 18.04 Cloud VPS Hosting<\/a> services. If you do, you can simply ask our support team to install Redmine on Ubuntu 18.04 for you. They are available 24\/7, and will be able to help you with the installation of Redmine on Ubuntu 18.04.<\/p>\n<p><span style=\"color: #ff0000;\">PS<\/span>. If you enjoyed reading this blog post on how to Install Redmine on Ubuntu 18.04, or if you found it helpful, feel free to share it on social networks using the shortcuts below, or simply leave a comment. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS. Redmine is an open source project management web app and issue tracking tool based on Ruby on Rails framework that allows users to manage projects flexibly while offering &#8230; <a title=\"How to Install Redmine on Ubuntu 18.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/\" aria-label=\"More on How to Install Redmine on Ubuntu 18.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1250,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[176,47],"class_list":["post-1244","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-redmine","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Redmine on Ubuntu 18.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-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 18.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-29T19:14:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\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=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Redmine on Ubuntu 18.04\",\"datePublished\":\"2020-04-29T19:14:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/\"},\"wordCount\":932,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-redmine-on-ubuntu18.04.jpg\",\"keywords\":[\"redmine\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/\",\"name\":\"How to Install Redmine on Ubuntu 18.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-redmine-on-ubuntu18.04.jpg\",\"datePublished\":\"2020-04-29T19:14:36+00:00\",\"description\":\"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-redmine-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-redmine-on-ubuntu18.04.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Redmine on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Redmine on Ubuntu 18.04 | LinuxCloudVPS Blog","description":"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.","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.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Redmine on Ubuntu 18.04 | LinuxCloudVPS Blog","og_description":"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-04-29T19:14:36+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Redmine on Ubuntu 18.04","datePublished":"2020-04-29T19:14:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/"},"wordCount":932,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg","keywords":["redmine","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/","name":"How to Install Redmine on Ubuntu 18.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg","datePublished":"2020-04-29T19:14:36+00:00","description":"In this tutorial we will show you how to install Redmine, along with its prerequisites such as MySQL, Ruby, and Nginx, on an Ubuntu 18.04 Cloud VPS.","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-redmine-on-ubuntu18.04.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Redmine on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1244","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1244"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1244\/revisions"}],"predecessor-version":[{"id":1254,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1244\/revisions\/1254"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1250"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}