• CentOS6.5安装testlink1.9.14


    前提条件:准备一台CentOS6.5虚拟机,配置好IP,关闭iptables和selinux。

    这里提供上我的云盘软件,可以去这里下载:http://pan.baidu.com/s/1qXymele

    1.   首先安装Apache软件

         首先在系统上面查询一下是否已经安装了apache 软件:rpm -qa|grep httpd

         如果没有,使用yum安装:yum -y install httpd

         chkconfig    httpd  on

         service httpd start  启动软件

         http://127.0.0.1/

    2.   追加CentOS 6.5的epel及remi源

         rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm

         rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
         使用yum list命令查看可安装的包(Packege)。
         yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
     
    3.   yum源安装好了,下一步配置PHP5.6
         yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-gd php-ldap php-zip php-fileinfo php-cli php-curl php-mysql
     
    4.   用php命令查看版本
         php --version
         [root@localhost ~]# php --version
         PHP 5.6.16 (cli) (built: Nov 26 2015 08:01:30) 
         Copyright (c) 1997-2015 The PHP Group
         Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
         with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
         with Xdebug v2.3.3, Copyright (c) 2002-2015, by Derick Rethans
     
    5.   安装mysql
         rpm -qa|grep mysql
         如果没有安装,则使用yum源进行安装
         yum -y install mysql-server mysql-client
         启动mysql服务:/etc/init.d/mysqld start
         mysql -u root -p    初始密码为空
         进入设置mysql密码:set password for root@localhost=password('新密码');
         exit
         重新进入mysql时需要所设置的密码
     
    6.   安装phpMyAdmin
         去官网下载:phpMyAdmin-3.5.7-all-languages.tar
         gunzip phpMyAdmin-3.5.7-all-languages.tar.gz
         tar xvf phpMyAdmin-3.5.7-all-languages.tar
         mv phpMyAdmin-3.5.7-all-languages phpmyadmin
         把phpmyadmin包放置在/var/www/html目录下
         进入到/var/www/html/phpmyadmin目录下,cp config.sample.inc.php config.inc.php
         chmod 777 /var/www/html
         重启服务:service httpd restart
         在浏览器中测试phpmyadmin安装是否成功:
         http://127.0.0.1/phpmyadmin    出现phpmyadmin的登录页面即成功。
     
    7.   下载testlink1.9.14安装包,如第六步解压命名方式,
         把testlink包放在/var/www/html目录下,进入testlink目录:
         vim config.inc.php修改如下几项:
         $tlCfg->config_check_warning_mode = 'SILENT'; (可选)
         
         若上面两个路径没有改动,新建这两个路径:
         cd /var
         mkdir testlink
         cd testlink
         mkdir logs
         mkdir upload_area
         修改这两个目录的权限    chmod 777 logs
                                 chmod 777 upload_area
         cd ..
         chmod -R 777 testlink
         重新启动apache服务:service httpd restart
        
         安装testlink
         http://127.0.0.1/testlink/    进入testlink安装页面,点击new installation,
         设置数据库账号密码(账号root,密码默认情况为空)
         设置操作testlink数据库的账号和密码(账号为admin,密码为admin)
         
       可能会出现以下问题:
      A、Maximum Session Idle Time before Timeout 24 minutes and 0 seconds - (Short. Consider to extend.)
      解决:php.ini文件修改:
      session.gc_maxlifetime的值为2400
      B、Checking max. execution time (Parameter max_execution_time)
      解决:php.ini文件修改:
      max_execution_time = 120
     
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    登陆:
    http://server_ip/testlink/
    默认登陆账号密码都是admin
     
     
    问题:
    1. apache 403 forbidden: 
     

    修改:

    /etc/selinux/config 文件 SELINUX=disabled

    2. when runing "servce httpd start", encountered an issue that 80 port alrealy in use.

    修改文件:/etc/httpd/conf/httpd.conf

     

    change line "Listen 80" to be "Listen 0.0.0.0:80"

     

     

  • 相关阅读:
    我的知识库(4) java获取页面编码(Z)
    知识库(3)JAVA 正则表达式 (超详细)
    The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter. Struts
    某人总结的《英语听力的技巧 》,挺搞的
    我的知识库(5)java单例模式详解
    构建可扩展程序
    SerialPort (RS232 Serial COM Port) in C# .NET
    Python学习笔记——String、Sequences
    UI题目我的答案
    jQuery学习系列学会操纵Form表单元素(1)
  • 原文地址:https://www.cnblogs.com/rosepotato/p/6135614.html
Copyright © 2020-2023  润新知