We are facing some issues with the server crashing frequently after upgrading from ColdFusion 8 to ColdFusion 2018.
We have tried the performance tuning tool and fixed all the issues found. Still its crashing at least 1 to 2 times daily.
We have fixed some issues, like font missing errors by updating fonts, and fixed the issues found in the `coldfusion-out.log1.
Now we are checking the iterations, SQL queries if there's any chance of a sql timeout or something like that.
Apart from this, is there anything specifically we have to do to solve issues like server shutdown?
There are two possibilities for this:
1) You have updated Coldfusion but have not updated your database version (specifically oracle). This can lead to CF using a outdated connector driver which can cause DB connections to occasionally hangup which in turn causes the CF server to become unresponsive. If this is the case, updating your DB can solve the issue.
2) Look at how you are storing client variables. If they are stored in registry, the server can crash intermittently. Better to change the storage to database OR none if you are not using any client variables. Keep in mind that client variables do not affect session activities like auto-logout etc.