zoukankan      html  css  js  c++  java
  • webacula不能访问 报错解决方案

    查看apache的错误日志

    # tail -f /etc/httpd/logs/error_log
    

    错误1:

    [error] [client 10.0.0.1] PHP Fatal error: Uncaught exception 'Zend_Exception' with message 'Bacula version mismatch for the Catalog database. Wanted 14, got 15. ' in /var/www/webacula/html/index.php:195 Stack trace: #0 {main} thrown in /var/www/webacula/html/index.php on line 195

    通过修改/var/www/webacula/html/index.php 中的 define('BACULA_VERSION', 14); 将14改为15,重启就可以进入访问页面了。

    错误2:

    [error] [client 10.0.0.1] PHP Fatal error: Uncaught exception 'Zend_Exception' with message 'Directory "/var/www/webacula/data/cache" is not exists or not writable.' in /var/www/webacula/html/index.php:203 Stack trace: #0 {main} thrown in /var/www/webacula/html/index.php on line 203

    可更改目录权限解决问题

    # chmod 777 /var/www/webacula/data/cache 
    

    错误3:

    bconsole: ERROR TERMINATION at parse_conf.c:919
    Config error: Cannot open config file "/opt/bacula/etc/bconsole.conf": Permission denied

    编辑 # vim /var/www/webacula/application/config.ini配置文件
    修改为 bacula.sudo = "/usr/bin/sudo"

  • 相关阅读:
    回归测试
    系统测试
    单元测试
    软件测试规律之木桶原理
    集成测试
    软件测试度量
    测试用例设计方法之错误推测法
    测试用例设计方法之因果图方法
    有趣的算法:1元=1分
    【转】 arcServer 一些 FAQ
  • 原文地址:https://www.cnblogs.com/ogrecn/p/7692049.html
Copyright © 2011-2022 走看看