zoukankan      html  css  js  c++  java
  • lampp and testrail

    https://wyzx.testrail.net szllq2000

    http://129.0.1.228/testrail/



    http://docs.gurock.com/testrail-admin/installation-unix
    New XAMPP security concept: Access to the requested directory is only available from the local network. This setting can be configured in the file "httpd-xampp.conf".

    You can do next (for XAMPP, deployed on the UNIX-system): You can try change configuration for <Directory "/opt/lampp/phpmyadmin">

    # vi /opt/lampp/etc/extra/httpd-xampp.conf
    

    and change security settings to

    #LoadModule perl_module        modules/mod_perl.so
    
    <Directory "/opt/lampp/phpmyadmin">
        AllowOverride AuthConfig Limit
        Order allow,deny
        Allow from all
        Require all granted
        ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
    </Directory>
    

    First - comment pl module, second - change config for node Directory. After it, you should restart httpd daemon

    # /opt/lampp/xampp restart
    
    
    mysql -u root -p --socket=/opt/lampp/var/mysql/mysql.sock 
    
    
    
    
    
    mkdir -p /opt/lampp/htdocs/testrail/logs/
    
    mkdir -p /opt/lampp/htdocs/testrail/attachments/
    
    mkdir -p /opt/lampp/htdocs/testrail/reports/
    
    www-data:www-data
    
    sudo chown daemon:daemon /opt/lampp/htdocs/testrail/logs/
    sudo chown daemon:daemon /opt/lampp/htdocs/testrail/attachments/
    sudo chown daemon:daemon  /opt/lampp/htdocs/testrail/reports/
    
    
    -- 
    刘林强
    
    136-1133-1997
    liulinqiang@unipus.cn
    北京外研在线教育科技有限公司
    外语教学与研究出版社
  • 相关阅读:
    27.全排列与带重复的排列
    ios之自定义UISwitch
    ios之UIAlertView
    ios之UISegmentedcontol
    ios之UISlider
    ios之UITextfield
    ios之UIImageView
    ios之UIButoon
    ios之UILabel
    ios 点餐系统
  • 原文地址:https://www.cnblogs.com/SZLLQ2000/p/7824986.html
Copyright © 2011-2022 走看看