The system is not stable after login

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
lfernandes
User
Posts: 77

The system is not stable after login

Post by lfernandes »

The system is not stable after login, it seems that automatically disconnects. session uses all available memory when login and once it reaches the limit the pool restarts. What apparently happens is that the session uses all available memory when login and once it reaches the limit the pool restarts. A possible solution would be to change the session-state to StateServer, and the session is not stored in the IIS process.

Is this possible? How to solve?

follows the server log "22.09.2016 08:47:45 - Information. - A worker process with process id of '3992' serving application pool 'xxxx.com.br' paged in October due to inactivity timeout Application Pool -action configuration was Set to 10 minutes. The worker process will resume When needed. "


Webmaster
User
Posts: 9425

Post by Webmaster »

...due to inactivity timeout Application Pool -action configuration was Set to 10 minutes

Increase the application pool's Idle Time-out setting to 20 minutes in IIS Manager. Alternatively, decrease the Session Timeout Period to 10 minutes (to match your server setting) and enable Session Keep-Alive by setting Session Keep Alive Period to larger than 0, see Tools -> Advanced Settings in the help file for more info.


lfernandes
User
Posts: 77

Post by lfernandes »

unfortunately do not have access to server configuration, it is a service purchased and do not have access to this configuration level.
There is another solution, via programming or asp net maker configuration?


Webmaster
User
Posts: 9425

Post by Webmaster »

Webmaster wrote:
Alternatively, decrease the Session Timeout Period to 10 minutes (to match your server setting) and enable Session Keep-Alive by setting Session Keep Alive Period to larger than 0, see Tools -> Advanced Settings in the help file for more info.


Post Reply