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.

  • 相关阅读:
    git使用教程2-更新github上代码
    git使用教程-本地代码上传到github
    【Mac系统 + Git】之上传项目代码到github上以及删除某个文件夹
    【Mac + Appium + Python3.6学习(五)】之常用的Android自动化测试API总结
    【Mac + Python + Selenium】之PyCharm配置Selenium自动化
    appium自动化常用API
    【Mac + Appium + Python3.6学习(四)】之常用的IOS自动化测试API总结
    ubuntu指令大全
    Win10上安装双系统(win10+ubuntu)
    C语言共用体的作用
  • 原文地址:https://www.cnblogs.com/kevinkim/p/2076203.html
Copyright © 2011-2022 走看看