zoukankan      html  css  js  c++  java
  • crowd在更改IP后无法登录的问题

    org.codehaus.xfire.fault.XFireFault: Client with address "192.168.1.222", and hostname "192.168.1.222" is forbidden from making requests to the application, crowd.


    进入crowd库

    mysql> select * from cwd_application_address;

    +----------------+-----------------------+-----------------------+---------------------+
    | application_id | remote_address        | remote_address_binary | remote_address_mask |
    +----------------+-----------------------+-----------------------+---------------------+
    |              2 | 127.0.0.1             | fwAAAQ==              |                   0 |
    |              2 | 192.168.1.111         | wKgBmw==              |                   0 |
    |              2 | localhost             | NULL                  |                   0 |
    |              2 | localhost.localdomain | NULL                  |                   0 |
    |              3 | 127.0.0.1             | fwAAAQ==              |                   0 |
    |              3 | localhost             | NULL                  |                   0 |
    |              4 | 127.0.0.1             | fwAAAQ==              |                   0 |
    |              4 | localhost             | NULL                  |                   0 |
    |              5 | 127.0.0.1             | fwAAAQ==              |                   0 |
    |              6 | 127.0.0.1             | fwAAAQ==              |                   0 |
    |              7 | 127.0.0.1             | fwAAAQ==              |                   0 |
    +----------------+-----------------------+-----------------------+---------------------+
    11 rows in set (0.00 sec)


    将新的IP按下面方式得到一个串,在shell下执行:

    # IP=192.168.1.201; printf \x$(printf "%X %X %X %X" $(echo $IP| tr . ' ')| sed 's/ /\x/g')| base64
    wKgByQ==


    mysql> update cwd_application_address set remote_address="192.168.1.222" , remote_address_binary="wKgByQ==" where application_id=2 and remote_address_binary="wKgBmw==";      
    Query OK, 1 row affected (0.00 sec)

    Rows matched: 1  Changed: 1  Warnings: 0


    重启crowd就可以了。

  • 相关阅读:
    Java集合知识点小结
    集合类说明及区别
    微信翻译机器人实战
    细说:域名与SEO存在什么关系
    我为PHP摇旗呐喊!
    每个程序员都该知道的10大编码原则
    浏览器加载模式:window.onload和$(document).ready()
    修改Mysql编码集
    java实现LIS算法,出操队形问题
    [笔记]: 前向星 标签: 数据结构存储 2017-05-25 09:13 35人阅读 评论(0) 收藏
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3228487.html
Copyright © 2011-2022 走看看