ubuntu 10.4 redmine install

reference:
 
http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_in_Ubuntu
http://www.linuxidc.com/Linux/2010-07/27076.htm
 http://redmine.ossxp.com/redmine/projects/redmine/wiki/%E5%8F%91%E9%80%81%E9%82%AE%E4%BB%B6%E9%85%8D%E7%BD%AE
 
1.
$ sudo apt-get update
$ sudo apt-get install phpmyadmin$ sudo apt-get install redmine redmine-mysql
중간 에 기본 데 이 터 를 설치 하고 yes 를 선택 한 다음 데이터베이스 와 관련 된 설정 을 해 야 하 는 지 알려 줍 니 다.
/*
database: redmine_defaulthost: localhostusername: redminepassword: redmine
*/
 
2.
기본 생 성 된 redmine 삭제default 데이터베이스 에 있 습 니 다.그렇지 않 으 면 중국어 코드 에 문제 가 생 길 수 있 습 니 다.       mysql -u root -p my_password       mysql> drop database redmine_default;       mysql> exit;phpmyadmin 을 열 고 새 redmine기본 데이터베이스        $ sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin        http://localhost/phpmyadmin 
 
 You should be presented with the phpMyAdmin login screen.Type in “root” and the MySQL “password” you created when installing MySQL.
 
 새 redminedefault 데이터베이스,uft 8 선택unicode_ci 데이터베이스 문자 집합,
 
 
ubuntu 10.4 redmine install_第1张图片
 
The installation process should prompt you for all the interesting details.
Redmine will now be installed in /usr/share/redmine and /etc/redmine
The installation process should prompt you for all the interesting details.
Redmine will now be installed in /usr/share/redmine and /etc/redmine
 
 
 
 
3.
 
$  sudo dpkg-reconfigure redmine
 
데이터베이스 기본 언어 선택  en
Configuration¶
Symlink /usr/share/redmine/public to your desired web-accessible location. E.g.:
$ sudo ln -s /usr/share/redmine/public /var/www/redmine
By default, passenger runs as 'nobody', so you'll need to fix that. In /etc/apache2/mods-available/passenger.conf , add:
PassengerDefaultUser www-data
You'll also need to configure the /var/www/redmine location in /etc/apache2/sites-available/default by adding:
<Directory /var/www/redmine>
    RailsBaseURI /redmine
    PassengerResolveSymlinksInDocumentRoot on
</Directory>

 
Enable passenger:$ sudo a2enmod passenger
 
Restart apache2 :
$  service apache2 restart
 
 and you should be able to access Redmine at : http://localhost/redmine   
 
Log in:
1.Use default administrator account to log in:Login : adminPassword : admin
 
 
  중국어 환경 에서 redmine 의 일부 글꼴 은 매우 작 아서 잘 보이 지 않 습 니 다.이것 은 외국 소프트웨어 에서 자주 나타 나 는 bug 입 니 다.이것 은 중국어 글꼴 이 1em 이하 에서 잘 보이 지 않 기 때 문 입 니 다.우 리 는 해당 css 파일 만 수정 하면 됩 니 다. /var/www/redmine/stylesheets/application.css 를 열 고 font-size:0.9em 과 font-size:0.8em 을 찾 으 면 모두 font-size:1em 으로 교체 하면 완벽 한 효 과 를 얻 을 수 있 습 니 다.

좋은 웹페이지 즐겨찾기