一、安装mysql、apache、php
二、下载TestLink,下载地址:
三、安装前解压设置文件
1.解压 tar xzvf testlink-1.9.3
2.把testlink-1.9.3放到/var/www/下 mv testlink-1.9.3/ /var/www/
3.设置文件权限
cd /var/www/html/testlink
依次执行:
# chmod 777 gui/templates_c
# chmod 777 logs
# chmod 777 upload_area
四、自动安装testlink
1.在浏览器中输入,点击New Installation
2.然后根据提示一步一步执行
Database login 为 root 密码为数据库密码,其它为 testlink 的数据库登陆名和密码可以随便填写
Database login: root
Database password: 1111
TestLink DB login: root
TestLink DB password: 1111
五、如果需要发邮件还需要配置下SMTP
编辑testlink下的config.inc.php文件中的[SMTP]部分
root@ubuntu:/var/www/testlink# vim config.inc.php
/* [SMTP] */
/**
* @var string SMTP server name or IP address ("localhost" should work in the most cases)
* Configure using custom_config.inc.php
* @uses lib/functions/email_api.php
*/
$g_smtp_host = '公司smtp设置,一般设置为localhost就可以了'; # SMTP server MUST BE configured
# Configure using custom_config.inc.php
$g_tl_admin_email = 'testlink管理员的email地址,发邮件用这个邮箱'; # for problem/error notification
$g_from_email = '收到testlink发来的邮件,看到的发件人名称'; # email sender
$g_return_path_email = '收到testlink发来的邮件,收件人回复邮件到哪个邮箱';
阅读(3395) | 评论(0) | 转发(0) |