ubuntu 10.4 redmine install
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 데이터베이스 문자 집합,
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 으로 교체 하면 완벽 한 효 과 를 얻 을 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MySQL에서 JSON 인덱싱 - aarondfrancis사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 말하지만 완전히 정확하지는 않습니다. MySQL로 JSON 열을 인덱싱하는 것은 완전히 가능합니다! 사람들은 종종 MySQL로 JSON을 인덱싱할 수 없다고 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.