Redmine安装篇
接续上次建立好容器并安装常用的套件后,我们紧接着来安装Redmine吧
【步骤1】:下载Redmine档案到tmp资料夹
cd /tmp
wget https://redmine.org/releases/redmine-6.0.3.tar.gz
【步骤2】:解压缩Redmine到opt资料夹内
cd /opt
tar -xvzf /tmp/redmine-6.0.3.tar.gz
【步骤3】:建立符号连结(symbolic link)
ln -s redmine-6.0.3 redmine
【步骤4】:将www-data改变为/opt/redmine底下的拥有者。通常这么做是因为网页伺服器 (如 Apache 或 Nginx) 预设在 Ubuntu/Debian 系统中使用 www-data 这个使用者和群组来读写档案,确保 web 应用程式有正确的读写权限
chown -R www-data:www-data /opt/redmine
【步骤5】:复制database范例档
cd /opt/redmine/config
cp database.yml.example database.yml
【步骤6】:调整DB连线资讯,设定档很贴心地将所有连线方式都附在里面,将预设MySQL连线方式全部注解后,打开Sql server注解,并输入对应的连线资讯(指令执行后,输入"a"切换到 插入模式 (Insert mode),才能对文件内的资料作调整,调整后按下"esc",输入":wq"储存离开)
vim database.yml
a
咚咚咚(输入)
esc(按键)
:wq
【步骤7】:复制Redmine范例档,回到redmine资料夹
cp configuration.yml.example configuration.yml
cd ..
【步骤8】:安装bundler 工具
gem install bundler
套件简易说明:● bundler:用于管理专案所需的 gem 依赖关系,并确保整个应用程式使用一致的 gem 版本。
【步骤9】:设定bundle 本地端 (local) 组态,指定在安装 gem 时要 跳过(不安装)development 与 test 这两个群组里的 gem
bundle config set --local without \'development test\'
【步骤10】:根据 Gemfile(和 Gemfile.lock)下载并安装此专案所需的所有 gem(须在含有 Gemfile 的专案目录里运行)
bundle install
【步骤11】:执行安装时出现tiny_tds、 psych (5.2.3)、tiny_tds (2.1.7)错误,则安装缺少的套件后再次执行bundle install即可。
gem install tiny_tds #tiny_tds
apt-get install libyaml-dev #psych (5.2.3)
apt-get install freetds-dev #tiny_tds (2.1.7)
【步骤12】:产生一个随机密钥,Rails 会使用该密钥对储存会话资料的 cookie 进行编码,从而防止其被窜改。
bundle exec rake generate_secret_token
【步骤13】:设定Rails 以「生产环境 (production)」的设定来执行,并载入 Redmine 的「预设资料」,包含预设的专案分类、工作流程、角色、追踪器、工作状态、系统设定等。
RAILS_ENV=production bundle exec rake db:migrate
RAILS_ENV=production bundle exec rake redmine:load_default_data REDMINE_LANG=zh-TW
指令简易说明● rake db:migrate:执行 Rails 的资料库迁移 (migrations) 工作;它会检查所有尚未执行的 migration 档,并依序更新资料库结构,使之符合最新的应用程式需求。
【步骤14】:停用(disable)指定的虚拟主机 (Virtual Host) 设定档
a2dissite 000-default.conf
【步骤15】:新增redmine.conf各项参数
vim /etc/apache2/sites-enabled/redmine.conf
<VirtualHost *:80>
ServerName redmine.example.com
RailsEnv production
DocumentRoot /opt/redmine/public
PassengerStickySessions on
PassengerFriendlyErrorPages on
<Directory "/opt/redmine/public">
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/redmine_error.log
CustomLog ${APACHE_LOG_DIR}/redmine_access.log combined
</VirtualHost>
【步骤16】:执行Redmine,并在电脑上执行http://127.0.0.1:8080/,出现redmine代表架设成功
/etc/init.d/apache2 start
-
登入Redmine确认功能(预设帐密admin/admin),第一次登入会要求改密码,套用后出现Internal Error错误
-
开启cmd连接至redmine终端机上,实时显示log
docker exec -i -t <containerID> bash
tail -f /var/log/apache2/error.log
- 错误讯息为没有D3B资料夹的权限,将此次安装目录下的Redmine使用者都赋予它适当的读写权限后宠起服务即可
chown -R www-data:www-data /opt
/etc/init.d/apache2 restart
此篇指令
cd /tmp
wget https://redmine.org/releases/redmine-6.0.3.tar.gz
cd /opt
tar -xvzf /tmp/redmine-6.0.3.tar.gz
ln -s redmine-6.0.3 redmine
chown -R www-data:www-data /opt/redmine
cd /opt/redmine/config
cp database.yml.example database.yml
vim database.yml
cp configuration.yml.example configuration.yml
cd ..
gem install bundler
bundle config set --local without \'development test\'
bundle install
bundle exec rake generate_secret_token
RAILS_ENV=production bundle exec rake db:migrate
RAILS_ENV=production bundle exec rake redmine:load_default_data REDMINE_LANG=zh-TW
a2dissite 000-default.conf
vim /etc/apache2/sites-enabled/redmine.conf
/etc/init.d/apache2 start
参考资料:https://blog.longwin.com.tw/2025/01/linux-ubuntu-redmine-install-docker-2025/amp/https://redmine.dev.org.tw/projects/redmine/wiki/redmineinstallhttps://www.redmine.org/projects/redmine/wiki/Downloadhttps://github.com/rails-sqlserver/tiny_tds#using-miniportile