Redmine은 Ruby의 오픈 소스 프로젝트 관리 프레임 워크입니다

Redmine 무료 프로젝트 관리 소프트웨어

작업 및 활동 추적을위한 무료 프로젝트 계획 도구

문제 추적, 작업 및 지식 관리를위한 오픈 소스 프로젝트 관리 도구. GIT, SVN, CVS 및 Mercurial과의 원활한 통합을 지원합니다.

개요

Redmine은 작업 관리, 이슈 추적 및 리소스 관리를위한 무료 및 오픈 소스 프로젝트 관리 프레임 워크입니다. 사용자 정의 필드 기능으로 비즈니스 요구에 따라 확장하고 사용자 정의하는 것은 매우 간단합니다. Redmine 자체 호스팅 프로젝트 관리 도구 권한 관리 및 역할 관리 기능은 사용자 액세스를 유연하게 제어합니다. 오픈 소스 Redmine은 프로젝트, 팀 및 리소스를 관리 할 수있는 가볍고 사용하기 쉬운 최고의 웹 기반 프로젝트 관리 소프트웨어입니다. Gantt 차트 및 사용자 정의 보고서 기능은 프로젝트 계획 및 시각화를 추가로 지원합니다. Easy Redmine Gantt 차트 프로젝트 관리 대시 보드에서 드래그 앤 드롭을 사용하여 프로젝트를 계획하십시오. Redmine Gantt 플러그인의 이점은 작업, 간트 차트 이정표 및 프로젝트의 가장 쉬운 계획입니다. Redmine은 Ruby on Rails 기반 자체 호스팅 작업 관리 오픈 소스 도구입니다. 버그 추적 시스템 및 프로젝트 문제 추적기를 SVN, GIT, CVS, Mercurial 등과 같은 최고의 소스 제어 소프트웨어와 통합 할 수 있습니다. JIRA 및 최상의 프로젝트 협업 도구의 오픈 소스 대안입니다. 또한 지원 문서, 기술 정보 및 사용자 매뉴얼을 작성하기 위해 지식 및 문서 관리 기능을 제공합니다. 또한 팀이 토론 포럼 기능과 협력하는 데 도움이됩니다. 이메일 보안 알림 기능은 보안 설정의 중요한 이벤트에 대해 관리자에게 알립니다. 비밀번호, 할당 또는 제거 된 역할 등을 변경합니다. Redmine 오픈 소스 버그 추적 도구에는 팀이보다 생산성을 높일 수 있도록 모든 최신 기능이 장착되어 있습니다.

시스템 요구 사항

Redmine은 Ruby on Rails 및 MySQL / Postgres 기반 문제 추적, 시간 추적 및 온라인 프로젝트 추적 소프트웨어입니다. 다음 소프트웨어가 필요합니다.

  • 루비 2.3+
  • 레일 5.2+
  • mysql 5.5+ / postgres 9.2 + / sqlite 3

특징

Redmine에는 최고 프로젝트 관리 소프트웨어에서 구상 할 수있는 모든 사전 기능이 있습니다. 프로젝트 관리 소프트웨어 주요 기능에는 포함됩니다

  • 여러 프로젝트 지원
  • 다중 하위 프로젝트 지원
  • 유연한 역할 기반 액세스 제어
  • 유연한 문제 추적 시스템
  • 간트 차트 및 캘린더
  • 시간 추적 기능
  • 맞춤형 필드
  • 뉴스, 문서 및 파일 관리
  • 프로젝트 위키 및 포럼 당
  • 저장소 브라우저 및 Diff Viewer
  • 피드 및 이메일 알림
  • 다중 LDAP 인증 지원
  • 사용자 자체 등록 지원
  • 다중 언어 지원
  • 여러 데이터베이스 지원

설치

GitHub를 사용한 설치

먼저 모든 종속성을 설치했는지 확인하십시오. 최신 Redmine PMS 프로젝트 관리 시스템 저장소를 문서 루트 폴더로 복제하십시오.

    git clone https://github.com/redmine/redmine

다음 명령으로 MySQL 데이터베이스를 만듭니다.

    CREATE DATABASE redmine CHARACTER SET utf8mb4;
    CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_password';
    GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost';

