红联Linux门户
Linux帮助

ubuntu下redmine设置开机启动

发布时间:2016-06-01 09:53:26来源:linux网站作者:zzllabcd

在ubuntu下安装好redmine后,创建并打开文件 vi /etc/init.d/redmine 内容如下

#!/bin/sh
#
# description: Auto-starts redmine
# processname: redmine

cd /usr/local/share/software/redmine-2.5.1 && ruby script/rails server webrick -e production


修改文件权限, 添加执行权限

chmod 755 /etc/init.d/redmine


安装 sudo apt-get install sysv-rc-conf

执行sudo sysv-rc-conf  选中redmine 2, 3, 4, 5


本文永久更新地址:http://www.linuxdiyf.com/linux/21133.html