Tag Archives: SCM/ITS

redmine 의 roadmap 에 담당자 정보와 상태 정보가 보이도록 수정

  redmine의 roadmap 으로 sprint review 를 하는데 담당자 정보가 안보여서 자꾸 헤메서 redmine 의 roadmap 에 담당자 정보 보이도록 수정했다. vi {redmine}/app/views/versions/index.html.erb …     <table class=”list related-issues”>     <caption><%= l(:label_related_issues) %></caption>     <% issues.each do |issue| … Continue reading

Posted in Util/Tools | Tagged , , , , | Leave a comment

redmine 실행시 에러( warning: Insecure world writable dir /path in PATH, mode 040777 )

  redmine 구동을 위해 ctlscript.sh start 시 mysql 이 뜨면서 아래와 같은 에러 발생. warning: Insecure world writable dir /path in PATH, mode 040777 /path에 권한 변경 ]# chmod go-w /path 그리고 방화벽 허용 ]# iptables -F ]# iptables -A … Continue reading

Posted in SCM/ITS | Tagged , , , | Leave a comment

redmine DB 백업, 파일 백업 스크립트

  redmine DB 백업, 파일 백업 스크립트 #!/bin/bash DATETIME=$(date +”%Y%m%d%H%M”) # DB backup mysqldump -u root -p******* redmine_dbname | gzip > /redmine_backup_dir/$DATETIME.sql.gz # file backup rsync -avz –delete /redmine_install_dir/files /redmine_backup_dir/ # delete old files find /redmine_backup_dir/ -name *.gz -mtime +90 … Continue reading

Posted in SCM/ITS, System | Tagged , , , , , | Leave a comment