zoukankan      html  css  js  c++  java
  • TestLink 使用XAMPP安装

    最近由于新项目需要,建立一个TestLink来管理测试。主要用来对测试用例的管理,多人协作。TestLink的安装和配置都比较简单,但是也有一些小坑需要注意。

    • 官网下载XAMPP。这是TestLink需要的运行环境。如果机器没有安装JDK,需要先安装最新JDK。XAMPP建议不要选择最新的版本,会出现后面安装中MySQL不兼容的问题(应该是TestLink的PHP和XAMPP里面的MYSQL不兼容。选择5.6的最近版本比较好。Download XAMPP, version 5.6.XXX. Install

        URL: https://www.apachefriends.org/zh_cn/index.html

     

    • 配置XAMPP。Configure XAMPP for Testlink.

        配置Apache的端口,选一个不常用的端口。Config Apache.Config->httpd.conf.

        Listen 80 => Listen 8083

     

      ServerName localhost:80 => ServerName localhost:8083 

      Save and Close.

    • 把MYSQL加入到系统环境变量里。Add XAMPP mysql to system environment variables.

        The bin path, add it to environment variables.

    • 启动 Apache, MySQL. Start Apache, MySQL, Tomcat.

     

    • 下载安装TestLink. 直接解压到XAMPP安装目录的htdocs下面。改下testlink名字,去掉版本信息。 Download TestLink and exact to xampp subfolder htdocs.

        Download URL: http://www.testlink.org/

     

    • 配置MySQL, 为testlink创建需要的数据库。Configure MYSQL and create testlink database.
      • 建立ROOT用户。Configure root user in Mysql.

          CMD: change directory to bin folder.

          Run command:

     

      •  Set password for root user in phpMyAdmin.

           D:xamppphpMyAdmin

            File: config.inc.php

     

            Edit.

            Set: $cfg['Servers'][$i]['auth_type'] = 'cookie';

            $cfg['Servers'][$i]['password'] = 'password123';

     

     

    • Create testlink database.

    Shell.

     

    Command

    mysql -u root

    Use mysql;

    Create database testlink;

    Use testlink

     

    1. Check from phpMyAdmin.

     

    1. Add user for testlink DB.

    Privileges->Add user account. Go.

     

    1. Try installation. Browser visit: http://localhost:8083/testlink

     

    1. Agree continue.

     

    1. Several issues.

     

    1. Update configure file.

    D:xamppphpphp.ini

    Maximum Session execution Time:

     

    LDAP:

    ;extension=php_ldap.dll

    Remove”;” on the line.

     

    1. Ignore the error for the idle time and the Postgres Database error, because here I use database Mysql not Postgres DB.
    2. Restart services and close browser and try installation again. OK, continue.

     

    1. Database setting.

     

    1. Process TestLink Setups. Installation successfully.

     

    1. Great!!

     

  • 相关阅读:
    win10下python环境变量设置
    c++ primer第15章这几个例子中的构造函数形式不太理解
    ++与*
    C++符号优先级
    56-Remove Linked List Elements
    55. Binary Tree Preorder Traversal
    54. Flatten Binary Tree to Linked List
    野指针--内存泄漏--缓存区溢出--栈溢出
    数组指针和指针数组的区别
    53-Linked List Cycle II
  • 原文地址:https://www.cnblogs.com/herbert/p/13713652.html
Copyright © 2011-2022 走看看