zoukankan      html  css  js  c++  java
  • OpenMediaVault Redmine 安装

    /********************************************************************
     *                  OpenMediaVault Redmine 安装 
     * 说明:
     *     尝试在OpenMediaVault上安装一下Redmine,主要是为了将来省懒。
     *
     *                                  2016-8-15 深圳 南山平山村 曾剑锋
     *******************************************************************/
    
    一、参考文档:
        1. Internal error on project
            http://www.redmine.org/boards/2/topics/39920
        2. Internal error problem
            https://community.bitnami.com/t/internal-error-problem/31023
        3. Ruby on Rails MYSQL error Access denied for user 'root@localhost'
            http://stackoverflow.com/questions/6886583/ruby-on-rails-mysql-error-access-denied-for-user-rootlocalhost
    
    二、数据库参考操作:
        1. mysql -u root –p
        2. create database redmine character set utf8;
        3. grant select,insert,delete,update,create,drop,alter,indexon redmine.* to redmine;
        5. flush privileges;
        6. exit;
    
    二、数据库相关配置:
        /etc/redmine/default/database.yml
    
    三、如果有错误log
        ./var/log/redmine/default/production.log
    
    四、后台服务:
        ruby /usr/share/redmine/bin/rails server webrick -e production
      ruby /usr/share/redmine/bin/rails server -p8421 webrick -e production &
  • 相关阅读:
    LeetCode-Cycle Detection,Find the Duplicate Number
    LeetCode-Symmetric Tree
    剑指offer-打印链表倒数第k个结点
    Http协议中Get和Post的区别
    ORDER BY 语句
    AND 和 OR 运算符
    WHERE 子句
    SQL SELECT DISTINCT 语句
    SQL SELECT 语句
    SQL DML 和 DDL
  • 原文地址:https://www.cnblogs.com/zengjfgit/p/5772998.html
Copyright © 2011-2022 走看看