zoukankan      html  css  js  c++  java
  • Redmine windwon下载安装

     
    redmin的admin用户忘记密码的方法;  就是 hashed_password 设置成 353e8061f2befecb6818ba0c034c632fb0bcae1b ,另外把salt 清空,密码就成了 password.

    select * from users where login ='admin'

    update users set hashed_password ='353e8061f2befecb6818ba0c034c632fb0bcae1b' where login ='admin'


    update users set salt ='' where login ='admin'

     
    plugin地址:https://www.redmine.org/plugins
     
    插件安装:将clone的插件拷贝到: D: edmine4.0.5apps edminehtdocsplugins目录下,重启 manager-windows

    发送邮件:
    修改配置: D:
    edmine4.0.5apps
    edminehtdocsconfigconfiguration.yml 注意删除掉其它没有用的,只保留  注意:还要修改发送邮件的邮箱,记得点击保存

    email_delivery: delivery_method: :smtp smtp_settings: address: smtp.
    163.com port: 25 domain: 163.com authentication: :login user_name: asc_redmine@163.com password:456

     

     
     

     

     

     

     

     

     注意:修改默认的端口  之后重启manager-windows
    
     修改这几个文件夹 
    apache2
    /conf/httpd.conf
    apache2/conf/original/httpd.conf
    apache2/conf/bitnami/bitnami.conf
    查看mysql数据库连接:
    注意:登陆mysql的时候,用账号a登陆,不能新建数据库,没有权限,必须要用root登陆,(密码为,登陆redmine修改之前的密码

    插件安装重启服务不起来,一般都是版本跟插件不兼容

    解决报错问题
    
    1.查看报错日志 D:Redmine2019-12-18apps
    edminehtdocslog

    2.打开cmd cd都对应文件目录下执行:
    
    bundle exec rake redmine:plugins:migrate NAME=hrm_plugin VERSION=0 RAILS_ENV=production
    如果出现红色警告,证明一开始插件就没有安装成功
    直接去
    D:Redmine2019-12-18apps edminehtdocsplugins 删除对应报错的插件即可

    redmine 插件安装
    
    1.下载插件解压到 Redmine的D:Bitnamiapps
    edminehtdocsplugins目录下
    
    2.Windows系统下运行安装目录下的use_redmine.bat,(linux下运行Redmine安装目录下的use_redmine,一个道理),然后输入cd apps/redmine/htdocs/plugins
    
    3.先输入:bundle install --without development test
    
    再输入:bundle exec rake redmine:plugins NAME=scrum RAILS_ENV=production
    
    4.如果出现报错 报错:An error occurred on the page you were trying to access. If you continue to experience problems please contact your Redmine administrator for assistance. 我装好scrum插件后,在选择scrum模块是报错 If you are the Redmine administrator, check your log files for details about the error. 
    
    都是因为Redmine和插件版本不匹配或者没有管理员权限导致的。
     
     
  • 相关阅读:
    .dbmdl 文件
    where 命令一个快速定位工具所在的功能
    Window 2008 R2 软件限制策略的默认调整,导致记录事件日志的权限不足
    大家知道什么是 asp.net 呢 ?学习一下
    asp.net membership常见问题总结
    DivCSS布局实例:很实用的图文混排CSS列表
    js 在网页里让文本框只能输入数字的一种方法,外加回车换Tab
    从零开始学DedeCms模板,模板教程,从此模板制作不求人
    .net 数据类型
    常用正则表达式
  • 原文地址:https://www.cnblogs.com/huanhuan55/p/12012099.html
Copyright © 2011-2022 走看看