当前位置:网站首页>A common defect management tool - Zen, which teaches you from installation to using the handle

A common defect management tool - Zen, which teaches you from installation to using the handle

2022-06-24 14:25:00 Software testing Fairy

I have been thinking about writing something recently , Can continue to help you , The project team changes management tools , from Pingcode Change to Zen , I wrote on this topic . On the one hand, it can summarize the author's experience , On the other hand, I hope I can help you .

In the few open source project management software , Zen is one of the popular defect management systems .

The predecessor of Zen is Bugfree, Later, two teams were divided because the project teams had different goals , One team continues to maintain Bugfree, Another team has developed a new project management tool, Zen , Now? Bugfree Upgrades and maintenance are no longer available .

Quote the introduction on the official website , Zen project management software is a domestic open source project management software , Focus on R & D project management , Built in requirements management 、 task management 、Bug management 、 Defect management 、 Use case management 、 Plan to release and other functions , The whole life cycle management of software is realized .

Fully support the agile project model 、 Waterfall project model 、 Kanban model and built-in project set 、 product 、 Project and implement four management frameworks and support CMMI Implementation of standards .

Requirements can be subdivided 、 Mission 、 Defects and use cases , It can completely cover the core processes of R & D projects , Software lifecycle management can be completed . It's based on ZPL Agreement release , Open source 、 Rich plug-ins .

Installation of Zen

Download the open source version on the official website of Zen to use , I downloaded is 16.4 edition .

Select the installation package as required , I downloaded is Windows One click installation package , Convenient and practical . After downloading, unzip it to the root directory , Remember that it must be the root directory , from xampp In the installation directory, you can see that the installation contains MySQL、php and Apache.

stay xampp Under the folder , double-click start Applications , Open the Zen integrated running environment panel , That is to say xampp Integrated runtime environment .

In the Zen integrated running environment , You can see the integrated php edition 、Apache edition 、MySQL edition 、 Zen version . Check enable Apache User access authentication , User access verification will pop up when users access in the LAN , You need to enter the provided account and password to access , This is also designed for access security . You can also choose not to enable , All users can directly access the login page .

Click on “ change ”, The configure access verification account window pops up , Here, you can freely modify the user's account and password to access the authentication window .

Click on “ Copy password ” It can directly copy the account and password to the clipboard , It is convenient to directly copy this long string of passwords when accessing Zen .

Click... In the Zen operation environment “ Visit Zen ”, Will open the Zen address http://127.0.0.1/index.php, Click on “ZenTao” You can jump to the Zen user login interface .

The default user name and password on the login page are admin/123456. Fill in the user name 、 password , Log in to the Zen project management system .

After logging into the system , Click... On the navigation bar in the upper right corner A Icon , Open the change password page , The login password can be modified .

Click the menu on the left to find “ backstage ”, find “ Security ”, Here are the password settings .

Open the browser , visit http://127.0.0.1/adminer/, Log in to the Zen database page .

The user name of the database 、 Where is the password . open \xampp\zentao\config The folder my.php file , See the following database configuration code :

< php

$config->installed = true;

$config->debug = false;

$config->requestType = 'PATH_INFO';

$config->db->host = '127.0.0.1';

$config->db->port = '3306';

$config->db->user = 'root';

$config->db->prefix = 'zt_';

$config->webRoot = getWebRoot();

$config->db->name = 'zentao';

$config->db->password = '*******';

$config->default->lang = 'zh-cn';

Above password Medium * No. represents the database password when everyone builds the Zen path . from my.php Extract in file name and password, Fill in the Zen database access page , You can log in to view the data table information .

Last :

You can go to my personal number :atstudy-js, You can get one for free 10G Software Test Engineer interview classic documents . And the corresponding video learning tutorial is free to share ! It includes basic knowledge 、Linux necessary 、Mysql database 、 Caught tools 、 Interface testing tool 、 Test advanced -Python Programming 、Web automated testing 、APP automated testing 、 Interface automation testing 、 Testing advanced continuous integration 、 Test architecture development test framework 、 Performance test, etc .

These test data , For doing 【 software test 】 For our friends, it should be the most comprehensive and complete war preparation warehouse , This warehouse also accompanied me through the most difficult journey , I hope it can help you !

原网站

版权声明
本文为[Software testing Fairy]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206241259240568.html