Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor change to wait_timeout

...

  • Steps to change the wait_timeout server system variable
    1. Login into database which is used by JOC Cockpit via MySQL command line or any other MySQL GUI client such as MySQL Workbench. (Note: the following commands will only be effective for the currently selected database.)
    2. Set wait_timeout variable's value by running following command. To get the default and maximum value for idle wait_timeout for your platform refer following article: Server System Variables : wait_timeout.
      • On Unix systems you can use:
        • set @wait_timeout = 31536000; (this is the max. value on Unix
        Systems
        • )
    3. Check the updated value of the wait_timeout variable by running the following command:
      • select  @wait_timeout;
    4. Restart your JOC Cockpit Windows service or Linux demon, to create a new database connection between JOC Cockpit and MySQL.

...