【ubuntu20.04】安装testlink
1. 官网
https://www.testlink.org/
2. 安装apache2
sudo apt-get install apache2
3. 安装mysql
https://www.cnblogs.com/fireblackman/p/15692363.html
4. 安装PHP相关
sudo apt-get install php sudo apt-get isntall libapache2-mod-php
5. 安装phpmyadmin
sudo apt-get install phpmyadmin
6. 配置apache2
sudo subl /etc/apache2/apache2.conf
AddType application/x-httpd-php .php .htm .html AddDefaultCharset UTF-8 ServerName localhost
7. 初始化安装
http://ip:port/testlink/install/index.php
接受
检查配置
# 终端运行命令 cd /var/www/html/ # 终端运行命令 sudo chown -R www-data:www-data testlink/
如果上图中出现找不到地址的错误提示,在终端进入 运行命令 sudo vim config.inc.php 按下图进行修改文件,保存文件后刷新
点击下一步
配置数据库
After successfull installation You will have the following login for TestLink Administrator:
login name: admin
password : admin
完成
8. 登录, admin/admin
参考链接:
https://blog.csdn.net/weixin_30399055/article/details/98706462
https://www.cnblogs.com/lcl0421/p/8028921.html