Redmine
De GioWiki.
Gio (discuter | contributions) (Page créée avec « == Installation == apt-get install ruby rdoc irb libyaml-ruby ruby1.8-dev libzlib-ruby ri libopenssl-ruby1.8 On installe RubyGems cd /root/ wget 'http://production.cf.rub... ») |
|||
Ligne 11 : | Ligne 11 : | ||
gem install rails -v 2.3.5 | gem install rails -v 2.3.5 | ||
+ | gem install -v=0.4.2 i18n | ||
apt-get install libmysqlclient15-dev | apt-get install libmysqlclient15-dev | ||
Ligne 16 : | Ligne 17 : | ||
On créé le user redmine et on l'associe au groupe d'apache (-g 33) ce qui sera nécessaire pour pouvoir accéder au serveur web : | On créé le user redmine et on l'associe au groupe d'apache (-g 33) ce qui sera nécessaire pour pouvoir accéder au serveur web : | ||
- | useradd -g 33 -s /bin/bash redmine | + | mkdir /var/www/redmine |
+ | useradd -d /var/www/redmine -g 33 -s /bin/bash redmine | ||
passwd redmine | passwd redmine | ||
+ | chown redmine:www-data | ||
apt-get install imagemagick libmagick9-dev librmagick-ruby1.8 | apt-get install imagemagick libmagick9-dev librmagick-ruby1.8 | ||
gem install rmagick ---ERROR | gem install rmagick ---ERROR | ||
+ | |||
+ | |||
+ | ===Création de la base de donnée=== | ||
+ | create database redmine character set utf8; | ||
+ | create user 'redmine'@'localhost' identified by 'my_password'; | ||
+ | grant all privileges on redmine.* to 'redmine'@'localhost'; | ||
+ | |||
+ | |||
+ | su - redmine | ||
+ | svn co http://redmine.rubyforge.org/svn/branches/1.1-stable redmine-1.1 | ||
+ | mv redmine-1.1 1.1 | ||
+ | cd 1.1/config/ | ||
+ | cp database.yml.example database.yml | ||
+ | |||
+ | Puis éditer le fichier avec les informations de connexion à la database. | ||
+ | |||
+ | 4. Generate a session store secret. | ||
+ | rake generate_session_store | ||
+ | |||
+ | 5. Create the database structure, by running the following command under the application root directory: | ||
+ | RAILS_ENV=production rake db:migrate | ||
+ | It will create tables and an administrator account. | ||
+ | |||
+ | 6. Insert default configuration data in database, by running the following command: | ||
+ | RAILS_ENV=production rake redmine:load_default_data | ||
+ | |||
+ | |||
Plus d'informations : http://www.admincafe.re/forums/showthread.php?t=250 - http://www.redmine.org/projects/redmine/wiki/RedmineInstall | Plus d'informations : http://www.admincafe.re/forums/showthread.php?t=250 - http://www.redmine.org/projects/redmine/wiki/RedmineInstall |