config/database.yml.example을 config/database.yml로 복사하고 “생산"환경에 대한 데이터베이스 설정을 구성하려면이 파일을 편집합니다. MySQL 데이터베이스 (기본 포트)의 예 :

    production:
      adapter: mysql2
      database: redmine
      host: localhost
      username: redmine
      password: "my_password"

Ruby 2.5 이하를 사용하는 경우 먼저 Bundler를 설치하십시오.

    gem install bundler

그런 다음 다음 명령을 사용하여 Redmine Free Agile Project Management 소프트웨어가 요구하는 모든 보석을 설치할 수 있습니다.

    bundle install --without development test

새로운 비밀 토큰을 생성하면 다시 시작한 후 모든 기존 세션이 무효화됩니다.

    bundle exec rake generate_secret_token

Application Root Directory에서 다음 명령을 실행하여 데이터베이스 구조를 만듭니다.

    RAILS_ENV=production bundle exec rake db:migrate

Windows 구문 :

    set RAILS_ENV=production
    bundle exec rake db:migrate

다음 명령을 실행하여 데이터베이스에 기본 구성 데이터를 삽입하십시오.

    RAILS_ENV=production bundle exec rake redmine:load_default_data

Redmine은로드해야 할 데이터 세트 언어를 제출합니다. 또한 명령을 작업에 의해 자동으로 조용히 선택할 값으로 명령을 실행하기 전에 Redmine \ _lang 환경 변수를 정의 할 수도 있습니다. 유엔 :

    RAILS_ENV=production REDMINE_LANG=fr bundle exec rake redmine:load_default_data

Windows :

    set RAILS_ENV=production
    set REDMINE_LANG=fr


    bundle exec rake redmine:load_default_data

애플리케이션을 실행하는 사용자 계정은 다음 하위 디렉토리에 대한 쓰기 권한이 있어야합니다. 파일 (첨부 파일 스토리지) 로그 (응용 프로그램 로그 파일 프로덕션) TMP 및 TMP/PDF (존재하지 않으면 해당 제작, PDF 문서를 다른 것 중에서 생성하는 데 사용됩니다. 사물) public/plugin \ _assets (플러그인 자산) (예 : Redmine 사용자 계정으로 응용 프로그램을 실행한다고 가정합니다.

    mkdir -p tmp tmp/pdf public/plugin_assets
    sudo chown -R redmine:redmine files log tmp public/plugin_assets
    sudo chmod -R 755 files log tmp public/plugin_assets

참고 :이 디렉토리에 파일이있는 경우 (예 : 백업에서 파일 복원)이 파일을 실행할 수 없는지 확인하십시오.

    sudo find files log tmp public/plugin_assets -type f -exec chmod -x {} +

Webrick 웹 서버를 실행하여 설치를 테스트하십시오.

    bundle exec rails server webrick -e production

Webrick이 시작되면 브라우저를 http : // localhost : 3000/로 가리 킵니다. 이제 응용 프로그램 환영 페이지를 볼 수 있습니다.

FAQs

What is Redmine?

Redmine is a very popular web based flexible project management and issue tracking system. It supports several database and allows users to manage multiple projects and associated subprojects. It is written using Ruby on Rails framework and includes features like project wikis and forums, time tracking and role-based access control.

Is Redmine open source?

Redmine is an open source and flexible project management tool. The source code of open source Redmine and free project tracking system is available at Github.

Is Redmine free?

Yes, Redmine is a free cross-platform, cross-database web-based project management and issue tracking tool. It is released under the terms of the GNU General Public License v2 (GPL).

Is Redmine better than Jira?

Redmine issue tracking tool is easier to use and faster to implement. Jira is more powerful and has a more visual workflow. Redmine is a flexible perfect project and task management tool for small size teams. Jira is more recommended for big companies or for high tech team members with agile skills.

Who uses redmine?

Redmine best open source task manager and top agile project management software is used by companies and teams with 10-50 employees or team members.

How do you close a project in redmine?

To close a project in redmine is an open source issue tracking tool, go to the project’s Overview > Close project. To reopen it again just click on ‘reopen’. Moreover, we have total three ways in Redmine self hosted issue tracker to manage a project’s status: delete, archive or close projects.

탐구하다

다음과 같은 오픈 소스 소프트웨어 프로젝트 관리 도구 링크가 관련이있을 수 있습니다.

-phabricator

-타이가

-OpenProject

-칸 보드

-110

-mycollab

-Sprintapp

-loomio

 한국인