博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TestLink安装手册
阅读量:5274 次
发布时间:2019-06-14

本文共 3197 字,大约阅读时间需要 10 分钟。

环境准备

 

  1. 系统CentOS Linux release 7.3.1611 (Core)
  2. 搭建LAMP所需的集成包 xampp-linux-x64-7.2.0-0-installer.run
  3. TestLink安装包 testlink-1.9.16.tar.gz 

安装XAMPP

  1. 检查系统中是否有LAMP,分别检查这四个包,如果有则一个个删除
  2. 安装XAMMP,下载后以root身份进入所在目录:
chmod +x xampp-linux-x64-7.2.0-0-installer.run ./xampp-linux-x64-7.2.0-0-installer.run #执行安装

安装过程:

[root@localhost src]# ./xampp-linux-x64-7.2.0-0-installer.run ----------------------------------------------------------------------------Welcome to the XAMPP Setup Wizard.----------------------------------------------------------------------------Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.XAMPP Core Files : Y (Cannot be edited)XAMPP Developer Files [Y/n] :Y  Is the selection above correct? [Y/n]: Y      ----------------------------------------------------------------------------Installation DirectoryXAMPP will be installed to /opt/lamppPress [Enter] to continue:----------------------------------------------------------------------------Setup is now ready to begin installing XAMPP on your computer.Do you want to continue? [Y/n]: Y----------------------------------------------------------------------------Please wait while Setup installs XAMPP on your computer. Installing 0% ______________ 50% ______________ 100% #########################################----------------------------------------------------------------------------Setup has finished installing XAMPP on your computer.

启动:

[root@localhost src]# /opt/lampp/lampp startStarting XAMPP for Linux 7.2.0-0...XAMPP: Starting Apache...already running.XAMPP: Starting MySQL...ok.XAMPP: Starting ProFTPD...ok.

创建数据库:

cd /opt/lampp/bin/./mysqladmin -uroot password 123456./mysql -uroot -p123456MariaDB [(none)]> create database testlink;MariaDB [(none)]> grant all privileges on testlink.* to tladmin@"localhost" identified by "123456";

解压testlink,并授权:

tar -xf testlink-1.9.16.tar.gz -C /opt/lampp/htdocs/mv /opt/lampp/htdocs/testlink-1.9.16/ /opt/lampp/htdocs/testlink#授权cd /opt/lampp/htdocs/testlink/chmod 777 gui/templates_cchmod 777 logschmod 777 upload_area

修改配置参数:

vim /opt/lampp/htdocs/testlink/config_inc.php 将$tlCfg->config_check_warning_mode = FILE';改成 $tlCfg->config_check_warning_mode='SILENT';将$tlCfg->log_path= '/var/testlink/logs/';改成 $tlCfg->log_path='/opt/lampp/htdocs/testlink/logs/';将$g_repositoryPath = '/var/testlink/upload_area/';改成$g_repositoryPath='/opt/lampp/htdocs/testlink/upload_area/';将$tlCfg->default_language = 'en_GB';改成$tlCfg->default_language= 'zh_CN';#其他配置说明$tlCfg->import_file_max_size_bytes,后面的数据'2097152'改为期望的数据值。(建议修改为2M,即2097152)$tlCfg->import_max_row='10000'是导入文件一行的大小限制。$tlCfg->user_self_signup,将其后TRUE改为FALSE,在登录界面取消了NewUser链接。

修改其他参数:

错误提示:Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /opt/lampp/htdocs/testlink/third_party/phpmailer/PHPMailerAutoload.php on line 45修改参数:把 function __autoload($classname)修改为function spl_autoload_register($classname)

打开浏览器,进入新手引导: http://192.168.182.147/testlink/

 

添加配置文件:

[root@localhost ~]# vim /opt/lampp/htdocs/testlink/config_db.inc.php

进入登录页面: 默认用户名和密码是admin

更改语言

 

参考文档:

 

转载于:https://www.cnblogs.com/luchuangao/p/8306152.html

你可能感兴趣的文章
Leetcode Balanced Binary Tree
查看>>
[JS]递归对象或数组
查看>>
linux sed命令
查看>>
湖南多校对抗赛(2015.03.28) H SG Value
查看>>
hdu1255扫描线计算覆盖两次面积
查看>>
hdu1565 用搜索代替枚举找可能状态或者轮廓线解(较优),参考poj2411
查看>>
程序存储问题
查看>>
优雅地书写回调——Promise
查看>>
AX 2009 Grid控件下多选行
查看>>
PHP的配置
查看>>
Struts框架----进度1
查看>>
Round B APAC Test 2017
查看>>
MySQL 字符编码问题详细解释
查看>>
Ubuntu下面安装eclipse for c++
查看>>
Windows 2003全面优化
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
整理推荐的CSS属性书写顺序
查看>>