Description: redmine is a flexible project management system. it is an open-source project developed based on rubyonrails framework. it can be used across platforms and supports multiple databases. For details, refer to the official website: http://www.redmine.org/system :centos6.5the required software: Redmine. The tutorial is to install red on a new system.
Description: redmine is a flexible project management system. it is an open-source project developed based on the ruby on rails framework. it can be used across platforms and supports multiple databases.
Detailed rules, please refer to the official website: http://www.redmine.org/
System: CentOS 6.5
Required software: redmine
The following tutorial is to install the redmine program on a brand new system.
First, install the following dependency
1 |
[root@ihuilian ~] #yum -y install zip unzip libyaml-devel zlib-devel curl-devel openssl-devel httpd-devel apr-devel apr-util-devel gcc ruby-devel gcc-c++ make postgresql-devel ImageMagick-devel sqlite-devel perl-LDAP mod_perl perl-Digest-SHA |
Then, install the database software.
1 |
[root@ihuilian ~] #yum install -y mysql mysql-server |
Start the database and set it to automatically start upon startup
12 |
[root@ihuilian ~] # chkconfig mysqld on [root@ihuilian ~] # service mysqld start |
Set MySQL database related options
12345678910111213141516171819202122232425262728293031 |