“Ubuntu安装Bitnami redmine”的版本间的差异
第1行: | 第1行: | ||
[[category:IS]] | [[category:IS]] | ||
− | Ubuntu16安装Redmine Bitnami 4.1.1.4 | + | =Ubuntu16安装Redmine Bitnami 4.1.1.4= |
* bitnami_redmine_4.1.1-4*.run安装包运行: | * bitnami_redmine_4.1.1-4*.run安装包运行: | ||
# chmod -x bitnami_redmine_4.1.1-4*.run(赋予run文件完全权限) | # chmod -x bitnami_redmine_4.1.1-4*.run(赋予run文件完全权限) | ||
第9行: | 第9行: | ||
# ./ manager-linux-x64.run(完整路径运行manager-linux-x64.run管理器) | # ./ manager-linux-x64.run(完整路径运行manager-linux-x64.run管理器) | ||
− | + | =使用use_redmine安装plugins(基于bundle)= | |
# 由于默认镜像国内无法访问,所以需要切换gem源。先移除源,然后添加国内的源:(移除)https://gems.ruby-china.com,(添加)http://gems.ruby-china.com | # 由于默认镜像国内无法访问,所以需要切换gem源。先移除源,然后添加国内的源:(移除)https://gems.ruby-china.com,(添加)http://gems.ruby-china.com | ||
## gem sources -l | ## gem sources -l | ||
## gem sources --remove https://rubygems.org/ -add http://gems.ruby-china.com | ## gem sources --remove https://rubygems.org/ -add http://gems.ruby-china.com | ||
## gem sources -l *** CURRENT SOURCES *** http://gems.ruby-china.com | ## gem sources -l *** CURRENT SOURCES *** http://gems.ruby-china.com | ||
− | # | + | # 或者: |
+ | #* bundle config mirror.https//rubygems.org http://gems.ruby-china.org --把原来识别的https://rubygems.org镜像成天朝内网http://gems.ruby-china.org;这样我们的bundle install命令就应该可以了。 | ||
# 插件安装命令: | # 插件安装命令: | ||
## plugins解压复制到\Bitnami\redmine-3.0.2-0\apps\redmine\htdocs\plugins目录下; | ## plugins解压复制到\Bitnami\redmine-3.0.2-0\apps\redmine\htdocs\plugins目录下; | ||
## 启动使用use_redmine: | ## 启动使用use_redmine: | ||
− | ## | + | ##* Windows:\Bitnami\redmine-3.4.2-0\use_redmine.bat |
− | ## | + | ##* Linux:/(路径)/redmine-2.5.2-2/use_redmine |
## 进入到plugins目录,输入:bundle install --without development test | ## 进入到plugins目录,输入:bundle install --without development test | ||
## 输入:(如下三种尝试) | ## 输入:(如下三种尝试) | ||
− | ## | + | ##* --bundle exec rake redmine:plugins NAME=xxxxxxxx RAILS_ENV=production |
− | ## | + | ##* --bundle exec rake redmine:plugins:migrate RAILS_ENV=production |
− | ## | + | ##* --rake redmine:plugins:migrate RAILS_ENV=production |
# Plugins uninstall: | # Plugins uninstall: | ||
## 将目录切换到\Bitnami\redmine-3.3.0-1\apps\redmine\htdocs\plugins下。 | ## 将目录切换到\Bitnami\redmine-3.3.0-1\apps\redmine\htdocs\plugins下。 |
2020年9月22日 (二) 16:12的版本
Ubuntu16安装Redmine Bitnami 4.1.1.4
- bitnami_redmine_4.1.1-4*.run安装包运行:
- chmod -x bitnami_redmine_4.1.1-4*.run(赋予run文件完全权限)
- ./bitnami_redmine_4.1.1-4*.run(完整路径运行run文件)
- Linux系统重启后的manager-linux-x64.run重启
- cd opt/redmine4.1.1-4/(进入安装目录)
- ./ manager-linux-x64.run(完整路径运行manager-linux-x64.run管理器)
使用use_redmine安装plugins(基于bundle)
- 由于默认镜像国内无法访问,所以需要切换gem源。先移除源,然后添加国内的源:(移除)https://gems.ruby-china.com,(添加)http://gems.ruby-china.com
- gem sources -l
- gem sources --remove https://rubygems.org/ -add http://gems.ruby-china.com
- gem sources -l *** CURRENT SOURCES *** http://gems.ruby-china.com
- 或者:
- bundle config mirror.https//rubygems.org http://gems.ruby-china.org --把原来识别的https://rubygems.org镜像成天朝内网http://gems.ruby-china.org;这样我们的bundle install命令就应该可以了。
- 插件安装命令:
- plugins解压复制到\Bitnami\redmine-3.0.2-0\apps\redmine\htdocs\plugins目录下;
- 启动使用use_redmine:
- Windows:\Bitnami\redmine-3.4.2-0\use_redmine.bat
- Linux:/(路径)/redmine-2.5.2-2/use_redmine
- 进入到plugins目录,输入:bundle install --without development test
- 输入:(如下三种尝试)
- --bundle exec rake redmine:plugins NAME=xxxxxxxx RAILS_ENV=production
- --bundle exec rake redmine:plugins:migrate RAILS_ENV=production
- --rake redmine:plugins:migrate RAILS_ENV=production
- Plugins uninstall:
- 将目录切换到\Bitnami\redmine-3.3.0-1\apps\redmine\htdocs\plugins下。
- 然后在执行\Bitnami\redmine-3.3.0-1\apps\redmine\htdocs\plugins
- bundle exec rake redmine:plugins:migrate NAME=xxxxxxxxxx VERSION=0 RAILS_ENV=production。(注意migrate NAME后面的名字一定是插件的名字)
- 将\Bitnami\redmine-3.3.0-1\apps\redmine\htdocs\plugins下的对应插件文件移走。
- 重新启动Bitnami Redmine Stack服务即可。