2016年5月13日 星期五

Testlink 安裝流程 (Server:Ubuntu 14.04LTS)

一、部署testlink 相依環境

根據需要下載並安裝:
sudo apt-get install apache2 php5 mysql-server libapache2-mod-php5 php5-mysql php5-gd

配置apache2
sudo vi /etc/apache2/apache2.conf 
添加以下內容:
AddType application/x-httpd-php .php .htm .html
AddDefaultCharset UTF-8
ServerName 127.0.0.1


啟動apache2
sudo /etc/init.d/apache2 restart

啟動mysql server
sudo /etc/init.d/mysql restart

二、安裝testlink環境
通過sourceforge先下載好testlink

tar zxvf testlink-1.9.12.tar.gz
sudo mv testlink /var/www/
cd /var/www/html
sudo chown -R www-data:www-data testlink/
sudo mkdir /var/testlink/
sudo mkdir /var/testlink/logs
sudo mkdir /var/testlink/upload_area
sudo chown -R www-data:www-data /var/testlink/

三、執行testlink安裝精靈

http://localhost/testlink/install/
訪問testlink
http://localhost/testlink
使用預設帳號"admin"登錄,密碼為"admin",登錄後修改密碼。


四、刪除testlink安裝目錄
安全設置:刪除安裝目錄:sudo rm -rf /var/www/html/testlink/install/
修改admin密碼
sudo vim /var/www/testlink/config.inc.php
修改“user_self_signup”參數值為“FALSE”
修改“config_check_warning_mode”參數值為“SILENT”


 Ubuntu has a mechanism, that is, the installed network card (NIC) will be renamed to another name when the system is booted. Although there...