zoukankan      html  css  js  c++  java
  • BO Server Session Setting

    BO Server Session Setting
      1.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\AnalyticalReporting\WEB-INF\web.xml
      2.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\InfoViewApp\WEB-INF\web.xml
      3.C:\Program Files (x86)\Business Objects\Tomcat55\webapps\InfoViewAppActions\WEB-INF\web.xml
     
      <session-config>
              <session-timeout>20</session-timeout>   <!-- 20 minutes 改成希望的 timeout 时间。-->
          </session-config>

    Following changes are needed on the BO server to overcome the Webi timeout issue.


    1) Go to Central Management Console (CMC)
    2) Servers –> WebIntelligenceProcessingServer –> Properties
    3) Set “Idle Document Timeout” to 3600 sec

    2..Input File server
    Navigate to CMC->Servers->Input File Repository Server.
    Modify the Maximum Idle Time to “120″.

    3.. Tomcat
    (a)
    1) Go to \\Business Objects\tomcat55\webapps\PlatformServices\ WEB-INF
    2) Open web.xml
    3) Search “session-timeout” keyword in this file.
    4) Increase the timeout value to 60.
    5) Save web.xml
    (b)
    Navigate to BusinessObjects installation directory, ..\Program Files\Business Objects\Tomcat\conf\
    Take the backup of the server.xml file.
    Edit the server.xml file with a notepad Search for the line that says “Connector on port 8080” In this section modify connectionTimeout=”20000″ to connectionTimeout=”40000″.

    4. Java timeout:
    Launch control pane.
    In control panel double click on java.
    when the java control panel comes up, select the java tab
    Under java applet runtime settings click on the view button (should bring up the java runtime settings)
    Type -xms128m -xmx164m into the java runtime parameter
    click ok

    5. Swap Timeout:
    Navigate to Start->Run on the server.
    Type “regedit”.
    Navigate to the below path:
    HKEY_LOCAL_MACHINE\SOFTWARE\BusinessObjects\Suite12.0\default\WebIntelligence\Server\Admin\
    Select the key “SwapTimeOut”
    Then select decimal and set it to 3600000.

    6.In Registry set HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 12.0\CMS\Instances\cmsname.cms,
    set IdleSessionTimeout=14400000

    7. IE timeout: (this step is optional)
    On the client machine where you run the report.
    Click Start->Run.
    Type “regedit”and then click OK.
    Locate the path: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings .
    Add a ‘ReceiveTimeout’ DWORD value with a data value of ()*1000.
    For example, if you want the timeout duration to be two hours, set the ReceiveTimeout data value to 7200000 (*1000).

    8. Check the universe timeouts in File-> parameters->”Controls”.
    “Limit execution time” and “limit number of rows”.

    9. Check the option “Disconnect after each transaction” for the universe connectivity.

    NOTE:
    ———-
    Please take a backup of all the files before you edit them.

    Enjoy reading the other posts and reply with your valuable comments.

  • 相关阅读:
    Gitblit搭建及Git协作开发流程
    Windows平台使用Gitblit搭建Git服务器图文教程
    gitblit搭建git服务器
    IntelliJ IDEA手动配置连接MySQL数据库
    如何去掉Intellij IDEA过多的警告 设置警告级别
    修改和重置WAMP的phpMyAdmin密码
    phpMyAdmin中config.inc.php设置密码和修改密码的方法
    Oracle、Mysql、SqlServer创建表和给表和字段加注释
    java注释规范
    JAVA基础补漏--static
  • 原文地址:https://www.cnblogs.com/kevinkim/p/2076203.html
Copyright © 2011-2022 走看看