参考文档:https://docs.bitnami.com/installer/faq/linux-faq/
1、下载地址
https://bitnami.com/stack/redmine-plus-agile/installer
2、安装
根据脚本提示一步步安装并运行
$chmod755redmineplusagile-VERSION-linux.run
$./redmineplusagile-VERSION-linux.run
3、运行管理器
Bitnami native installers include a graphical tool to manage services. This tool is namedmanager-linux-x64.runon Linux and is located in the installation directory.
$./manager-linux-x64.run
4、添加开机启动
RedHat-Like Distributions (Red Hat,Fedora Core,CentOS,Suse,…)
If the stack was installed as therootuser,copy theinstalldir/ctlscript.shscript to the/etc/init.ddirectory. It's advisable to rename this script to something more specific,such asbitname-APPNAME. Use the following command:
Note: Only use sudo if the stack was installed as root
sudocpinstalldir/ctlscript.sh/etc/init.d/redmineplusagile
If the stack was installed as a different user,create the script below at/etc/init.d/redmineplusagile,replacing USERNAME with the name of the user account that the stack was installed under:
#!/bin/bash
suUSERNAME-c"installdir/ctlscript.sh$@"
Add or modify the following lines at the beginning of the/etc/init.d/redmineplusagilescript.
#!/bin/sh
#
#chkconfig:23458030
#description:redmineplusagileservices
This will execute the script in runlevels 2,3,4 and 5,with priority 80 to start and 30 to stop.
Install the script as a service.
sudochkconfig--addredmineplusagile
Reboot your system and the servers should start automatically.