{"id":1840,"date":"2023-07-30T12:30:00","date_gmt":"2023-07-30T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1840"},"modified":"2023-08-29T06:38:37","modified_gmt":"2023-08-29T11:38:37","slug":"how-to-install-redmine-on-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/","title":{"rendered":"How to Install Redmine on Ubuntu 22.04"},"content":{"rendered":"\n<p>Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects effectively. Redmine is a web application written using the Ruby on Rails framework. <\/p>\n\n\n\n<p>It supports multiple database engines like <a href=\"https:\/\/www.rosehosting.com\/blog\/mysql-vs-sqlite-vs-postgresql\/\">MySQL\/MariaDB, PostgreSQL, SQLite<\/a>, and MSSQL. <\/p>\n\n\n\n<!--more-->\n\n\n\n<p>In this tutorial, we will show you how to install Redmine on Ubuntu 22.04.<\/p>\n\n\n\n<p>Prerequisites<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An Ubuntu 22.04 VPS<\/li>\n\n\n\n<li>SSH root access or a user with sudo privileges is required<\/li>\n<\/ul>\n\n\n\n<h1 class=\"wp-block-heading\">Conventions<\/h1>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p># \u2013 given commands should be executed with root privileges either directly as a root user or by use of sudo command<\/p>\n\n\n\n<p>$ \u2013 given commands should be executed as a regular user<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Log in to your server via SSH<\/h2>\n\n\n\n<p>First, you will need to log in to your Ubuntu 22.04 VPS via SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n\n\n\n<p>You will need to replace &#8216;IP_Address&#8217; and &#8216;Port_number&#8217; with your server&#8217;s respective IP address and SSH port number. Additionally, replace &#8216;root&#8217; with the username of the system user with sudo privileges.<\/p>\n\n\n\n<p>You can check whether you have the proper Ubuntu 22.04 installed on your server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># lsb_release -a<\/pre>\n\n\n\n<p>It will return an output like this.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">No LSB modules are available.&lt;br&gt;Distributor ID: Ubuntu&lt;br&gt;Description: Ubuntu 22.04 LTS&lt;br&gt;Release: 22.04&lt;br&gt;Codename: jammy<\/pre>\n\n\n\n<p>Then, run the following command to make sure that all installed packages on the server are updated to their latest available versions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt update<\/pre>\n\n\n\n<p>In this article, some commands are executed by &#8216;root&#8217; user and some by another user.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Dependencies<\/h2>\n\n\n\n<p>We need to install the required build tools to be able to proceed with installing Redmine from the source code.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install build-essential ruby-dev libxslt1-dev libmariadb-dev gnupg2 bison libbison-dev libgdbm-dev libncurses-dev libncurses5-dev libxml2-dev zlib1g-dev imagemagick libmagickwand-dev libreadline-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Add System User<\/h2>\n\n\n\n<p>In this step, we will create a new system user called &#8216;redmine&#8217;; we will use this user to run Redmine-related commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># useradd -r -m -d \/opt\/redmine -s \/bin\/bash redmine<\/pre>\n\n\n\n<p>The command above will create user &#8216;redmine&#8217; with \/opt\/redmine as its home directory, and it should have permission to run shell commands. We also need to add our web server user (www-data) to our redmine group.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># usermod -aG redmine www-data<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install Nginx and Passenger<\/h2>\n\n\n\n<p>In this step, we are going to install nginx from the Ubuntu repository.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install nginx<\/pre>\n\n\n\n<p>Then, let&#8217;s install Passenger packages.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install -y dirmngr gnupg apt-transport-https ca-certificates curl<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># curl https:\/\/oss-binaries.phusionpassenger.com\/auto-software-signing-gpg-key.txt | gpg --dearmor | tee \/etc\/apt\/trusted.gpg.d\/phusion.gpg &gt;\/dev\/null<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># sh -c 'echo deb https:\/\/oss-binaries.phusionpassenger.com\/apt\/passenger jammy main &gt; \/etc\/apt\/sources.list.d\/passenger.list'<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt update<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install libnginx-mod-http-passenger -y<\/pre>\n\n\n\n<p>The passenger nginx module should be installed now; let&#8217;s restart nginx.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart nginx<\/pre>\n\n\n\n<p>Now, we can create an nginx server block for our Redmine website.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># nano \/etc\/nginx\/conf.d\/redmine.yourdomain.com.conf<\/pre>\n\n\n\n<p>Insert the following into the file above. But make sure to change the server name to your actual domain or subdomain name.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">server {&lt;br&gt;listen 80;&lt;br&gt;server_name redmine.yourdomain.com;&lt;br&gt;&lt;br&gt;root \/opt\/redmine\/public;&lt;br&gt;&lt;br&gt;access_log \/var\/log\/nginx\/your_domain.com.access.log;&lt;br&gt;error_log \/var\/log\/nginx\/your_domain.com.error.log;&lt;br&gt;passenger_enabled on;&lt;br&gt;passenger_min_instances 1;&lt;br&gt;client_max_body_size 10m;&lt;br&gt;&lt;br&gt;}<\/pre>\n\n\n\n<p>Save the file, then exit and restart nginx to apply the new configuration.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl restart nginx<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Install MariaDB and Create a Database<\/h2>\n\n\n\n<p>In this step, we are going to install the MariaDB server from the default Ubuntu repository. To install the MariaDB server, execute this command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># apt install mariadb-server<\/pre>\n\n\n\n<p>Upon MariaDB installation on an Ubuntu system, the MariaDB server will be automatically running. So now, we can proceed with creating a new database and database user for our Redmine website.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># mysql<\/pre>\n\n\n\n<p>Once logged in to MySQL shell, we can run the following commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql&amp;gt; CREATE DATABASE redminedb;&lt;br&gt;mysql&amp;gt; GRANT ALL on redminedb.* to redmineuser@localhost identified by 'm0d1fyth15';&lt;br&gt;mysql&amp;gt; FLUSH PRIVILEGES;&lt;br&gt;mysql&amp;gt; \\q<\/pre>\n\n\n\n<p>Make sure to create a stronger database password; replace m0d1fyth15 in the command above with a stronger one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Install Redmine<\/h2>\n\n\n\n<p>We will install the latest stable version of Redmine. You can go to their <a href=\"https:\/\/www.redmine.org\/projects\/redmine\/wiki\/download\">download page<\/a> to check the latest version available.<\/p>\n\n\n\n<p>Let&#8217;s download version 5.0.5 and extract it under directory \/opt\/redmine<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># wget https:\/\/www.redmine.org\/releases\/redmine-5.0.5.tar.gz<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># tar -xzvf redmine-5.0.5.tar.gz -C \/opt\/redmine\/ --strip-components=1<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"># chown -R redmine. \/opt\/redmine\/<\/pre>\n\n\n\n<p>Next, let&#8217;s switch to user &#8216;redmine&#8217;.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># su - redmine<\/pre>\n\n\n\n<p id=\"block-569430ab-1ff9-4ae8-a382-6382ec8a3504\">Let&#8217;s copy the example configuration files<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ cp -a \/opt\/redmine\/config\/configuration.yml{.example,}\n$ cp -a \/opt\/redmine\/config\/database.yml{.example,}\n$ cp -a \/opt\/redmine\/public\/dispatch.fcgi{.example,}<\/pre>\n\n\n\n<p>Then, we need to edit the database configuration file; let&#8217;s use the database credentials we created in the previous step.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ nano \/opt\/redmine\/config\/database.yml<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/06\/redmine-database-credentials.webp\" alt=\"\" class=\"wp-image-46191\"\/><\/figure>\n<\/div>\n\n\n<p>Make sure to use the correct credentials.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ exit<\/pre>\n\n\n\n<p>As user &#8216;root&#8217;, let&#8217;s run this command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># cd \/opt\/redmine &amp;&amp; gem install bundler<\/pre>\n\n\n\n<p>And let&#8217;s switch back to user &#8216;redmine&#8217;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># su - redmine<\/pre>\n\n\n\n<p>Proceed with the installation<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ bundle config set --local path 'vendor\/bundle'&lt;br&gt;$ bundle install&lt;br&gt;$ bundle update<\/pre>\n\n\n\n<p>Once completed, it will show you an output similar to this:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/06\/redmine-installation-in-progress.webp\" alt=\"\" class=\"wp-image-46192\"\/><\/figure>\n<\/div>\n\n\n<p>Execute these two commands below to generate the keys and migrate the database:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ bundle exec rake generate_secret_token&lt;br&gt;$ RAILS_ENV=production bundle exec rake db:migrate<\/pre>\n\n\n\n<p>Once the database migration is done, we can insert default configuration data into the database:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ RAILS_ENV=production REDMINE_LANG=en bundle exec rake redmine:load_default_data<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">$ exit<\/pre>\n\n\n\n<p>Let&#8217;s update gem now.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># gem update<\/pre>\n\n\n\n<p>The command above will take some time to complete<\/p>\n\n\n\n<p>Once completed, you can navigate to redmine.yourdomain.com and log in using the default login credentials for Redmine are:<\/p>\n\n\n\n<p>Username: admin<br>Password: admin<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/06\/redmine-installation-finished.webp\" alt=\"\" class=\"wp-image-46193\"\/><\/figure>\n<\/div>\n\n\n<p>After logging in, you will be forced to create a stronger password.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/06\/redmine-set-new-password.webp\" alt=\"\" class=\"wp-image-46194\"\/><\/figure>\n<\/div>\n\n\n<p>Then, you can start working on your Redmine website.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/06\/redmine-dashboard.webp\" alt=\"\" class=\"wp-image-46195\"\/><\/figure>\n<\/div>\n\n\n<p>We hope that our step-by-step guide on installing Redmine on Ubuntu 22.04 has made the process much clearer and easier for you. Now, we&#8217;d love to hear from you:<\/p>\n\n\n\n<p>Do you have any concerns about the steps or need more detailed information? Can you suggest other areas of interest or step-by-step tutorials that you would like us to explore in our future posts?<\/p>\n\n\n\n<p>We&#8217;d appreciate your feedback in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects effectively. Redmine is a web application written using the Ruby on Rails framework. It supports multiple database engines like MySQL\/MariaDB, PostgreSQL, SQLite, and MSSQL.<\/p>\n","protected":false},"author":2,"featured_media":1915,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,208],"tags":[],"class_list":["post-1840","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-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 22.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects\" \/>\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-22-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 22.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-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=\"2023-07-30T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T11:38:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\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-22-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Redmine on Ubuntu 22.04\",\"datePublished\":\"2023-07-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T11:38:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/\"},\"wordCount\":763,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-redmine-on-ubuntu-22-04.webp\",\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/\",\"name\":\"How to Install Redmine on Ubuntu 22.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-redmine-on-ubuntu-22-04.webp\",\"datePublished\":\"2023-07-30T17:30:00+00:00\",\"dateModified\":\"2023-08-29T11:38:37+00:00\",\"description\":\"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-redmine-on-ubuntu-22-04.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/install-redmine-on-ubuntu-22-04.webp\",\"width\":742,\"height\":372,\"caption\":\"install redmine on ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-redmine-on-ubuntu-22-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 22.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 22.04 | LinuxCloudVPS Blog","description":"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects","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-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Redmine on Ubuntu 22.04 | LinuxCloudVPS Blog","og_description":"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2023-07-30T17:30:00+00:00","article_modified_time":"2023-08-29T11:38:37+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp","type":"image\/webp"}],"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-22-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Redmine on Ubuntu 22.04","datePublished":"2023-07-30T17:30:00+00:00","dateModified":"2023-08-29T11:38:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/"},"wordCount":763,"commentCount":3,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp","articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/","name":"How to Install Redmine on Ubuntu 22.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp","datePublished":"2023-07-30T17:30:00+00:00","dateModified":"2023-08-29T11:38:37+00:00","description":"Redmine is a free and open-source project management tool and issue-tracking tool. It allows users and teams to plan, track, and manage their projects","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/07\/install-redmine-on-ubuntu-22-04.webp","width":742,"height":372,"caption":"install redmine on ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-redmine-on-ubuntu-22-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 22.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\/1840","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=1840"}],"version-history":[{"count":8,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1840\/revisions"}],"predecessor-version":[{"id":1923,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1840\/revisions\/1923"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1915"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}