-
CentOS에 TestLink 설치Software Test/TestCase 2017. 7. 10. 15:46반응형
CentOS 6.2에 TestLink 설치
1. package 설치
yum install mysql-server php php-mysql php-gd php-ldap 2. php.ini 수정 (/etc/php.ini)
session.gc_maxlifetime = 2700
session.gc_maxlifetime=24003. httpd와 mysqld start
chkconfig httpd on
chkconfig mysqld on
service httpd start
service mysqld start4. mysql root의 password 설정
mysqladmin -u root password INPUT_PASSWORD 5. iptables 설정 (80 port 설정이 안되어 있을 경우 아래 구문 추가)
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT 5-1. 5를 설정했을 경우 iptables 재실행
service iptables restart 6. Download TestLink
http://sourceforge.net/projects/testlink 7. TestLink 설치
7-1 download된 testlink를 /var/www/html 로 옮김
cp testlink-1.9.3.tar.gz /var/www/html 7-2 압축 해제
tar zxvf testlink-1.9.3.tar.gz
mv testlink-1.9.3 testlink7-3 권한변경
chmod -R 755 testlink
chmod -R 777 testlink/gui/templates_c
chown -R apache:apache testlink8. TestLink Web 접속 및 설정
8.1 Web 접속
http://IP/testlink 8.2 "New installation" click
8.3 License agree
8.4 치명적인 오류 여부 확인 (없는 경우 진행)
8.5 DB 설정
Database admin password 입력
TestLink DB password 입력8.6 설정 완료
9. 접속
Login : admin
Password : admin반응형'Software Test > TestCase' 카테고리의 다른 글
[TestLink] logo 변경 (custimize) (0) 2017.12.14 CentOS - TestLink 시간 수정 (0) 2017.10.18